/* SEO Pages Specific Styles */

/* Logo sizing for SEO pages */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
  min-height: 45px;
}

.logo-img {
  height: 35px;
  width: 60px;
  max-width: 150px;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Responsive logo adjustments */
@media (max-width: 768px) {
  .logo-text {
    display: none;
  }
}

/* SEO Hero Section */
.seo-hero {
    padding: clamp(7rem, 15vh, 10rem) 1rem clamp(4rem, 10vh, 6rem);
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.15) 0%, rgba(4, 13, 26, 0.8) 100%), radial-gradient(circle at top right, rgba(0, 229, 255, 0.1), transparent 50%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.seo-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCI+CiAgPGNpcmNsZSBjeD0iMjAiIGN5PSIyMCIgcj0iMSIgZmlsbD0icmdiYSgwLCAyMjksIDI1NSwgMC4wNSkiLz4KPC9zdmc+');
    opacity: 0.3;
    z-index: -1;
    animation: backgroundDrift 60s linear infinite;
}

.seo-hero h1 {
    font-size: clamp(2.2rem, 5vw + 1rem, 4rem);
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.15;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.seo-hero .hero-subtitle {
    font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--primary);
    font-weight: 500;
}

.seo-hero .hero-description {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.15rem);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: #d0d8e0;
    line-height: 1.8;
}

/* Breadcrumb Navigation */
.breadcrumb {
    padding: 1rem 0;
    background: rgba(4, 13, 26, 0.6);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--glass-border);
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: thin;
}

.breadcrumb a {
    color: var(--primary);
    transition: var(--transition);
    font-weight: 500;
}

.breadcrumb a:hover {
    color: #fff;
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--text-muted);
}

.breadcrumb .current {
    color: var(--text-muted);
}

/* Content Sections */
.intro,
.service-details,
.location-context,
.process-section,
.faq-section,
.related-pages {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.intro,
.faq-section {
    background: var(--bg-color);
}

.service-details,
.location-context,
.process-section {
    background: var(--bg-surface);
}

.related-pages {
    background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-color) 100%);
}

/* Content Typography */
.content-section h2 {
    font-size: clamp(1.8rem, 3vw + 0.5rem, 2.5rem);
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
    color: #fff;
    line-height: 1.2;
}

.content-section h3 {
    font-size: clamp(1.4rem, 2vw + 0.5rem, 1.8rem);
    margin-bottom: 1.2rem;
    color: #fff;
    margin-top: clamp(1.5rem, 4vw, 2.5rem);
}

.content-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #d0d8e0;
}

.content-section ul,
.content-section ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-section li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: #d0d8e0;
}

.content-section strong {
    color: var(--primary);
    font-weight: 600;
}

/* Premium Card Hover Effect Base */
.premium-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 229, 255, 0.3);
    background: rgba(0, 229, 255, 0.06);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 229, 255, 0.1);
}

.premium-card:hover::before {
    opacity: 1;
}

/* Service Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 2rem;
    margin-top: clamp(2rem, 5vw, 3.5rem);
}

.feature-item {
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.feature-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: #b0c4de;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 2rem;
    margin-top: clamp(2rem, 5vw, 3.5rem);
    counter-reset: process-counter;
}

.process-step {
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

.process-step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), #00b3cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.4);
    border: 3px solid var(--bg-surface);
}

.process-step h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    margin-top: 15px;
    color: #fff;
}

.process-step p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: #b0c4de;
}

/* FAQ Section */
.faq-section h2 {
    text-align: center;
}

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

.faq-item {
    margin-bottom: 1.25rem;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.1);
}

.faq-question {
    padding: 1.6rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.05rem;
    color: #fff;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(0, 229, 255, 0.05);
    color: var(--primary);
}

.faq-question[aria-expanded="true"] {
    background: rgba(0, 229, 255, 0.08);
    color: var(--primary);
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.faq-answer.active {
    padding: 1.5rem 2rem;
    max-height: 500px;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: #d0d8e0;
}

/* CTA Section */
.cta-section {
    padding: clamp(5rem, 12vw, 8rem) 0;
    background: linear-gradient(to top, rgba(0, 229, 255, 0.1), transparent), radial-gradient(circle at center, rgba(0, 229, 255, 0.05), transparent 60%);
    text-align: center;
    border-top: 1px solid rgba(0, 229, 255, 0.1);
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw + 1rem, 3rem);
    margin-bottom: 1.5rem;
    color: #fff;
}

.cta-section p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: #e0e8f0;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex: 0 1 auto;
    width: auto;
    font-size: 1rem;
}

.cta-buttons .svg-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.btn:hover .svg-icon {
    transform: scale(1.1);
}

/* Related Pages Section */
.related-pages h3 {
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    position: relative;
    padding-bottom: 15px;
}

.related-pages h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 2rem;
}

.related-card {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.related-card h4 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: #fff;
    transition: color 0.3s ease;
}

.related-card:hover h4 {
    color: var(--primary);
}

.related-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Location Stats */
.location-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: 2rem;
    margin: clamp(2.5rem, 6vw, 4rem) 0;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
}

.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.stat-label {
    font-size: 1.05rem;
    color: #fff;
    font-weight: 500;
}

