﻿/*--------------------------------------------------------------
    HERO SECTION 
--------------------------------------------------------------*/

/* Remove default margins and ensure no white space */
body {
    margin: 0;
    padding: 0;
}

main {
    margin: 0;
    padding: 0;
}

.drone-solutions-page {
    margin: 0;
    padding: 0;
}

/*--------------------------------------------------------------
    HERO SECTION SETUP
--------------------------------------------------------------*/
.drone-hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 0 0 60px;
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.drone-hero-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/*--------------------------------------------------------------
    BACKGROUND WITH OVERLAY
--------------------------------------------------------------*/
.drone-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

    .drone-hero-background::after {
        content: '';
        background: rgba(0, 0, 0, 0.4);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
    }

.drone-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/*--------------------------------------------------------------
    HERO CONTENT LAYOUT
--------------------------------------------------------------*/
.drone-hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    width: 100%;
}

.drone-hero-text {
    position: relative;
    z-index: 2;
    max-width: 50%;
    margin-left: 0;
    text-align: left;
    padding-top: 80px;
}

/*--------------------------------------------------------------
    TYPOGRAPHY
--------------------------------------------------------------*/
.drone-hero-title {
    font-size: var(--fs-xxl);
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
    line-height: 1.1;
    font-family: var(--font-heading);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.drone-hero-subtitle {
    font-size: var(--fs-lg);
    font-weight: 300;
    margin-bottom: 2rem;
    color: white;
    opacity: 0.95;
    font-family: var(--font-body);
}

.drone-hero-description {
    font-size: var(--fs-md);
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: white;
    opacity: 0.9;
    line-height: 1.6;
    font-family: var(--font-body);
}

/*--------------------------------------------------------------
    METRICS - UNIFIED WHITE CONTAINER (EXACT MATCH)
--------------------------------------------------------------*/
.drone-hero-metrics {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    margin-bottom: 2.5rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.metric-item {
    color: var(--color-text);
    padding: 0.75rem 1.25rem;
    text-align: left;
    min-width: auto;
    border-right: 1px solid rgba(138, 24, 26, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
}

    .metric-item:last-child {
        border-right: none;
    }

.metric-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text);
    opacity: 0.8;
    font-family: var(--font-heading);
}

.metric-value {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-text);
    font-family: var(--font-heading);
}

/*--------------------------------------------------------------
    ACTION BUTTONS - PROFESSIONAL DESIGN
--------------------------------------------------------------*/
.drone-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

    .drone-hero-actions .btn {
        padding: 1rem 2rem;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 700;
        font-family: var(--font-heading);
        transition: all 0.3s ease;
        display: inline-block;
        border: 2px solid transparent;
        font-size: 1rem;
        line-height: 1.4;
        cursor: pointer;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        min-width: 180px;
        text-align: center;
    }

    .drone-hero-actions .btn-primary {
        background: var(--color-secondary);
        color: white;
        border-color: var(--color-secondary);
        box-shadow: 0 4px 15px rgba(237, 28, 36, 0.3);
    }

        .drone-hero-actions .btn-primary:hover {
            background: var(--color-secondary-dark);
            border-color: var(--color-secondary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(237, 28, 36, 0.4);
            color: white;
            text-decoration: none;
        }

    .drone-hero-actions .btn-secondary {
        background: transparent;
        color: white;
        border-color: white;
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    }

        .drone-hero-actions .btn-secondary:hover {
            background: white;
            color: var(--color-heading);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
            text-decoration: none;
        }

/*--------------------------------------------------------------
    DRONE IMAGE POSITIONING
--------------------------------------------------------------*/
.drone-hero-image {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 35%;
    max-width: 400px;
    z-index: 3;
    animation: float 8s ease-in-out infinite;
}

.drone-hero-drone-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    object-fit: contain;
}

@keyframes float {
    0%, 100% {
        transform: translateY(-50%) translateX(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-50%) translateX(10px) rotate(1deg);
    }

    50% {
        transform: translateY(-50%) translateX(0px) rotate(0deg);
    }

    75% {
        transform: translateY(-50%) translateX(-10px) rotate(-1deg);
    }
}

