/**
 * SEO Pages Common Styles
 * Unified styling for all SEO landing pages
 * Rich gradients with varied orientations
 */

/* ===== STATS BANNER (Below Hero) ===== */
.stats-banner {
    background: 
        linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 140, 0, 0.04) 50%, transparent 100%),
        linear-gradient(180deg, #0d0d0d 0%, #0a0a0a 100%);
    padding: 50px 0;
    position: relative;
    border-top: 1px solid rgba(255, 107, 53, 0.15);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 50%, rgba(255, 140, 0, 0.08) 0%, transparent 30%);
    pointer-events: none;
}

.stats-banner__grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.stats-banner__item {
    text-align: center;
}

.stats-banner__number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stats-banner__label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .stats-banner {
        padding: 40px 0;
    }
    
    .stats-banner__grid {
        gap: 40px;
    }
    
    .stats-banner__number {
        font-size: 2.5rem;
    }
    
    .stats-banner__label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .stats-banner__grid {
        gap: 25px;
    }
    
    .stats-banner__number {
        font-size: 2rem;
    }
}

/* ===== HERO SECTION - Elegant Container Layout ===== */
.seo-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(255, 140, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 10% 80%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Animated background particles/shapes */
.seo-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 30% 70%, rgba(255, 140, 0, 0.05) 0%, transparent 25%);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Decorative gradient line at bottom */
.seo-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), rgba(255, 140, 0, 0.2), transparent);
}

.seo-hero__wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Side - Content */
.seo-hero__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.seo-hero__content {
    max-width: 550px;
    animation: seoHeroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes seoHeroFadeIn {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Right Side - Framed Image Slider */
.seo-hero__bg-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    animation: seoHeroImageIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

@keyframes seoHeroImageIn {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Decorative glow behind image */
.seo-hero__bg-slider::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    z-index: -1;
    border-radius: 30px;
}

.seo-hero__bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.seo-hero__bg-slide.active {
    opacity: 1;
    visibility: visible;
}

.seo-hero__bg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Hide old overlay - no longer needed */
.seo-hero__overlay {
    display: none !important;
}

/* Badge */
.seo-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.seo-hero__badge i {
    font-size: 1rem;
    animation: seoPulse 2s ease-in-out infinite;
}

@keyframes seoPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Title */
.seo-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.seo-hero__title .text-gradient {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 30%, #ffb347 60%, #ffd700 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerGradient 4s ease infinite;
}

@keyframes shimmerGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Description Text */
.seo-hero__text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    max-width: 480px;
    line-height: 1.8;
}

/* Buttons */
.seo-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.seo-hero__buttons .btn {
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
}

.seo-hero__buttons .btn--primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.35);
    color: #ffffff;
}

.seo-hero__buttons .btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.45);
}

.seo-hero__buttons .btn--outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.seo-hero__buttons .btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Slider Dots - Positioned below image */
.seo-hero__slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    gap: 10px;
    z-index: 4;
}

.seo-hero__slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.seo-hero__slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.seo-hero__slider-dot.active {
    background: var(--primary);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
}

/* ===== HERO RESPONSIVE ===== */
@media (max-width: 1200px) {
    .seo-hero__wrapper {
        padding: 0 40px;
        gap: 60px;
    }
    
    .seo-hero__title {
        font-size: clamp(2rem, 4vw, 2.8rem);
    }
}

@media (max-width: 992px) {
    .seo-hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .seo-hero__wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 24px;
    }
    
    .seo-hero__container {
        order: 1;
    }
    
    .seo-hero__content {
        text-align: center;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .seo-hero__bg-slider {
        order: 2;
        max-width: 550px;
        margin: 0 auto;
    }
    
    .seo-hero__text {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .seo-hero {
        padding: 100px 0 50px;
    }
    
    .seo-hero__wrapper {
        padding: 0 20px;
        gap: 40px;
    }
    
    .seo-hero__bg-slider {
        border-radius: 20px;
        max-width: 100%;
    }
    
    .seo-hero__title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .seo-hero__text {
        font-size: 1.05rem;
    }
    
    .seo-hero__buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .seo-hero__buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .seo-hero__container {
        padding: 90px 16px 30px;
    }
    
    .seo-hero__bg-slider {
        height: 280px;
    }
    
    .seo-hero__badge {
        padding: 10px 20px;
        font-size: 0.75rem;
    }
    
    .seo-hero__title {
        font-size: 1.6rem;
    }
    
    .seo-hero__text {
        font-size: 1rem;
    }
    
    .seo-hero__slider-dots {
        bottom: 15px;
    }
    
    .seo-hero__slider-dot {
        width: 10px;
        height: 10px;
    }
}

/* ===== SEO ABOUT SECTION - Text Left, Framed Image Right ===== */
.seo-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.seo-about__content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
}

