/* Service Pages Styling - Healthcare, Warehouse, Resources */

/* Import base styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Service Hero Sections */
.service-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #0f0f1e 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(101, 84, 192, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    animation: pulse 20s ease-in-out infinite;
}

/* Animated grid background */
.service-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.healthcare-hero::before {
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 168, 107, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.15) 0%, transparent 40%);
}

.warehouse-hero::before {
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.15) 0%, transparent 40%);
}

.service-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.service-hero .hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(101, 84, 192, 0.2));
    border: 1px solid rgba(0, 212, 255, 0.5);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
    50% { box-shadow: 0 0 30px rgba(0, 212, 255, 0.5); }
}

.service-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-hero .hero-subtitle {
    font-size: 1.35rem;
    opacity: 0.95;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.service-hero .hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem auto 1.5rem;
    max-width: 1000px;
}

.service-hero .stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-hero .stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
}

.service-hero .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff 0%, #6554C0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.service-hero .stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Resources Hero */
.resources-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0052cc 0%, #00d4ff 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.resources-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.resources-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.resources-hero .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* CTA Buttons Styling */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 0.5rem;
    padding-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    margin-bottom: 0;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    line-height: 1;
}

.cta-primary {
    background: linear-gradient(135deg, #0052cc 0%, #00d4ff 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 82, 204, 0.4);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Featured Resource Card */
.featured-resource {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.resource-card {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.resource-card.featured {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #0052cc, #00d4ff) border-box;
    overflow: visible;
}

.resource-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0052cc, #00d4ff, #0052cc);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.resource-badge {
    position: absolute;
    top: 15px;
    right: 30px;
    background: linear-gradient(135deg, #0052cc, #00d4ff);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.3);
    z-index: 10;
}

.resource-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.resource-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Checklist Preview */
.checklist-preview {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #dee2e6;
}

.checklist-preview h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.checklist-section {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.checklist-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.checklist-section h4 {
    color: #0052cc;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.checklist-section ul {
    list-style: none;
    padding: 0;
}

.checklist-section li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.checklist-section li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

/* Download Forms */
.download-form {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    border: 1px solid #e9ecef;
}

.download-form h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1a1a2e;
}

.resource-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.resource-form input,
.resource-form select {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.resource-form input:focus,
.resource-form select:focus {
    outline: none;
    border-color: #0052cc;
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

.form-note {
    font-size: 0.875rem;
    color: #666;
    margin-top: 1rem;
    text-align: center;
    font-style: italic;
}

/* Industry Guides */
.industry-guides {
    padding: 5rem 0;
    background: white;
}

.industry-guides h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.guide-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0052cc, #00d4ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.guide-card:hover::before {
    transform: scaleX(1);
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.guide-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.healthcare-icon { 
    background: linear-gradient(135deg, rgba(0, 168, 107, 0.1), rgba(0, 168, 107, 0.2));
}

.warehouse-icon { 
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.2));
}

.manufacturing-icon { 
    background: linear-gradient(135deg, rgba(101, 84, 192, 0.1), rgba(101, 84, 192, 0.2));
}

.guide-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.guide-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.guide-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.guide-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 0.95rem;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.guide-features li:last-child {
    border-bottom: none;
}

.guide-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Tools Section */
.tools-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.tools-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tool-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.tool-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.tool-card:hover::after {
    width: 300%;
    height: 300%;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: #00d4ff;
}

.tool-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
    position: relative;
    z-index: 1;
}

.tool-card p {
    color: #666;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.tool-link {
    color: #0052cc;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.tool-link:hover {
    color: #00d4ff;
}

/* Webinars Section */
.webinars-section {
    padding: 5rem 0;
    background: white;
}

.webinars-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.webinars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.webinar-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.webinar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.webinar-thumbnail {
    height: 220px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.webinar-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.2) 0%, transparent 50%);
    animation: pulse 3s ease-in-out infinite;
}

.play-button {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #0052cc;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.play-button:hover {
    transform: scale(1.15);
    background: white;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
}

.webinar-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: #1a1a2e;
}

