/* SignaHub - Global Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1E40AF;
    --cyan: #22D3EE;
    --emerald: #10B981;
    --bg-light: #F9FAFB;
    --text-dark: #0F172A;
    --text-gray: #64748B;
    --green: #10B981;
    --yellow: #F59E0B;
    --orange: #F97316;
    --red: #EF4444;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
}

/* Header */
header {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    text-decoration: none;
}

/* Logo image - NO DRAG but clickable */
.logo img {
    user-select: none !important;
    -webkit-user-drag: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

nav a:hover,
nav a.active {
    color: var(--cyan);
}

/* Dropdown Navigation - CRITICAL */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
}

.arrow {
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 320px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(34, 211, 238, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-left-color: var(--cyan);
    color: var(--primary-blue);
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.3), 0 0 30px rgba(59, 130, 246, 0.2);
}

.dropdown-divider {
    height: 1px;
    background: #E5E7EB;
    margin: 0.5rem 0;
}

.dropdown-category {
    padding: 0.5rem 0;
}

.category-title {
    display: block;
    padding: 0.5rem 1.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    pointer-events: none;
    background: var(--bg-light);
}

.dropdown-category a {
    padding-left: 2rem;
}

.dropdown-all {
    color: var(--cyan) !important;
    font-weight: 700 !important;
}

/* Buttons */
.cta-button {
    background: linear-gradient(135deg, var(--cyan), var(--emerald));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(34, 211, 238, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(34, 211, 238, 0.4);
}

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--cyan), var(--emerald));
}

.btn-secondary {
    background: var(--primary-blue);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.2s;
    display: inline-block;
}

.btn-secondary:hover {
    background: #1E3A8A;
}

/* Hero Sections */
.hero-service {
    background: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 50%, #0891B2 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

.hero-service.doctor {
    background: linear-gradient(135deg, #059669 0%, #10B981 50%, #22D3EE 100%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-service h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.trust-note {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-top: 1rem;
}

/* Sections */
.content-section {
    padding: 5rem 2rem;
}

.content-section.bg-light {
    background: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.section-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.section-subtitle {
    font-size: 1.75rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* Feature Grids */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.features-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

/* Scan Form */
.scan-section {
    background: white;
    padding: 4rem 2rem;
}

.scan-form {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.input-group-large {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.input-group-large input {
    flex: 1;
    padding: 1.25rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1.125rem;
    font-family: inherit;
}

.input-group-large input:focus {
    outline: none;
    border-color: var(--cyan);
}

.form-note {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* Steps */
.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cyan), var(--emerald));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

.step-arrow {
    font-size: 2rem;
    color: var(--cyan);
}

/* Benefits */
.benefits-grid {
    display: grid;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: start;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.benefit-item .check {
    font-size: 1.5rem;
    color: var(--emerald);
    font-weight: bold;
}

.benefit-item h3 {
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

/* Problem Cards */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--red);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.problem-card h3 {
    color: var(--red);
    margin-bottom: 0.75rem;
}

.solution-highlight {
    background: linear-gradient(135deg, var(--emerald), var(--cyan));
    color: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
}

.solution-highlight h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

/* Pricing */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
}

.pricing-card.featured {
    border: 3px solid var(--cyan);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--cyan), var(--emerald));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
}

.price-big {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 1rem 0;
}

.price-subtitle {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin: 1.5rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.pricing-features li:before {
    content: "✓ ";
    color: var(--emerald);
    font-weight: bold;
    margin-right: 0.5rem;
}

.pricing-features.highlight li {
    font-weight: 600;
}

.best-for {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    font-size: 0.875rem;
}

/* Lists */
.checkmark-list {
    list-style: none;
    padding-left: 0;
}

.checkmark-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.checkmark-list li:before {
    content: "✓";
    color: var(--emerald);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Highlight Box */
.highlight-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--cyan);
}

.deliverable {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: start;
}

.deliverable .icon {
    font-size: 2rem;
}

.deliverable h4 {
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

/* Timeline */
.process-timeline {
    max-width: 600px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: start;
}

.timeline-badge {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--cyan), var(--emerald));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.timeline-content h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stars {
    color: var(--yellow);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.875rem;
}

/* FAQ Accordion */
.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(34, 211, 238, 0.15);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(90deg, rgba(34, 211, 238, 0.05) 0%, rgba(16, 185, 129, 0.03) 100%);
}

.faq-question h3 {
    color: var(--primary-blue);
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    flex: 1;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--cyan);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    margin: 0;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Next Steps */
.next-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.next-step-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
}

.next-step-card.featured {
    border: 3px solid var(--cyan);
}

.next-step-card .badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--cyan), var(--emerald));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.next-step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.next-step-card .price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.next-step-card ul {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}

.next-step-card li {
    padding: 0.5rem 0;
}

/* CTA Sections */
.cta-section,
.contact-cta,
.final-cta {
    background: linear-gradient(135deg, var(--primary-blue), #1E3A8A);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-section h2,
.contact-cta h2,
.final-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s;
    display: inline-block;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--primary-blue);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

/* Footer */
footer {
    background: var(--primary-blue);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

footer a {
    color: var(--cyan);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-service h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    nav ul {
        display: none;
    }

    .input-group-large {
        flex-direction: column;
    }

    .features-grid-2col {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }
}

/* ===== HOMEPAGE SPECIFIC STYLES ===== */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 50%, #0891B2 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--cyan), var(--emerald));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

/* SignaLyse Form */
.signalyse-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.signalyse-form h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.input-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 3px solid rgba(16, 185, 129, 0.5);
    border-radius: 12px;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 0 15px rgba(34, 211, 238, 0.2);
    font-family: inherit;
    transition: all 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: var(--cyan);
}

.input-group button {
    background: linear-gradient(135deg, var(--cyan), var(--emerald));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.input-group button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(34, 211, 238, 0.4);
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-gray);
    text-align: center;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Stats Bar */
.stats-bar {
    background: white;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stats {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--cyan);
    font-weight: 800;
}

.stat-item p {
    color: var(--text-gray);
    font-weight: 600;
}

/* Problem Section */
.problem-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--red);
}