/*--------------------------------------------------------------
    RESPONSIVE DESIGN - EXACT MATCH
--------------------------------------------------------------*/
@media (max-width: 1200px) {
    .drone-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .drone-hero-section {
        min-height: 60vh;
        padding: 60px 0 40px;
        text-align: center;
    }

    .drone-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .drone-hero-text {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 0 2rem;
        text-align: center;
    }

    .drone-hero-title {
        font-size: var(--fs-xl);
    }

    .drone-hero-metrics {
        flex-wrap: wrap;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 500px;
    }

    .drone-hero-actions {
        justify-content: center;
    }

    .metric-item {
        min-width: 140px;
    }

    .drone-hero-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 60%;
        max-width: 300px;
        margin: 2rem auto 0;
    }
}

@media (max-width: 768px) {
    .drone-hero-section {
        min-height: 50vh;
        padding: 40px 0 30px;
    }

    .drone-hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .drone-hero-metrics {
        flex-direction: row;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 8px;
        overflow: hidden;
        max-width: 100%;
        width: auto;
    }

    .metric-item {
        background: transparent;
        border-right: 1px solid rgba(138, 24, 26, 0.2);
        border-bottom: none;
        border-radius: 0;
        text-align: center;
        flex: 1;
        min-width: 100px;
    }

        .metric-item:last-child {
            border-right: none;
        }

    .drone-hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

        .drone-hero-actions .btn {
            width: 100%;
            max-width: 280px;
            padding: 0.875rem 1.5rem;
            font-size: 0.9rem;
        }

    .drone-hero-image {
        width: 70%;
    }
}

@media (max-width: 576px) {
    .drone-hero-title {
        font-size: 1.75rem;
    }

    .drone-hero-subtitle,
    .drone-hero-description {
        font-size: 1rem;
    }

    .metric-label {
        font-size: 0.7rem;
    }

    .metric-value {
        font-size: 0.85rem;
    }

    .drone-hero-actions .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
        min-width: auto;
    }

    .drone-hero-image {
        width: 80%;
    }
}

/*--------------------------------------------------------------
    ACCESSIBILITY & PERFORMANCE
--------------------------------------------------------------*/
@media (prefers-reduced-motion: reduce) {
    .drone-hero-drone-img {
        animation: none;
    }

    .drone-hero-actions .btn {
        transition: none;
    }
}

/* Performance optimizations */
.drone-hero-background,
.drone-hero-drone-img,
.drone-hero-actions .btn {
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}



/*--------------------------------------------------------------
    SERVICE SOLUTION CARDS
--------------------------------------------------------------*/

.service-solution-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: var(--spacing-lg);
    transition: all var(--duration-normal) var(--ease-in-out);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

    .service-solution-card:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-2px);
        border-color: var(--color-primary-light);
    }

.service-solution-card--featured {
    border-color: var(--color-primary);
    border-width: 2px;
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
}

    .service-solution-card--featured::before {
        content: "Featured";
        position: absolute;
        top: 0;
        right: 0;
        background: var(--color-primary);
        color: white;
        padding: 4px 12px;
        font-size: var(--fs-xs);
        font-weight: 700;
        font-family: var(--font-heading);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom-left-radius: 8px;
    }

/* Service Icon Styling */
.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.service-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Make icons white */
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3) 0%, transparent 60%);
    border-radius: 50%;
}

/* Content Section */
.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
    text-align: center;
}

.service-description {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    color: var(--color-text);
    line-height: var(--line-height);
    margin-bottom: var(--spacing-md);
    text-align: center;
    flex-grow: 1;
}

/* Key Capabilities Section */
.service-capabilities {
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    background: var(--color-gray-50);
    border-radius: 6px;
    border-left: 4px solid var(--color-primary);
}

.capabilities-title {
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: var(--spacing-xs);
}

.service-capabilities .rte {
    font-size: var(--fs-xs);
    color: var(--color-text);
}

    .service-capabilities .rte ul {
        margin: 0;
        padding-left: var(--spacing-sm);
    }

    .service-capabilities .rte li {
        margin-bottom: 4px;
        line-height: 1.4;
    }

        .service-capabilities .rte li:last-child {
            margin-bottom: 0;
        }

