/* Premium Redesign Design System */
:root {
    --seo-primary: #FF6B1E;
    --seo-primary-rgb: 255, 107, 30;
    --seo-secondary: #7C3AED;
    /* Purple accent */
    --seo-dark-bg: #090d16;
    --seo-card-bg: rgba(17, 24, 39, 0.7);
    --seo-light-bg: #f8fafc;
    --seo-text-dark: #0f172a;
    --seo-text-muted: #64748b;
    --seo-border: rgba(255, 255, 255, 0.08);
    --seo-glow: 0 0 30px rgba(255, 107, 30, 0.25);
    --seo-transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.seo-page-wrapper {
    font-family: 'Inter', sans-serif;
    color: #475569;
    overflow-x: hidden;
    background-color: #ffffff;
}

/* Headings Styling */
.seo-page-wrapper h1,
.seo-page-wrapper h2,
.seo-page-wrapper h3,
.seo-page-wrapper h4,
.seo-page-wrapper h5,
.seo-page-wrapper h6 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--seo-text-dark);
    font-weight: 700;
}

/* Section Typography & Titles */
.seo-sec-title {
    position: relative;
    margin-bottom: 60px;
}

.seo-sec-title .sub-title {
    color: var(--seo-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 12px;
    background: rgba(255, 107, 30, 0.1);
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px dashed rgba(255, 107, 30, 0.3);
}

.seo-sec-title .title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--seo-text-dark);
    line-height: 1.2;
    letter-spacing: -1px;
}

.seo-sec-title .title span {
    background: linear-gradient(135deg, var(--seo-primary) 0%, #ff8e53 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Floating Animated Circles in Background */
.seo-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.15;
    animation: float-blob 20s infinite alternate;
    pointer-events: none;
}

.seo-blob-primary {
    background: var(--seo-primary);
    width: 400px;
    height: 400px;
    top: 10%;
    left: -100px;
}

.seo-blob-secondary {
    background: var(--seo-secondary);
    width: 300px;
    height: 300px;
    top: 50%;
    right: -100px;
    animation-delay: -5s;
}

@keyframes float-blob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(50px, 100px) scale(1.1);
    }

    100% {
        transform: translate(-30px, -50px) scale(0.9);
    }
}

/* Premium Buttons */
.seo-btn-gradient {
    background: linear-gradient(135deg, var(--seo-primary) 0%, #ff8e53 100%);
    color: #ffffff !important;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 10px 25px rgba(255, 107, 30, 0.35);
    transition: var(--seo-transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
}

.seo-btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.seo-btn-gradient:hover::before {
    transform: translateX(100%);
}

.seo-btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 30, 0.5), var(--seo-glow);
}

.seo-btn-outline {
    background: transparent;
    color: var(--seo-text-dark) !important;
    font-weight: 600;
    padding: 14px 34px;
    border-radius: 50px;
    border: 2px solid #e2e8f0;
    transition: var(--seo-transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
}

.seo-btn-outline:hover {
    border-color: var(--seo-primary);
    color: var(--seo-primary) !important;
    background: rgba(255, 107, 30, 0.03);
    transform: translateY(-2px);
}

/* Premium Glassmorphic Cards (3D Effect) */
.seo-premium-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    transition: var(--seo-transition);
    padding: 40px 35px;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.seo-premium-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 107, 30, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: var(--seo-transition);
    z-index: -1;
}

.seo-premium-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.08);
    border-color: rgba(255, 107, 30, 0.2);
}

.seo-premium-card:hover::after {
    opacity: 1;
}

/* Hero Section CSS - Upgraded for dark banner support */
.seo-hero {
    position: relative;
    padding: 160px 0 100px;
    z-index: 1;
    overflow: hidden;
}

.seo-page-wrapper .seo-hero .seo-hero-title {
    color: #ffffff !important;
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
}

.seo-hero-title span {
    background: linear-gradient(135deg, var(--seo-primary) 0%, #ff8e53 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-hero-support {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #cbd5e1 !important;
    margin-bottom: 40px;
}

.seo-hero .seo-btn-outline,
.bg-dark .seo-btn-outline,
.seo-section-dark .seo-btn-outline {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

.seo-hero .seo-btn-outline:hover,
.bg-dark .seo-btn-outline:hover,
.seo-section-dark .seo-btn-outline:hover {
    background: #ffffff !important;
    color: var(--seo-dark-bg) !important;
    border-color: #ffffff !important;
}

.seo-trust-badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 45px;
}

.seo-trust-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: var(--seo-transition);
    backdrop-filter: blur(5px);
}