.problem-card h3 {
    color: var(--red);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Services Grid */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 0 30px rgba(34, 211, 238, 0.5), 0 0 50px rgba(16, 185, 129, 0.3), inset 0 0 15px rgba(34, 211, 238, 0.08) !important;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
    border: 3px solid rgba(16, 185, 129, 0.6) !important;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 0 40px rgba(34, 211, 238, 0.4),
        0 0 60px rgba(16, 185, 129, 0.3),
        inset 0 0 20px rgba(34, 211, 238, 0.1);
    border: 3px solid rgba(16, 185, 129, 0.9);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.service-card ul {
    text-align: left;
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-card li {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.service-card li:before {
    content: "✓ ";
    color: var(--emerald);
    font-weight: bold;
    margin-right: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.price-note {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.service-button {
    background: var(--primary-blue);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}

.service-button:hover {
    background: #1E3A8A;
}

.service-button.primary {
    background: linear-gradient(135deg, var(--cyan), var(--emerald));
}

/* Responsive Overrides for Homepage */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem !important;
    }

    .hero p {
        font-size: 1.25rem !important;
    }

    .input-group {
        flex-direction: column;
    }
}

/* Badge Showcase - Zigzag Layout */
.badge-showcase-zigzag {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #F9FAFB 0%, #EFF6FF 100%);
}

.service-zigzag {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 3rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 0 10px rgba(34, 211, 238, 0.15) !important;
    margin: 2rem 0;
    border: 3px solid rgba(16, 185, 129, 0.6) !important;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-zigzag:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12), 0 0 25px rgba(34, 211, 238, 0.3) !important;
    border: 3px solid rgba(16, 185, 129, 0.9) !important;
}

/* Left alignment */
.service-zigzag.left {
    flex-direction: row;
}

/* Right alignment (reversed) */
.service-zigzag.right {
    flex-direction: row-reverse;
}

/* Badge link container - FINAL SIZE 200px */
.badge-link {
    flex-shrink: 0;
    width: 200px !important;
    height: 200px !important;
    max-width: 200px !important;
    max-height: 200px !important;
    display: block !important;
    transition: transform 0.3s ease;
}

/* Badge images - FINAL SIZE 200px + COMPLETELY ANCHORED */
.badge-link img,
.service-zigzag .badge-link img,
a.badge-link img {
    width: 200px !important;
    height: 200px !important;
    max-width: 200px !important;
    max-height: 200px !important;
    object-fit: contain !important;
    user-select: none !important;
    -webkit-user-drag: none !important;
    -khtml-user-drag: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    pointer-events: auto !important;
    cursor: default !important;
}

/* Prevent drag on parent link too */
.badge-link {
    -webkit-user-drag: none !important;
    -khtml-user-drag: none !important;
    user-drag: none !important;
}

.badge-link:hover {
    transform: scale(1.15) rotate(8deg) !important;
    filter: brightness(1.2) drop-shadow(0 8px 20px rgba(34, 211, 238, 0.6)) !important;
}


/* Service description */
.service-description {
    flex: 1;
}

.service-description h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-price {
    color: var(--emerald);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.service-description p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Explore button */
.btn-explore {
    display: inline-block;
    background: linear-gradient(135deg, var(--cyan), var(--emerald));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 8px rgba(34, 211, 238, 0.3);
}

.btn-explore:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(34, 211, 238, 0.4);
}

/* Responsive zigzag */
@media (max-width: 768px) {

    .service-zigzag.left,
    .service-zigzag.right {
        flex-direction: column;
        text-align: center;
    }

    .badge-link {
        margin: 0 auto;
    }
}

/* OLD BADGE STYLES - KEEP FOR COMPATIBILITY */
.badge-showcase {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #F9FAFB 0%, #EFF6FF 100%);
}

.badge-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.badge-category {
    min-width: 180px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: right;
    padding-right: 2rem;
    border-right: 4px solid var(--cyan);
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1.5rem;
    flex: 1;
}

.badge-item {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.badge-item:hover {
    transform: translateY(-5px) scale(1.05);
}

.badge-item img {
    width: 100%;
    height: auto;
    max-width: 70px;
    /* CRITICAL FIX - reduced from 120px which was still too large */
    filter: drop-shadow(0 4px 8px rgba(34, 211, 238, 0.3));
    transition: filter 0.3s ease;
}

.badge-item:hover img {
    filter: drop-shadow(0 8px 16px rgba(34, 211, 238, 0.5));
}

.badge-item p {
    margin-top: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-dark);
}

/* Responsive Badge Showcase */
@media (max-width: 1200px) {
    .badge-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 768px) {
    .badge-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .badge-category {
        text-align: left;
        border-right: none;
        border-bottom: 4px solid var(--cyan);
        padding-right: 0;
        padding-bottom: 1rem;
        width: 100%;
    }

    .badge-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .badge-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}