.webinar-card p {
    padding: 0 1.5rem;
    color: #666;
    line-height: 1.6;
}

.webinar-meta {
    padding: 1rem 1.5rem;
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid #f0f0f0;
}

.webinar-card .cta-button {
    margin: 0 1.5rem 1.5rem;
    width: calc(100% - 3rem);
}

/* Email Course */
.email-course {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0052cc 0%, #00d4ff 100%);
    position: relative;
    overflow: hidden;
}

.email-course::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.course-card {
    background: white;
    border-radius: 20px;
    padding: 3.5rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.course-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.course-card > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.course-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2.5rem 0;
}

.course-day {
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.course-day:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
}

.day-number {
    display: block;
    font-weight: 700;
    color: #0052cc;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.day-topic {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.course-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto 0;
}

.course-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
}

.course-form input:focus {
    outline: none;
    border-color: #0052cc;
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

/* Pain Points / Challenges */
.pain-points {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.pain-points h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.challenge-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid #ff6b35;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.challenge-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.challenge-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(0);
}

.challenge-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.challenge-card p {
    color: #666;
    line-height: 1.6;
}

/* Solutions */
.solutions {
    padding: 5rem 0;
    background: white;
}

.solutions h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.solution-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0052cc, #00d4ff);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.solution-card:hover::before {
    transform: scaleY(1);
}

.solution-card:hover {
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    transform: translateX(5px);
}

.solution-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.solution-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.solution-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    border-bottom: 1px solid #f8f9fa;
}

.solution-features li:last-child {
    border-bottom: none;
}

.solution-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
    font-size: 1.2rem;
}

.solution-results {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    border-left: 3px solid #00d4ff;
}

.solution-results strong {
    color: #0052cc;
}

/* Case Study */
.case-study {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.case-study-header {
    text-align: center;
    margin-bottom: 3rem;
}

.case-study-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.case-subtitle {
    font-size: 1.3rem;
    color: #666;
}

.case-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.case-overview,
.case-solution,
.case-results {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.case-overview h3,
.case-solution h3,
.case-results h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.case-overview ul,
.case-solution ul {
    list-style: none;
    padding: 0;
}

.case-overview li,
.case-solution li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    display: flex;
    align-items: flex-start;
    color: #555;
    line-height: 1.6;
}

.case-overview li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: #ff6b35;
    line-height: 1.5;
}

.case-solution li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.75rem;
    line-height: 1.5;
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.result {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.result:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
}

.result-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0052cc 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 0.95rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Compliance Section */
.compliance {
    padding: 5rem 0;
    background: white;
}

.compliance h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.compliance-card {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.compliance-card:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.compliance-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.compliance-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.compliance-card p {
    color: #666;
    line-height: 1.6;
}

/* ROI Calculators */
.healthcare-roi,
.warehouse-roi {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0052cc 0%, #00d4ff 100%);
    position: relative;
    overflow: hidden;
}

.healthcare-roi::before,
.warehouse-roi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.healthcare-roi h2,
.warehouse-roi h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    position: relative;
    z-index: 1;
}

.roi-calculator {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.calc-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a2e;
    font-size: 0.95rem;
}