.seo-trust-badge:hover {
    transform: scale(1.05);
    border-color: var(--seo-primary);
    box-shadow: 0 4px 20px rgba(255, 107, 30, 0.15);
}

.seo-trust-badge i {
    color: var(--seo-primary);
    font-size: 1.1rem;
}

/* Advanced Audit Form CSS */
.seo-audit-card-wrap {
    position: relative;
}

.seo-audit-card-wrap::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(135deg, var(--seo-primary), var(--seo-secondary));
    border-radius: 32px;
    z-index: -1;
    opacity: 0.15;
    filter: blur(15px);
}

.seo-enquiry-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(255, 107, 30, 0.1);
    padding: 24px;
}

.seo-enquiry-card h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--seo-text-dark);
    margin-bottom: 6px;
}

.seo-enquiry-card p {
    color: var(--seo-text-muted);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.seo-form-group {
    margin-bottom: 12px;
    position: relative;
}

.seo-form-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--seo-text-dark);
    margin-bottom: 4px;
    display: block;
}

.seo-form-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background-color: #f8fafc;
    font-size: 0.88rem;
    transition: var(--seo-transition);
    color: #334155 !important;
}

.seo-form-input:focus {
    border-color: var(--seo-primary);
    background-color: #ffffff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 107, 30, 0.15);
}

.seo-enquiry-card .seo-btn-gradient {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.seo-alert {
    display: none;
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.seo-alert-success {
    background-color: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
}

.seo-alert-error {
    background-color: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
}

/* Sticky CTA Button */
.seo-sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    transition: var(--seo-transition);
    opacity: 0;
    transform: translateY(100px);
}

.seo-sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.seo-sticky-btn {
    background: linear-gradient(135deg, var(--seo-primary) 0%, #ff8e53 100%);
    color: #ffffff !important;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 107, 30, 0.45), var(--seo-glow);
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
}

/* Interactive CSS-based Traffic Chart */
.seo-chart-container {
    position: relative;
    background: #0b0f19;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin: 40px auto 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.seo-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

.seo-chart-stats {
    display: flex;
    gap: 30px;
}

.seo-chart-stat-val {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    font-family: 'Space Grotesk', sans-serif;
}

.seo-chart-stat-lbl {
    color: var(--seo-text-muted);
    font-size: 0.8rem;
    margin-top: 5px;
}

.seo-chart-grid {
    position: relative;
    height: 250px;
    display: flex;
    align-items: flex-end;
}

.seo-chart-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.seo-chart-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--seo-primary);
    border: 2px solid #ffffff;
    border-radius: 50%;
    transform: translate(-50%, 50%);
    cursor: pointer;
    transition: var(--seo-transition);
    box-shadow: 0 0 15px var(--seo-primary);
}

.seo-chart-point:hover {
    transform: translate(-50%, 50%) scale(1.5);
    background: #ffffff;
    border-color: var(--seo-primary);
}

.seo-chart-label-container {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    color: var(--seo-text-muted);
    font-size: 0.85rem;
}

/* Dark Mode Accent Sections */
.seo-section-dark {
    background-color: var(--seo-dark-bg);
    color: #94a3b8;
    position: relative;
}

.seo-section-dark .seo-sec-title .title {
    color: #ffffff;
}

/* Services Listing & 3D Cards */
.seo-service-list {
    padding-left: 0;
    list-style: none;
    margin: 20px 0 30px;
}

.seo-service-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #475569;
}

.seo-service-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--seo-primary);
    font-size: 1.1rem;
}

.seo-section-dark .seo-service-list li {
    color: #94a3b8;
}

/* Timeline Roadmap Steps */
.seo-roadmap {
    position: relative;
    padding: 50px 0;
}

.seo-roadmap-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--seo-primary) 0%, var(--seo-secondary) 100%);
    transform: translateX(-50%);
    border-radius: 10px;
}

.seo-roadmap-node {
    position: relative;
    margin-bottom: 60px;
    z-index: 1;
}