.seo-about__content p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 20px;
}

.seo-about__content p:last-child {
    margin-bottom: 0;
}

.seo-about__image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.seo-about__image::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    z-index: -1;
    border-radius: 30px;
}

.seo-about__image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 992px) {
    .seo-about {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .seo-about__content {
        text-align: center;
    }
    
    .seo-about__image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .seo-about {
        gap: 40px;
    }
    
    .seo-about__content h2 {
        font-size: 1.6rem;
    }
}

/* ===== SECTIONS - Rich Gradient Backgrounds ===== */
.seo-section {
    padding: 100px 0;
    position: relative;
    background: 
        radial-gradient(ellipse 70% 50% at 0% 0%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 100% 100%, rgba(255, 140, 0, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #0e0e0e 50%, #0a0a0a 100%);
}

/* Section 2 - Gradient from right */
.seo-section:nth-child(2) {
    background: 
        radial-gradient(ellipse 60% 50% at 100% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 0% 80%, rgba(139, 69, 19, 0.08) 0%, transparent 50%),
        linear-gradient(225deg, #0d0d0d 0%, #0a0a0a 100%);
}

/* Section 3 - Gradient from top center */
.seo-section:nth-child(3) {
    background: 
        radial-gradient(ellipse 80% 40% at 50% 0%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 140, 0, 0.06) 0%, transparent 30%),
        linear-gradient(180deg, #0c0c0c 0%, #0a0a0a 100%);
}

/* Section 4 - Gradient diagonal */
.seo-section:nth-child(4) {
    background: 
        radial-gradient(ellipse 50% 40% at 10% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 90% 70%, rgba(255, 140, 0, 0.06) 0%, transparent 50%),
        linear-gradient(315deg, #0a0a0a 0%, #0e0e0e 50%, #0a0a0a 100%);
}

/* Section 5 - Gradient from bottom */
.seo-section:nth-child(5) {
    background: 
        radial-gradient(ellipse 70% 50% at 30% 100%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 80% 10%, rgba(255, 140, 0, 0.06) 0%, transparent 50%),
        linear-gradient(0deg, #0c0c0c 0%, #0a0a0a 100%);
}

/* Section 6 - Wide center glow */
.seo-section:nth-child(6) {
    background: 
        radial-gradient(ellipse 100% 50% at 50% 50%, rgba(255, 107, 53, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 10% 20%, rgba(255, 140, 0, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 90% 80%, rgba(139, 69, 19, 0.05) 0%, transparent 25%),
        linear-gradient(45deg, #0a0a0a 0%, #0d0d0d 100%);
}

.seo-section--alt {
    background: 
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 20% 80%, rgba(255, 140, 0, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, rgba(18, 18, 18, 1) 0%, rgba(10, 10, 10, 1) 100%);
}

/* Section with accent border */
.seo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.4), rgba(255, 140, 0, 0.2), transparent);
}

.seo-section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.seo-section__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.seo-section__text {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Gradient Orientation Classes - Use on any section */
.gradient-left {
    background: 
        radial-gradient(ellipse 70% 60% at 0% 50%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 80% 20%, rgba(255, 140, 0, 0.06) 0%, transparent 50%),
        linear-gradient(90deg, #0c0c0c 0%, #0a0a0a 100%) !important;
}

.gradient-right {
    background: 
        radial-gradient(ellipse 70% 60% at 100% 50%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 20% 80%, rgba(139, 69, 19, 0.08) 0%, transparent 50%),
        linear-gradient(270deg, #0c0c0c 0%, #0a0a0a 100%) !important;
}

.gradient-top {
    background: 
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(255, 140, 0, 0.06) 0%, transparent 25%),
        linear-gradient(180deg, #0c0c0c 0%, #0a0a0a 100%) !important;
}

.gradient-bottom {
    background: 
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(255, 140, 0, 0.06) 0%, transparent 25%),
        linear-gradient(0deg, #0c0c0c 0%, #0a0a0a 100%) !important;
}

.gradient-center {
    background: 
        radial-gradient(ellipse 100% 70% at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 20% 20%, rgba(255, 140, 0, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 80% 80%, rgba(139, 69, 19, 0.05) 0%, transparent 25%),
        #0a0a0a !important;
}

.gradient-diagonal {
    background: 
        radial-gradient(ellipse 60% 50% at 10% 10%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 90% 90%, rgba(255, 140, 0, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #0c0c0c 0%, #0a0a0a 100%) !important;
}

/* ===== PRODUCT CARDS - Full Image ===== */
.seo-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.seo-product-card {
    background: 
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.seo-product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: 
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        rgba(255, 107, 0, 0.03);
}

.seo-product-card--featured {
    border-color: rgba(255, 107, 53, 0.4);
    background: 
        radial-gradient(ellipse 100% 60% at 50% 0%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        rgba(255, 107, 0, 0.04);
    position: relative;
}

.seo-product-card--featured::before {
    content: 'NAJPOPULARNIJE';
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.seo-product-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
}

.seo-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.seo-product-card:hover .seo-product-card__image img {
    transform: scale(1.05);
}

.seo-product-card__body {
    padding: 24px;
}

.seo-product-card__title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.seo-product-card__weight {
    display: inline-block;
    background: rgba(255, 107, 0, 0.15);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.seo-product-card__desc {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.seo-product-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.seo-product-card__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* ===== FEATURES CARDS (Why Us Section) ===== */
.seo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.seo-feature {
    background: 
        radial-gradient(ellipse 100% 80% at 50% -20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.seo-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.seo-feature:hover::before {
    opacity: 1;
}

.seo-feature:hover {
    border-color: rgba(255, 107, 0, 0.4);
    transform: translateY(-5px);
    background: 
        radial-gradient(ellipse 100% 80% at 50% -20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        rgba(255, 107, 0, 0.05);
}

.seo-feature__icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(255, 140, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.seo-feature:hover .seo-feature__icon {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.3), rgba(255, 140, 0, 0.2));
    transform: scale(1.1);
}

.seo-feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.seo-feature p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .seo-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .seo-feature {
        padding: 30px 25px;
    }
}

/* ===== FEATURES/INFO BOXES with Images ===== */
.seo-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.seo-feature-box {
    background: 
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.seo-feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.seo-feature-box:hover::before {
    opacity: 1;
}

.seo-feature-box:hover {
    border-color: rgba(255, 107, 0, 0.3);
    transform: translateY(-3px);
    background: 
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
        rgba(255, 107, 0, 0.05);
}

.seo-feature-box__icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(255, 140, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary);
}

.seo-feature-box__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.seo-feature-box__text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== STATS SECTION ===== */
.seo-stats {
    background: 
        radial-gradient(ellipse 100% 80% at 50% 100%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 20% 20%, rgba(255, 140, 0, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, rgba(255, 107, 0, 0.05) 0%, transparent 100%);
    padding: 80px 0;
    position: relative;
}

.seo-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), rgba(255, 140, 0, 0.2), transparent);
}

.seo-stats::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
}

.seo-stats__grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.seo-stats__item {
    text-align: center;
}

.seo-stats__number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.seo-stats__label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

@media (max-width: 768px) {
    .seo-stats__grid {
        gap: 40px;
    }
    
    .seo-stats__number {
        font-size: 2.5rem;
    }
}

/* ===== BULK/KILO SECTION ===== */
.seo-bulk-section {
    background: 
        radial-gradient(ellipse 80% 60% at 30% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 70% 80%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 107, 0, 0.08) 0%, rgba(139, 69, 19, 0.05) 100%);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    margin-top: 60px;
    border: 1px solid rgba(255, 107, 53, 0.15);
    position: relative;
    overflow: hidden;
}

.seo-bulk-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.5), rgba(255, 140, 0, 0.3), transparent);
}

.seo-bulk-section__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.seo-bulk-section__text {
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.seo-bulk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.seo-bulk-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 25px 20px;
    transition: transform 0.3s ease;
}

.seo-bulk-item:hover {
    transform: translateY(-3px);
}

.seo-bulk-item__image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 12px;
    border: 2px solid rgba(255, 107, 0, 0.3);
}

.seo-bulk-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seo-bulk-item__name {
    font-weight: 600;
    margin-bottom: 8px;
}

.seo-bulk-item__price {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 700;
}

/* ===== CTA SECTION ===== */
.seo-cta {
    background: 
        radial-gradient(ellipse 100% 100% at 50% 0%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 20% 100%, rgba(255, 140, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(139, 69, 19, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, rgba(255, 107, 0, 0.08) 0%, rgba(255, 107, 0, 0.04) 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.seo-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(255, 107, 53, 0.4), rgba(255, 140, 0, 0.3), transparent 90%);
}

.seo-cta__title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.seo-cta__text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== CONTENT SECTION ===== */
.seo-content {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 40px 0 20px;
}

.seo-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.seo-content ul {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 20px;
}

.seo-content li {
    margin-bottom: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .seo-hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .seo-hero__content {
        max-width: 100%;
    }
    
    .seo-hero__buttons {
        justify-content: center;
    }
    
    .seo-hero__stats {
        justify-content: center;
    }
    
    .seo-hero__slider {
        height: 350px;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .seo-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .seo-hero__slider {
        height: 280px;
    }
    
    .seo-hero__stats {
        gap: 30px;
    }
    
    .seo-section {
        padding: 60px 0;
    }
    
    .seo-bulk-section {
        padding: 35px 25px;
    }
    
    .seo-products-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SEO Content Section - Two Column Layout
   ============================================ */

.seo-content {
    padding: 80px 0;
}

.seo-content__grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: start;
}

.seo-content__main {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
}

.seo-content__main h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.seo-content__main h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 2px;
    margin-top: 15px;
}

.seo-content__main h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin: 35px 0 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.seo-content__main h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--primary);
    border-radius: 2px;
}

.seo-content__main p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.seo-content__main ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.seo-content__main ul li {
    position: relative;
    padding: 12px 0 12px 35px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.seo-content__main ul li:last-child {
    border-bottom: none;
}

.seo-content__main ul li::before {
    content: '';
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.seo-content__main ul li:hover {
    padding-left: 40px;
    color: white;
}

.seo-content__main ul li strong {
    color: var(--primary);
    font-weight: 600;
}

/* Sidebar Styles */
.seo-content__sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.seo-content__cta {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15), rgba(255, 107, 0, 0.05));
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
}

.seo-content__cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.seo-content__cta p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.seo-content__cta .btn {
    width: 100%;
    margin-bottom: 12px;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 600;
}

.seo-content__cta .btn:last-child {
    margin-bottom: 0;
}

.seo-content__hours {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px;
}

.seo-content__hours h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.seo-content__hours h4 i {
    color: var(--primary);
}

.seo-content__hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seo-content__hours ul li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.95rem;
}

.seo-content__hours ul li:last-child {
    border-bottom: none;
}

.seo-content__hours ul li span:first-child {
    color: rgba(255, 255, 255, 0.7);
}

.seo-content__hours ul li span:last-child {
    color: white;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .seo-content__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .seo-content__sidebar {
        position: static;
    }

    .seo-content__main {
        padding: 30px;
    }

    .seo-content__main h2 {
        font-size: 1.6rem;
    }

    .seo-content__main h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .seo-content {
        padding: 50px 0;
    }

    .seo-content__main {
        padding: 25px 20px;
    }

    .seo-content__main h2 {
        font-size: 1.4rem;
    }

    .seo-content__cta {
        padding: 25px 20px;
    }
}