.input-group input {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #0052cc;
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

.roi-results {
    background: linear-gradient(135deg, #0052cc 0%, #00d4ff 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    display: none;
}

.roi-results::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.roi-results h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.savings-total {
    font-size: 4rem;
    font-weight: 800;
    margin: 1.5rem 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.savings-breakdown {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255,255,255,0.3);
    position: relative;
    z-index: 1;
}

.savings-breakdown div {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    opacity: 0.95;
}

.roi-timeline {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

/* Integration Section */
.integrations {
    padding: 5rem 0;
    background: white;
}

.integrations h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.integrations .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.integration-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: #666;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
}

.integration-item:hover {
    background: white;
    border-color: #00d4ff;
    color: #0052cc;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
}

/* Timeline */
.timeline {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.timeline h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.timeline-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 50px;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #0052cc, #00d4ff);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    align-items: flex-start;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 8px;
    width: 15px;
    height: 15px;
    background: white;
    border: 3px solid #0052cc;
    border-radius: 50%;
    z-index: 1;
}

.timeline-marker {
    background: linear-gradient(135deg, #0052cc, #00d4ff);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    height: fit-content;
    box-shadow: 0 3px 10px rgba(0, 82, 204, 0.3);
    min-width: 120px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.timeline-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.timeline-item p {
    color: #666;
    line-height: 1.6;
}

/* CTAs */
.healthcare-cta,
.warehouse-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0052cc 0%, #00d4ff 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.healthcare-cta::before,
.warehouse-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.assessment-form {
    max-width: 700px;
    margin: 2rem auto 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.assessment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.assessment-form input,
.assessment-form select,
.assessment-form textarea {
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.assessment-form input:focus,
.assessment-form select:focus,
.assessment-form textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.assessment-form textarea {
    width: 100%;
    resize: vertical;
    min-height: 100px;
}

.assessment-form .cta-button {
    width: 100%;
    margin-top: 1rem;
    padding: 1.2rem;
    font-size: 1.1rem;
}

/* FAQ Healthcare */
.healthcare-faq {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.healthcare-faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(90deg, #f8f9fa, #ffffff);
}

.faq-question span {
    font-size: 1.5rem;
    color: #0052cc;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

/* Custom Training Feature Section */
.custom-training-feature {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.feature-highlight {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-highlight h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0052cc, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Training Process */
.training-process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.process-step {
    background: white;
    padding: 2.5rem 2rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: left;
    position: relative;
    transition: transform 0.3s ease;
    margin-top: 30px;
    min-height: 150px;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0052cc, #00d4ff);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    position: absolute;
    top: -20px;
    left: 30px;
    box-shadow: 0 4px 10px rgba(0, 82, 204, 0.3);
}

.process-step h3 {
    font-size: 1.15rem;
    margin: 0 0 0.75rem 0;
    color: #1a1a2e;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-align: left;
}

.process-step p {
    color: #666;
    line-height: 1.6;
    font-size: 0.925rem;
    margin: 0;
    padding: 0;
    font-weight: 400;
    text-align: left;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.01em;
}

/* Training Benefits */
.training-benefits {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.training-benefits h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.training-benefits ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.training-benefits li {
    color: #666;
    padding-left: 1.5rem;
    position: relative;
}

.training-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.pricing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border: 2px solid #00d4ff;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.pricing-card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0052cc, #00d4ff);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin: 1rem 0;
    background: linear-gradient(135deg, #0052cc, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card p {
    text-align: center;
    color: #666;
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-card li {
    padding: 0.75rem 0 0.75rem 2rem;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
    position: relative;
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
    font-size: 1.1rem;
    top: 0.75rem;
}

.pricing-card li:last-child {
    border-bottom: none;
}

.pricing-card .cta-button {
    width: 100%;
    text-align: center;
}

/* SMB specific sections */
.smb-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.smb-roi {
    padding: 4rem 0;
    background: #f8f9fa;
}

.smb-calc {
    max-width: 800px;
    margin: 0 auto;
}

.smb-faq {
    padding: 4rem 0;
    background: white;
}

.smb-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.smb-cta .cta-content {
    text-align: center;
    color: white;
}

.smb-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.smb-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .training-process {
        grid-template-columns: 1fr;
    }
    
    .training-benefits ul {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

/* Insurance Page Specific Styles */
.insurance-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.cleveland-insurance {
    padding: 4rem 0;
    background: #f8f9fa;
}

.cleveland-insurance h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.insurance-fact {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.insurance-fact:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.insurance-fact h3 {
    font-size: 1.5rem;
    color: #0052cc;
    margin-bottom: 1rem;
}

.insurance-fact p {
    color: #666;
    line-height: 1.6;
}

.insurance-roi {
    padding: 4rem 0;
    background: white;
}

.insurance-roi h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.insurance-calc {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.insurance-faq {
    padding: 4rem 0;
    background: #f8f9fa;
}

.insurance-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

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

.insurance-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.insurance-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Footer for service pages */
.footer {
    padding: 2rem 0;
    background: #1a1a2e;
    color: white;
    text-align: center;
}

.footer p {
    margin: 0;
    opacity: 0.9;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Service Hero Mobile Optimizations */
    .service-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .service-hero .hero-content {
        padding: 0 1rem;
    }
    
    .service-hero .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
        animation: none;
    }
    
    .service-hero h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .service-hero .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        padding: 0 0.5rem;
    }
    
    .service-hero .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .service-hero .stat-number {
        font-size: 1.5rem;
    }
    
    .service-hero .stat-label {
        font-size: 0.75rem;
    }
    
    .service-hero .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .service-hero .cta-button {
        width: 100%;
        padding: 1rem !important;
    }
    
    /* Resources Page Mobile Fixes */
    .checklist-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .checklist-section {
        padding: 1rem;
    }
    
    .checklist-section h4 {
        font-size: 1rem;
        word-wrap: break-word;
    }
    
    .checklist-section li {
        font-size: 0.85rem;
        padding-left: 1.25rem;
    }
    
    .checklist-preview {
        padding: 1rem;
        overflow-x: hidden;
    }
    
    .resource-form .form-row,
    .assessment-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .resource-form input,
    .resource-form select {
        font-size: 16px; /* Prevents iOS zoom */
        padding: 0.875rem;
    }
    
    .guides-grid,
    .webinars-grid {
        grid-template-columns: 1fr;
    }
    
    .course-form {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .savings-total {
        font-size: 3rem;
    }
    
    .timeline-content {
        padding-left: 20px;
    }
    
    .timeline-content::before {
        left: 0;
    }
    
    .timeline-item::before {
        left: -8px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-hero .hero-content,
.resource-card,
.guide-card,
.tool-card,
.webinar-card {
    animation: fadeInUp 0.8s ease-out;
}

/* Form and Button Fixes - REMOVED DUE TO CONFLICTS */
/* Styles moved to inline styles in HTML files */

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #0052cc;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}@media (max-width: 480px) {
    /* Extra Small Mobile for Service Pages */
    .service-hero {
        padding: 80px 0 40px;
    }
    
    /* Resources Page Extra Small Mobile */
    .checklist-preview {
        padding: 0.75rem;
    }
    
    .checklist-preview h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .checklist-section {
        padding: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .checklist-section h4 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .checklist-section ul {
        margin: 0;
    }
    
    .checklist-section li {
        font-size: 0.8rem;
        padding: 0.25rem 0 0.25rem 1rem;
    }
    
    .download-form {
        padding: 1rem;
    }
    
    .download-form h3 {
        font-size: 1.25rem;
    }
    
    .resource-form input,
    .resource-form select {
        padding: 0.75rem;
        font-size: 16px;
    }
    
    .resource-form button {
        padding: 0.875rem !important;
        font-size: 0.9rem !important;
    }
    
    /* Guide cards on mobile */
    .guide-card {
        padding: 1rem;
    }
    
    .guide-card h3 {
        font-size: 1.1rem;
    }
    
    .service-hero h1 {
        font-size: 1.5rem;
    }
    
    .service-hero .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .service-hero .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .service-hero .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .service-hero .stat-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
    }
    
    .service-hero .stat-number {
        font-size: 1.25rem;
    }
    
    .service-hero .cta-button {
        font-size: 0.9rem !important;
        padding: 0.875rem !important;
    }
    
    /* Hide animations on small screens */
    .service-hero::before,
    .service-hero::after {
        animation: none;
    }
}