.seo-roadmap-content {
    width: 45%;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    transition: var(--seo-transition);
    position: relative;
}

.seo-roadmap-node:nth-child(even) .seo-roadmap-content {
    margin-left: auto;
}

.seo-roadmap-dot {
    position: absolute;
    left: 50%;
    top: 30px;
    width: 24px;
    height: 24px;
    background: #ffffff;
    border: 5px solid var(--seo-primary);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(255, 107, 30, 0.4);
    z-index: 2;
}

.seo-roadmap-node:nth-child(even) .seo-roadmap-dot {
    border-color: var(--seo-secondary);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.4);
}

.seo-roadmap-step {
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--seo-gradient);
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 4px 14px;
    border-radius: 30px;
}

.seo-roadmap-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(255, 107, 30, 0.25);
}

@media screen and (max-width: 991px) {
    .seo-roadmap-line {
        left: 20px;
        transform: none;
    }

    .seo-roadmap-content {
        width: calc(100% - 50px);
        margin-left: 50px !important;
    }

    .seo-roadmap-dot {
        left: 20px;
        transform: translateX(-50%);
    }
}

/* SaaS Subscriptions Pricing Cards */
.seo-pricing-box {
    border-radius: 28px;
    background: #ffffff;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.03);
    border: 2px solid #f1f5f9;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--seo-transition);
    z-index: 1;
}

.seo-pricing-box.featured {
    border-color: var(--seo-primary);
    box-shadow: 0 30px 60px rgba(255, 107, 30, 0.15);
    transform: scale(1.04);
}

.seo-pricing-box.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--seo-gradient);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 30px;
    letter-spacing: 1px;
}

.seo-pricing-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
}

.seo-pricing-box.featured:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 35px 70px rgba(255, 107, 30, 0.2);
}

.seo-pricing-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--seo-text-dark);
    margin: 20px 0;
}

/* FAQ Collapsible Accordions (Frosted styling) */
.seo-faq-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

.seo-faq-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    margin-bottom: 18px;
    transition: var(--seo-transition);
    overflow: hidden;
}

.seo-faq-card:hover {
    border-color: rgba(255, 107, 30, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
}

.seo-faq-btn {
    width: 100%;
    padding: 22px 30px;
    text-align: left;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--seo-text-dark);
    outline: none !important;
    font-family: 'Space Grotesk', sans-serif;
}

.seo-faq-btn::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--seo-primary);
    font-size: 0.95rem;
    background: rgba(255, 107, 30, 0.08);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.seo-faq-btn.active {
    color: var(--seo-primary);
}

.seo-faq-btn.active::after {
    transform: rotate(180deg);
    background: var(--seo-primary);
    color: #ffffff;
}

.seo-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 30px;
}

.seo-faq-content p {
    padding-bottom: 22px;
    color: #475569;
    margin: 0;
    line-height: 1.7;
    font-size: 0.98rem;
}

/* Industries Tab System Styles */
.seo-ind-swiper {
    width: 100%;
    overflow: hidden;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 15px;
    margin-bottom: 45px;
}

.seo-ind-tab-btn {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    padding: 12px 24px !important;
    border-radius: 30px !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    color: var(--seo-text-dark) !important;
    white-space: nowrap !important;
    cursor: pointer !important;
    transition: var(--seo-transition) !important;
    outline: none !important;
}

.seo-page-wrapper .seo-ind-swiper .seo-ind-tab-btn.active {
    background: linear-gradient(135deg, #FF6B1E 0%, #ff8e53 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 8px 20px rgba(255, 107, 30, 0.25) !important;
}

.seo-ind-tab-pane {
    display: none;
    animation: fadeInTab 0.5s ease-in-out forwards;
}

.seo-ind-tab-pane.active {
    display: block;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.seo-ind-img-box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
    border: 8px solid #ffffff;
}

.seo-ind-img-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.seo-ind-bullet-list {
    padding-left: 0;
    list-style: none;
    margin: 25px 0 35px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 575px) {
    .seo-ind-bullet-list {
        grid-template-columns: 1fr;
    }
}

.seo-ind-bullet-list li {
    position: relative;
    padding-left: 28px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #475569;
}

.seo-ind-bullet-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--seo-primary);
    font-size: 1.1rem;
}
