/* ==========================================================================
   SEO SERVICES SUBPAGE SPECIFIC STYLES
   ========================================================================== */
/* ==========================================================================
   SEO HERO SECTION
   ========================================================================== */

.seo-hero {
    background: var(--gradient-premium-dark);
    padding: 160px 24px 100px;
    position: relative;
    overflow: hidden;
}

/* Glow Effect */
.seo-hero .glow-blob-hero {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(231, 24, 27, 0.15) 0%, transparent 70%);
    top: -10%;
    right: -5%;
    border-radius: 50%;
    z-index: 1;
}

/* ===============================
   Container
================================= */

.seo-hero .container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ===============================
   Hero Content
================================= */

.hero-content-left {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-white);
}

/* Badge */

.hero-content-left .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto 24px;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content-left .badge-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, .7);
    animation: badge-pulse-animation 2s infinite;
}

@keyframes badge-pulse-animation {
    0% {
        transform: scale(.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, .7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* ===============================
   Heading
================================= */

.hero-title {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 25px;
}

/* .hero-title .highlight {
    background: linear-gradient(90deg, #ff5b5b, #e7181b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */

/* ===============================
   Description
================================= */

.hero-desc {
    max-width: 900px;
    margin: 0 auto 40px;
    color: #cbd5e1;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* ===============================
   Buttons
================================= */

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
    padding: 15px 38px;
    border-radius: 60px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: .3s;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(231, 24, 27, .35);
}

.btn-secondary-white {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25);
    padding: 15px 38px;
    border-radius: 60px;
    text-decoration: none;
    transition: .3s;
    font-weight: 600;
}

.btn-secondary-white:hover {
    background: rgba(255, 255, 255, .08);
    border-color: #fff;
}

/* ===============================
   Google Rating
================================= */

.hero-rating-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 14px 28px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    margin: 0 auto;
}

.rating-label {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.rating-score {
    color: #ff3b3b;
    font-size: 1.5rem;
    font-weight: 700;
}

.rating-stars {
    display: flex;
    gap: 5px;
    color: #FDBA12;
}

/* ===============================
   Responsive
================================= */

@media (max-width:991px) {

    .hero-title {
        font-size: 2.9rem;
    }

    .hero-desc {
        font-size: 1.05rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary-white {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .hero-rating-badge {
        flex-wrap: wrap;
    }

}

@media (max-width:768px) {

    .seo-hero {
        padding: 120px 20px 80px;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-desc {
        font-size: 1rem;
        line-height: 1.7;
    }

}

@media (max-width:480px) {

    .hero-title {
        font-size: 1.9rem;
    }

    .hero-desc {
        font-size: .95rem;
    }

}

/* Floating Enquire Badge */
.float-enquire {
    position: fixed;
    right: 0;
    top: 40%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right bottom;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 14px 28px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 8px 8px 0 0;
    z-index: 999;
    box-shadow: -4px 0 20px rgba(231, 24, 27, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.float-enquire:hover {
    background: var(--color-primary-hover);
    padding-bottom: 34px;
}

.float-enquire i {
    margin-right: 8px;
}

/* --- 2. SEO SERVICES GRID SECTION --- */
.services-grid-section {
    padding: 100px 24px;
    background: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.badge-red {
    display: inline-block;
    color: var(--color-primary);
    background: rgba(231, 24, 27, 0.05);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.section-title .highlight {
    color: var(--color-primary);
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--color-primary);
    margin: 20px auto 0;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
    border-color: rgba(231, 24, 27, 0.15);
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    padding-bottom: 12px;
    margin-bottom: 18px;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}

.service-card h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 40px;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.service-card:hover h3::after {
    width: 80px;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
}

.service-card p strong {
    color: #0f172a;
    font-weight: 600;
}

/* --- 3. CONVERSIONS CTA BANNER --- */
.conversions-banner-section {
    padding: 60px 24px;
    background: var(--color-white);
}

.conversions-banner {
    background: var(--gradient-premium-dark);
    border-radius: 24px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.conversions-banner::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(231, 24, 27, 0.08) 0%, transparent 70%);
    bottom: -50px;
    right: -50px;
    border-radius: 50%;
    z-index: 1;
}

.conversions-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    position: relative;
    z-index: 2;
}

.conversions-avatar-wrap {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    flex-shrink: 0;
}

.conversions-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.conversions-text {
    color: var(--color-white);
}

.conversions-text h3 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 8px;
}

.conversions-text p {
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.conversions-banner .btn-primary {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    background: var(--color-white);
    color: var(--color-primary);
}

.conversions-banner .btn-primary:hover {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* --- 4. PROCESS SECTION --- */
.process-section {
    padding: 100px 24px;
    background: var(--color-white);
}

.process-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.process-left-col {
    position: sticky;
    top: 120px;
}

.process-left-col .badge-red {
    margin-bottom: 15px;
}

.process-left-col .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.process-left-col .section-line {
    margin: 0 0 25px 0;
}

.process-desc {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #475569;
}

.process-right-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.process-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.process-card:hover {
    background: var(--color-white);
    transform: translateX(8px);
    border-color: rgba(231, 24, 27, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.process-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(231, 24, 27, 0.05);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.process-card:hover .process-card-icon {
    background: var(--color-primary);
    color: var(--color-white);
}

.process-card-content {
    flex: 1;
}

.process-card-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.process-card-content p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #475569;
}

/* --- 5. BENEFITS SECTION --- */
.benefits-section {
    padding: 100px 24px;
    background: #f8fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--color-white);
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
    border-color: rgba(231, 24, 27, 0.12);
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
}

.benefits-footer-text {
    text-align: center;
    max-width: 900px;
    margin: 45px auto 0;
    font-size: 1rem;
    line-height: 1.65;
    color: #64748b;
}

/* --- 6. COMMITMENT SECTION --- */
.commitment-section {
    background: var(--gradient-premium-dark);
    padding: 100px 24px;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.commitment-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(231, 24, 27, 0.1) 0%, transparent 70%);
    top: -20%;
    left: -10%;
    border-radius: 50%;
    z-index: 1;
}

.commitment-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.commitment-content h2 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.commitment-content h2 span {
    color: var(--color-primary);
}

.commitment-text-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.commitment-text-group p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #cbd5e1;
}

.commitment-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.commitment-image-wrap img {
    width: 100%;
    max-width: 360px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease;
}

.commitment-image-wrap:hover img {
    transform: translateY(-5px);
}


/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1200px) {
    .seo-hero .container {
        gap: 40px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .commitment-grid {
        gap: 40px;
    }

    .commitment-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .process-left-col {
        position: static;
    }

    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .commitment-image-wrap img {
        max-width: 300px;
    }
}

@media (max-width: 991px) {
    .seo-hero {
        padding: 120px 20px 80px;
    }

    .seo-hero .container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-content-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-right img {
        max-width: 440px;
    }

    .services-grid-section {
        padding: 80px 20px;
    }

    .section-title {
        font-size: 2.1rem;
    }

    .conversions-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px;
        gap: 30px;
    }

    .conversions-left {
        flex-direction: column;
        gap: 20px;
    }

    .process-section {
        padding: 80px 20px;
    }

    .benefits-section {
        padding: 80px 20px;
    }

    .commitment-section {
        padding: 80px 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.3rem;
    }

    .hero-desc {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .conversions-text h3 {
        font-size: 1.6rem;
    }

    .conversions-text p {
        font-size: 0.95rem;
    }

    .commitment-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .seo-hero {
        padding: 100px 16px 60px;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary-white {
        width: 100%;
        justify-content: center;
    }

    .hero-rating-badge {
        flex-direction: column;
        border-radius: 20px;
        padding: 10px 16px;
        width: 100%;
        align-items: center;
    }

    .services-grid-section {
        padding: 60px 16px;
    }

    .section-title {
        font-size: 1.65rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .conversions-banner {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .conversions-avatar-wrap {
        width: 75px;
        height: 75px;
    }

    .conversions-text h3 {
        font-size: 1.35rem;
    }

    .process-section {
        padding: 60px 16px;
    }

    .process-card {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
    }

    .process-card:hover {
        transform: translateY(-4px);
    }

    .benefits-section {
        padding: 60px 16px;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .benefit-card h3 {
        font-size: 1.25rem;
    }

    .commitment-section {
        padding: 60px 16px;
    }

    .commitment-content h2 {
        font-size: 1.5rem;
    }

    .commitment-text-group p {
        font-size: 0.95rem;
    }
}