/* Service Cards */
.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 2rem;
    margin: clamp(2rem, 5vw, 3.5rem) 0;
}

.service-card-item {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    display: flex;
    flex-direction: column;
}

.service-card-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
    position: relative;
    padding-bottom: 10px;
}

.service-card-item h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
    opacity: 0.5;
}

.service-card-item p {
    margin-bottom: 1.25rem;
    color: #e0e8f0;
}

.service-card-item ul {
    padding-left: 0;
    list-style: none;
    margin-top: auto; /* pushes list to bottom if cards vary in height */
}

.service-card-item li {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    position: relative;
    padding-left: 1.5rem;
    color: #b0c4de;
}

.service-card-item li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Trust Indicators */
.trust-section {
    background: var(--bg-surface);
    padding: clamp(4rem, 8vw, 6rem) 0;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.trust-item {
    padding: 1.5rem;
    background: transparent;
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(0, 229, 255, 0.05));
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    box-shadow: inset 0 0 15px rgba(0,229,255,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.trust-item:hover .trust-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 25px rgba(0,229,255,0.3), inset 0 0 10px rgba(0,229,255,0.2);
}

.trust-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #fff;
    font-weight: 600;
}

.trust-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: #b0c4de;
}

/* Use Cases Section */
.use-cases-section {
    margin: clamp(2.5rem, 6vw, 4rem) 0;
}

.use-cases-section h3 {
    text-align: center;
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    margin-bottom: 1rem;
    color: var(--primary);
}

.use-cases-section > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: #e0e8f0;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(0, 229, 255, 0.15);
}

.use-case-card:hover::before {
    opacity: 1;
}

.use-case-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.use-case-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), #00b3cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.4);
    flex-shrink: 0;
}

.use-case-header h4 {
    font-size: 1.3rem;
    margin: 0;
    color: #fff;
    flex: 1;
}

.use-case-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #d0d8e0;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.use-case-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.use-case-detail {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 1rem;
}

.use-case-detail strong {
    color: var(--primary);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.5rem;
}

.use-case-detail p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #b0c4de;
    margin: 0;
}

.use-case-result {
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 0.5rem;
}

.use-case-result strong {
    color: var(--primary);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.5rem;
}

.use-case-result p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #fff;
    margin: 0;
    font-weight: 500;
}

.use-case-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.use-case-stat {
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 8px;
    padding: 0.8rem;
    text-align: center;
}

.use-case-stat-label {
    display: block;
    font-size: 0.8rem;
    color: #b0c4de;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.use-case-stat-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

/* Testimonials Section */
.testimonials-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: linear-gradient(to bottom, var(--bg-surface), var(--bg-color));
    position: relative;
}

.testimonials-section h2 {
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    color: #fff;
}

.testimonials-section > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #e0e8f0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 229, 255, 0.1);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #d0d8e0;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-bottom: 1rem;
}

.testimonial-author strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.testimonial-location {
    color: #b0c4de;
    font-size: 0.9rem;
    font-style: italic;
}

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
}

.testimonial-service {
    color: var(--primary);
    font-weight: 500;
}

.testimonial-date {
    color: #708090;
}

/* Base class additions for specific items */
.feature-item, .process-step, .stat-item, .service-card-item, .related-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-item:hover, .process-step:hover, .stat-item:hover, .service-card-item:hover, .related-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 229, 255, 0.3);
    background: rgba(0, 229, 255, 0.06);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 229, 255, 0.1);
}

/* Responsive Design Overrides via pure CSS where clamp isn't enough */
@media (max-width: 768px) {
    .use-cases-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .use-case-header {
        gap: 0.75rem;
    }

    .use-case-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .use-case-header h4 {
        font-size: 1.15rem;
    }

    .use-case-description {
        font-size: 0.95rem;
    }

    .use-case-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-stars {
        font-size: 1.1rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .testimonial-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: none;
        padding: 1.2rem;
    }

    .faq-question {
        padding: 1.25rem 1rem;
    }
    
    .faq-answer.active {
        padding: 1.25rem 1rem;
    }
    
    .breadcrumb .container {
        padding-bottom: 5px; /* space for scrollbar */
    }
}

@media (max-width: 480px) {
    .cta-buttons .btn {
        font-size: 0.95rem;
    }
}

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

@keyframes backgroundDrift {
    from { background-position: 0 0; }
    to { background-position: -40px 40px; }
}

.seo-hero > .container > * {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.seo-hero h1 { animation-delay: 0.1s; }
.seo-hero .hero-subtitle { animation-delay: 0.25s; }
.seo-hero .hero-description { animation-delay: 0.4s; }
.seo-hero .cta-buttons { animation-delay: 0.55s; }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .seo-hero > .container > * {
        animation: none;
        opacity: 1;
    }
    .seo-hero::before {
        animation: none;
    }
    *, *::before, *::after {
        transition: none !important;
        animation: none !important;
    }
}

/* Print Styles */
@media print {
    .breadcrumb,
    .cta-section,
    .related-pages,
    .faq-section {
        display: none;
    }

    .seo-hero {
        background: none;
        padding: 2rem 0;
    }

    body {
        background: #fff;
        color: #000;
    }
    
    * {
        color: #000 !important;
        text-shadow: none !important;
        box-shadow: none !important;
    }
}