/* Service Specifications */
.service-specs {
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--fs-xs);
}

.spec-label {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-heading);
}

/* Service Actions */
.service-actions {
    display: flex;
    gap: var(--spacing-xs);
    justify-content: center;
    margin-top: auto;
    padding-top: var(--spacing-sm);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    font-family: var(--font-heading);
    font-size: var(--fs-xs);
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-in-out);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 100px;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 11px;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

    .btn-primary:hover {
        background: var(--color-primary-hover);
        border-color: var(--color-primary-hover);
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(138, 24, 26, 0.2);
    }

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

    .btn-outline:hover {
        background: var(--color-primary);
        color: white;
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(138, 24, 26, 0.15);
    }

/* Grid Layout for Multiple Cards - SIMPLIFIED APPROACH */
.service-solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* Always 3 equal columns on desktop */
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
    width: 100%;
}

    /* Target the ContentArea inside service-solutions-grid */
    .service-solutions-grid > * {
        display: contents; /* Make any wrapper transparent */
    }

/* Ensure individual cards work within the grid */
.service-solution-card {
    /* Remove any conflicting styles */
    width: 100%;
    max-width: none;
}

/* Target the specific section container */
.service-solutions-section {
    width: 100%;
}

    /* Center the section title */
    .service-solutions-section .section-title {
        text-align: center;
        margin-bottom: var(--spacing-lg);
    }

/* Tablet: 2 columns */
@media (max-width: 1023px) {
    .service-solutions-grid {
        grid-template-columns: 1fr 1fr; /* 2 equal columns */
    }
}

/* Mobile: 1 column */
@media (max-width: 767px) {
    .service-solutions-grid {
        grid-template-columns: 1fr; /* Single column */
        gap: var(--spacing-md);
    }
}

/* Remove the old auto-grid selectors that might be interfering */

/* Responsive Adjustments */
@media (max-width: 767px) {
    .service-solution-card {
        padding: var(--spacing-md);
    }

    .service-actions {
        flex-direction: column;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon-img {
        width: 36px;
        height: 36px;
    }

    .service-title {
        font-size: var(--fs-md);
    }
}

/* Animation for card entrance */
@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-solution-card {
    animation: cardFadeIn var(--duration-slow) var(--ease-out);
}

    /* Focus states for accessibility */
    .service-solution-card:focus-within {
        outline: 3px solid var(--color-primary-light);
        outline-offset: 2px;
    }

.btn:focus {
    outline: 3px solid var(--color-primary-light);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .service-solution-card {
        border-width: 2px;
        border-color: var(--color-heading);
    }

    .service-icon {
        background: var(--color-heading);
    }

    .btn-outline {
        border-width: 2px;
    }
}
/* Animation for cards entrance */ /*--------------------------------------------------------------
    TECHNICAL SHOWCASE BLOCK
--------------------------------------------------------------*/

.technical-showcase-block {
    width: 100%;
}

/* Main Technical Overview Section */
.technical-overview {
    margin-bottom: var(--spacing-xl);
}

.technical-overview-content {
    display: block; /* Changed from grid to block for single column layout */
    text-align: center;
}

.technical-text {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.technical-title {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    font-style: italic;
    text-align: center;
}

.technical-description {
    font-family: var(--font-body);
    font-size: var(--fs-md);
    color: var(--color-text);
    line-height: var(--line-height);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

/* Technical Specifications Grid */
.tech-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--color-gray-50);
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tech-spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xs);
    background: white;
    border-radius: 4px;
    min-height: 40px;
}

.tech-spec-label {
    font-family: var(--font-heading);
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-spec-value {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--color-heading);
}

/* Technical CTA */
.technical-cta {
    text-align: center;
    margin-top: var(--spacing-md);
}

/* Technical Media - Now positioned below text */
.technical-media {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--spacing-lg);
}

.technical-image,
.technical-video {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.technical-main-img,
.technical-video-player {
    width: 100%;
    height: auto;
    display: block;
}

/* Imaging Types Showcase */
.imaging-types-showcase {
    margin-bottom: var(--spacing-xl);
}

.imaging-types-title {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--color-heading);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.imaging-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.imaging-type-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--duration-normal) var(--ease-in-out);
}

    .imaging-type-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

