/* ========================================
   SurgicalGuide.Pro — 2025 Modern Design
   Clean, Minimal, Personal-Focused
   ======================================== */

:root {
    --color-bg: #ffffff;
    --color-bg-alt: #f8f9fa;
    --color-text: #1a1a1a;
    --color-text-secondary: #666666;
    --color-text-muted: #999999;
    --color-primary: #0066ff;
    --color-primary-hover: #0052cc;
    --color-border: #e8e8e8;
    --color-border-light: #f0f0f0;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --section-gap: 100px;
    --container-max: 1100px;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    border: 3px solid var(--color-primary);
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border-light);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
}

.logo-accent {
    color: var(--color-primary);
}

.nav {
    display: flex;
    gap: 28px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--color-text);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-switcher {
    display: flex;
    gap: 2px;
    background: var(--color-bg-alt);
    padding: 4px;
    border-radius: 10px;
}

.lang-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-muted);
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.lang-btn:hover {
    color: var(--color-text);
}

.lang-btn.active {
    background: white;
    color: var(--color-text);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--color-bg-alt);
    color: var(--color-text);
}

.btn-secondary:hover {
    background: var(--color-border);
}

/* ========================================
   Hero with Portrait
   ======================================== */
.hero {
    padding: 140px 0 80px;
    background: var(--color-bg);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1e40af 100%);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 12px;
}

.hero-image img {
    width: 100%;
    max-width: 380px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

/* ========================================
   About Section with Side Photos
   ======================================== */
.about {
    padding: var(--section-gap) 0;
    background: var(--color-bg-alt);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-photo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.about-content {
    text-align: center;
    padding: 20px;
}

.about-lead {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.about-text {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 4px;
    display: block;
}

/* ========================================
   Process Section
   ======================================== */
.process {
    padding: var(--section-gap) 0;
    background: var(--color-bg);
}

.process .container {
    text-align: center;
}

/* ========================================
   Process Steps (New Design)
   ======================================== */
.process-steps-new {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
}

.step-card {
    flex: 1;
    max-width: 320px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.step-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: var(--color-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
}

.step-number-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}

.step-card p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.step-details {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    padding: 12px 16px;
}

.step-details li {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.step-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 600;
}

.step-arrow {
    display: flex;
    align-items: center;
    font-size: 2rem;
    color: var(--color-primary);
    font-weight: 300;
}

/* ========================================
   Section Titles
   ======================================== */
.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

/* ========================================
   Courses Section
   ======================================== */
.courses {
    padding: var(--section-gap) 0;
}

.courses .container {
    text-align: center;
}

.courses-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.course-image {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius);
}

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

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

.courses-info p {
    font-size: 1rem;
    color: var(--color-text-secondary);
}

/* ========================================
   Services Section
   ======================================== */
.services-section {
    padding: var(--section-gap) 0;
    background: var(--color-bg);
}

.services-section .container {
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--color-border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: var(--color-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text);
}

.service-desc {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.service-price {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.service-price strong {
    font-size: 1.4rem;
    color: var(--color-primary);
    font-weight: 700;
}

.btn-outline {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: var(--color-primary);
    color: white;
}

/* ========================================
   Detailed Pricing Section
   ======================================== */
.pricing-details {
    padding: var(--section-gap) 0;
    background: var(--color-bg-alt);
}

.pricing-details .container {
    text-align: center;
}

.pricing-tables {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    text-align: left;
}

.price-table {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
}

.price-table h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-bg-alt);
    color: var(--color-text);
}

.price-table-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.05));
    padding: 8px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
    display: inline-block;
}

.price-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row span:first-child {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.price-row span:last-child {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
}

/* ========================================
   Pricing Page Styles
   ======================================== */
.pricing-hero {
    padding: 140px 0 60px;
    background: var(--color-bg-alt);
    text-align: center;
}

.pricing-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-hero p {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
}

.pricing-section {
    padding: 60px 0;
}

.pricing-section.alt-bg {
    background: var(--color-bg-alt);
}

.pricing-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 32px;
    text-align: center;
}

.pricing-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.price-table.featured {
    border: 2px solid var(--color-primary);
}

.pricing-cta {
    padding: 80px 0;
    background: var(--color-bg);
}

.cta-box {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    background: var(--color-bg-alt);
    padding: 48px 40px;
    border-radius: var(--radius-lg);
}

