    /* ==================================================== */
/* MICRO FAQ SECTION - STRUCTURED & SEO OPTIMIZED      */
/* ==================================================== */

.micro-qa {
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.95) 0%, 
        rgba(20, 30, 20, 0.9) 100%);
    border: 1px solid rgba(0, 177, 64, 0.2);
    border-radius: 20px;
    padding: clamp(2rem, 4vw, 3rem);
    margin: 3rem auto;
    max-width: min(800px, 95vw);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 15px 50px rgba(0, 177, 64, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.micro-qa::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        #00b140, 
        #0a5e2a, 
        #00b140);
    z-index: 1;
}

/* Main Title */
.micro-qa > h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    background: linear-gradient(135deg, #00b140 0%, #0a5e2a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
    line-height: 1.3;
}

.micro-qa > h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        #00b140, 
        transparent);
    border-radius: 2px;
}

/* FAQ Items Container */
.micro-qa > div:not(:first-child) {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

/* Individual Q&A Item */
.qa-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.qa-item:hover {
    background: rgba(0, 177, 64, 0.05);
    border-color: rgba(0, 177, 64, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 177, 64, 0.1);
}

.qa-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #00b140, #0a5e2a);
    border-radius: 4px 0 0 4px;
}

/* Question Styling */
.qa-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
    padding-left: 1.5rem;
    position: relative;
}

.qa-item h3::before {
    content: 'Q:';
    position: absolute;
    left: 0;
    color: #00b140;
    font-weight: 900;
    font-size: 1.2rem;
}

/* Highlight location names in questions */
.qa-item h3 strong {
    color: #00b140;
    font-weight: 800;
}

/* Answer Styling */
.qa-item [itemprop="acceptedAnswer"] {
    padding-left: 1.5rem;
    position: relative;
}

.qa-item [itemprop="acceptedAnswer"]::before {
    content: 'A:';
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    font-size: 1.1rem;
}

.qa-item [itemprop="acceptedAnswer"] p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    padding-top: 0.25rem;
}

/* Highlight important information */
.qa-item [itemprop="acceptedAnswer"] strong {
    color: #ffffff;
    font-weight: 900;
}

/* Specific styling for duration info */
.qa-item [itemprop="acceptedAnswer"] .duration-highlight {
    color: #00b140;
    font-weight: 700;
    background: rgba(0, 177, 64, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
}

/* Interactive elements */
.qa-item [itemprop="acceptedAnswer"] a {
    color: #00b140;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid rgba(0, 177, 64, 0.3);
    transition: all 0.2s ease;
}

.qa-item [itemprop="acceptedAnswer"] a:hover {
    color: #0a5e2a;
    border-bottom-color: #0a5e2a;
}

/* Airport-specific styling */
.qa-item.airport-item {
    background: rgba(0, 177, 64, 0.03);
    border-color: rgba(0, 177, 64, 0.15);
}

.qa-item.airport-item::before {
    background: linear-gradient(to bottom, #00b140, #2ecc71);
}

.qa-item.airport-item h3::before {
    content: '✈️';
    font-size: 1rem;
}

/* Booking-specific styling */
.qa-item.booking-item {
    background: rgba(248, 183, 57, 0.03);
    border-color: rgba(248, 183, 57, 0.15);
}

.qa-item.booking-item::before {
    background: linear-gradient(to bottom, #f8b739, #ff9f00);
}

.qa-item.booking-item h3::before {
    content: '📱';
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .micro-qa {
        padding: 1.5rem;
        border-radius: 16px;
        margin: 2rem auto;
    }
    
    .qa-item {
        padding: 1.25rem;
    }
    
    .qa-item h3,
    .qa-item [itemprop="acceptedAnswer"] {
        padding-left: 1.25rem;
    }
    
    .qa-item h3 {
        font-size: 1.05rem;
    }
    
    .qa-item [itemprop="acceptedAnswer"] p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .micro-qa {
        padding: 1.25rem;
        margin: 1.5rem auto;
    }
    
    .qa-item {
        padding: 1rem;
    }
    
    .qa-item h3,
    .qa-item [itemprop="acceptedAnswer"] {
        padding-left: 1rem;
    }
    
    .qa-item h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .qa-item h3::before {
        font-size: 1rem;
    }
    
    .qa-item [itemprop="acceptedAnswer"]::before {
        font-size: 1rem;
    }
    
    .qa-item [itemprop="acceptedAnswer"] p {
        font-size: 0.9rem;
    }
}

/* Animation */
@keyframes slideInFAQ {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.micro-qa > h2 {
    animation: slideInFAQ 0.5s ease-out forwards;
}

.qa-item:nth-child(2) { animation: slideInFAQ 0.6s ease-out 0.1s forwards; }
.qa-item:nth-child(3) { animation: slideInFAQ 0.6s ease-out 0.2s forwards; }
.qa-item:nth-child(4) { animation: slideInFAQ 0.6s ease-out 0.3s forwards; }

/* Print Styles */
@media print {
    .micro-qa {
        background: white !important;
        border: 2px solid #000 !important;
        box-shadow: none !important;
    }
    
    .micro-qa > h2 {
        color: #000 !important;
        background: none !important;
        -webkit-background-clip: initial !important;
        background-clip: initial !important;
    }
    
    .qa-item {
        break-inside: avoid;
        border: 1px solid #ddd !important;
        background: #f9f9f9 !important;
    }
    
    .qa-item::before {
        background: #000 !important;
    }
    
    .qa-item h3 {
        color: #000 !important;
    }
    
    .qa-item [itemprop="acceptedAnswer"] p {
        color: #333 !important;
    }
}

/* Accessibility */
.qa-item:focus-within {
    outline: 2px solid #00b140;
    outline-offset: 2px;
}

/* Schema.org structured data visual indicators */
[itemprop="mainEntity"] {
    position: relative;
}

[itemtype="https://schema.org/Question"] {
    cursor: help;
}

/* Tooltip for structured data info */
.qa-item::after {
    position: absolute;
    top: -10px;
    right: 10px;
    background: rgba(0, 177, 64, 0.9);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.qa-item:hover::after {
    opacity: 1;
}