.imaging-type-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--color-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.imaging-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed from cover to contain */
    object-position: center;
    transition: transform var(--duration-normal) var(--ease-in-out);
}

.imaging-type-card:hover .imaging-img {
    transform: scale(1.02); /* Reduced scale to prevent cutoff */
}

.imaging-type-content {
    padding: var(--spacing-md);
}

.imaging-type-title {
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: var(--spacing-xs);
    line-height: 1.3;
}

.imaging-type-description {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    color: var(--color-text);
    line-height: 1.4;
    margin: 0;
}

/* Applications Section */
.technical-applications {
    background: var(--color-gray-50);
    padding: var(--spacing-lg);
    border-radius: 12px;
    border-left: 4px solid var(--color-primary);
}

.applications-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.applications-section {
    background: white;
    padding: var(--spacing-md);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.applications-title {
    font-family: var(--font-heading);
    font-size: var(--fs-md);
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.applications-section .rte {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    color: var(--color-text);
    line-height: var(--line-height);
}

    .applications-section .rte ul {
        margin: 0;
        padding-left: var(--spacing-md);
    }

    .applications-section .rte li {
        margin-bottom: var(--spacing-xs);
    }

/* Section Background Styling */
.technical-showcase-section.section--gray {
    background: var(--color-gray-50);
    padding: var(--spacing-xl) 0;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .imaging-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .imaging-types-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .technical-title {
        font-size: var(--fs-lg);
    }

    .technical-description {
        font-size: var(--fs-sm);
    }

    .imaging-type-image {
        height: 160px;
    }

    .technical-showcase-section.section--gray {
        padding: var(--spacing-lg) 0;
    }

    .technical-applications {
        padding: var(--spacing-md);
    }

    .tech-specs-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .tech-spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: var(--spacing-sm);
    }

    .imaging-type-content {
        padding: var(--spacing-sm);
    }

    .applications-section {
        padding: var(--spacing-sm);
    }
}

/* Hide empty sections */
.tech-specs-grid:empty {
    display: none;
}

.imaging-types-showcase:has(.imaging-types-grid:empty) {
    display: none;
}

.technical-applications:has(.applications-grid:empty) {
    display: none;
}

.applications-section:empty {
    display: none;
}

/* Hide individual spec items that are empty */
.tech-spec-item:empty {
    display: none;
}

/* Hide imaging cards with no content */
.imaging-type-card:has(.imaging-type-title:empty, .imaging-type-title:not(*)) {
    display: none;
}

/* Hide sections with no visible children */
.imaging-types-grid:not(:has(.imaging-type-card:not([style*="display: none"]))) {
    display: none;
}

.applications-grid:not(:has(.applications-section:not(:empty))) {
    display: none;
}

/* Alternative approach for better browser support */
.tech-spec-item {
    display: flex;
}

    .tech-spec-item:not(:has(.tech-spec-value:not(:empty))) {
        display: none !important;
    }

/* Hide technical media if no content */
.technical-media:empty {
    display: none;
}

.technical-image:not(:has(img)),
.technical-video:not(:has(video)) {
    display: none;
}

@keyframes techniqueCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.imaging-type-card {
    animation: techniqueCardFadeIn var(--duration-slow) var(--ease-out);
}

    .imaging-type-card:nth-child(1) {
        animation-delay: 0ms;
    }

    .imaging-type-card:nth-child(2) {
        animation-delay: 100ms;
    }

    .imaging-type-card:nth-child(3) {
        animation-delay: 200ms;
    }

    .imaging-type-card:nth-child(4) {
        animation-delay: 300ms;
    }

    /* Focus states for accessibility */
    .imaging-type-card:focus-within {
        outline: 3px solid var(--color-primary-light);
        outline-offset: 2px;
    }

/* High contrast mode support */
@media (prefers-contrast: high) {
    .imaging-type-card {
        border: 2px solid var(--color-heading);
    }

    .tech-specs-grid {
        border-left-width: 6px;
    }

    .technical-applications {
        border-left-width: 6px;
    }
}