.cta-box h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-box p {
    color: var(--color-text-secondary);
    margin-bottom: 28px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ========================================
   Portfolio Section
   ======================================== */
.portfolio {
    padding: var(--section-gap) 0;
    background: var(--color-bg-alt);
}

.portfolio .container {
    text-align: center;
}

.portfolio-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 10px 20px;
    border: 2px solid var(--color-border);
    background: white;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.tab-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.portfolio-item {
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.portfolio-item:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-item.hidden {
    display: none;
}

/* ========================================
   Order Form
   ======================================== */
.order-section {
    padding: var(--section-gap) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.order-form-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.order-form .form-group {
    margin-bottom: 24px;
}

.order-form .form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}

.order-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.order-form .form-input,
.order-form .form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.order-form .form-input:focus,
.order-form .form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.order-form .form-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Service Options */
.service-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.service-option {
    cursor: pointer;
}

.service-option input {
    display: none;
}

.service-option .option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.2s;
    text-align: center;
}

.service-option:hover .option-content {
    border-color: var(--color-primary);
    background: rgba(37, 99, 235, 0.02);
}

.service-option input:checked+.option-content {
    border-color: var(--color-primary);
    background: rgba(37, 99, 235, 0.08);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.option-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.option-text {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}

.option-price {
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 500;
}

/* File Upload Info */
.file-upload-info {
    background: #f1f5f9;
    padding: 16px 20px;
    border-radius: 10px;
    border-left: 4px solid var(--color-primary);
}

.file-upload-info p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 16px 32px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.btn-order {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    }

    50% {
        box-shadow: 0 4px 25px rgba(37, 99, 235, 0.6);
    }
}

@media (max-width: 768px) {
    .order-form-card {
        padding: 24px;
    }

    .order-form .form-row {
        grid-template-columns: 1fr;
    }

    .service-options {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Contact
   ======================================== */
.contact {
    padding: var(--section-gap) 0;
}

.contact-card {
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
    background: var(--color-bg-alt);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
}

.contact-card .section-subtitle {
    margin-bottom: 28px;
}

.contact-methods {
    display: flex;
    gap: 14px;
    justify-content: center;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s;
}

.contact-btn.telegram {
    background: #0088cc;
    color: white;
}

.contact-btn.telegram:hover {
    background: #0077b5;
    transform: translateY(-2px);
}

.contact-btn.whatsapp {
    background: #25D366;
    color: white;
}

.contact-btn.whatsapp:hover {
    background: #22c55e;
    transform: translateY(-2px);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 32px 0;
    border-top: 1px solid var(--color-border-light);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        display: flex;
        justify-content: center;
        order: -1;
    }

    .hero-image img {
        max-width: 280px;
    }

    .hero-actions {
        justify-content: center;
    }

    .process-steps-new {
        flex-direction: column;
        align-items: center;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .step-card {
        max-width: 100%;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-photo-left {
        order: 1;
    }

    .about-content {
        order: 2;
    }

    .about-photo-right {
        order: 3;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-tables {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-gap: 70px;
    }

    .nav {
        display: none;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .stats-row {
        flex-direction: column;
        gap: 24px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .about-card {
        padding: 32px 24px;
    }

    .contact-methods {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.about-content-centered,
.courses-gallery,
.pricing-grid,
.contact-card {
    animation: fadeIn 0.6s ease both;
}

/* ========================================
   Lightbox
   ======================================== */
.lightbox,
.portfolio-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.active,
.portfolio-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 50%;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-close {
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    font-size: 28px;
    line-height: 48px;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    font-size: 32px;
    line-height: 56px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@media (max-width: 768px) {

    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
        font-size: 24px;
        line-height: 44px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

/* ========================================
   Trust Badges
   ======================================== */
.trust-badges {
    padding: 24px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-bottom: 1px solid var(--color-border-light);
}

.badges-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-icon {
    font-size: 1.4rem;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
}

@media (max-width: 768px) {
    .badges-row {
        gap: 20px;
    }

    .badge-item {
        flex: 0 0 45%;
        justify-content: center;
    }

    .badge-text {
        font-size: 0.8rem;
    }
}

/* ========================================
   Services CTA Banner
   ======================================== */
.services-cta {
    margin-top: 48px;
    padding: 28px 40px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: var(--radius-lg);
    border: 2px solid #93c5fd;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-icon {
    font-size: 2.5rem;
}

.cta-content {
    flex: 1;
    min-width: 200px;
}

.cta-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 4px;
}

.cta-desc {
    font-size: 0.95rem;
    color: #3b82f6;
}

.services-cta .btn-primary {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .services-cta {
        padding: 20px 24px;
        text-align: center;
    }

    .cta-content {
        text-align: center;
    }
}

/* ========================================
   Sticky Order Button
   ======================================== */
.sticky-order-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #0052cc 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.sticky-order-btn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0, 102, 255, 0.5);
}

.sticky-icon {
    font-size: 1.2rem;
}

.sticky-text {
    display: inline;
}

@media (max-width: 768px) {
    .sticky-order-btn {
        bottom: 16px;
        right: 16px;
        padding: 12px 16px;
    }
}