/**
 * SEOGuruji Homepage Sections - Technumb Style
 * Modern, Engaging, Animated Design with Plus Jakarta Sans
 */

/* Plus Jakarta Sans Font */
* {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Container */
.seoguruji-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HERO SECTION - Left Text + Right Image
   ============================================ */
.seoguruji-hero-section-new {
    padding: 100px 0 80px;
    background: #ffffff;
}

.seoguruji-hero-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.seoguruji-hero-content-new {
    max-width: 100%;
}

.seoguruji-hero-tagline-new {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #667eea;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 30px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    position: relative;
}

.seoguruji-hero-title-new {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #1a1a1a 0%, #667eea 50%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.seoguruji-hero-subtitle-new {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #555555;
    font-weight: 400;
}

.seoguruji-hero-buttons-new {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.seoguruji-hero-image-new {
    position: relative;
}

.seoguruji-hero-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.seoguruji-btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.seoguruji-btn-primary-custom {
    background: #ffffff;
    color: #667eea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.seoguruji-btn-primary-custom:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.seoguruji-btn-secondary-custom {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.seoguruji-btn-secondary-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.seoguruji-btn-primary-new {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    border: none;
}

.seoguruji-btn-primary-new:hover {
    background: linear-gradient(135deg, #5568d3 0%, #6a3d8f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: #ffffff;
}

.seoguruji-btn-secondary-new {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.seoguruji-btn-secondary-new:hover {
    background: #667eea;
    color: #ffffff;
    border-color: #667eea;
    transform: translateY(-2px);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.seoguruji-features-section {
    padding: 60px 0;
    background: #f8f9fa;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.seoguruji-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.seoguruji-feature-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.seoguruji-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.seoguruji-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
}

.seoguruji-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.seoguruji-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.seoguruji-section-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.seoguruji-section-subtitle {
    font-size: 18px;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Remove extra spacing between sections */
.seoguruji-hero-section-custom,
.seoguruji-features-section,
.seoguruji-about-section,
.seoguruji-why-choose-section,
.seoguruji-services-section,
.seoguruji-expertise-section,
.seoguruji-products-section,
.seoguruji-process-section,
.seoguruji-pricing-section,
.seoguruji-testimonials-section,
.seoguruji-cta-section,
.seoguruji-contact-section {
    margin: 0;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.seoguruji-about-section {
    padding: 80px 0;
    background: #ffffff;
}

.seoguruji-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.seoguruji-about-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.seoguruji-about-desc {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 30px;
}

.seoguruji-about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seoguruji-about-list li {
    padding: 12px 0;
    font-size: 16px;
    color: #555555;
    display: flex;
    align-items: center;
    gap: 12px;
}

.seoguruji-about-list li i {
    color: #667eea;
    font-size: 20px;
}

.seoguruji-about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.seoguruji-about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.seoguruji-services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.seoguruji-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.seoguruji-service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.seoguruji-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.seoguruji-service-card {
    position: relative;
}

.seoguruji-service-popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.seoguruji-service-card.seoguruji-service-popular {
    border: 2px solid #f59e0b;
    background: linear-gradient(135deg, #ffffff 0%, #fffbeb 100%);
}

.seoguruji-service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.seoguruji-service-card.seoguruji-service-popular .seoguruji-service-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.seoguruji-service-card:hover .seoguruji-service-icon {
    transform: scale(1.1) rotate(5deg);
}

.seoguruji-service-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.seoguruji-service-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 15px;
    flex-grow: 1;
}

.seoguruji-service-price {
    font-size: 18px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
    padding: 8px 0;
}

.seoguruji-service-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #667eea;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.seoguruji-service-btn:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

/* ============================================
   EXPERTISE SECTION
   ============================================ */
.seoguruji-expertise-section {
    padding: 80px 0;
    background: #ffffff;
}

.seoguruji-expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.seoguruji-expertise-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.seoguruji-expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.seoguruji-expertise-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.seoguruji-expertise-card:hover .seoguruji-expertise-icon {
    transform: scale(1.1) rotate(5deg);
}

.seoguruji-expertise-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.seoguruji-expertise-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 20px;
}

.seoguruji-expertise-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.seoguruji-tech-tag {
    padding: 6px 14px;
    background: #ffffff;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #667eea;
    border: 1px solid #e0e0e0;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.seoguruji-products-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.seoguruji-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.seoguruji-product-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.seoguruji-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.seoguruji-product-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.seoguruji-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seoguruji-product-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #ffffff;
}

.seoguruji-product-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.seoguruji-product-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 15px;
}

.seoguruji-product-price {
    font-size: 18px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
}

.seoguruji-product-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #667eea;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.seoguruji-product-btn:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.seoguruji-process-section {
    padding: 80px 0;
    background: #ffffff;
}

.seoguruji-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.seoguruji-process-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.seoguruji-process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.seoguruji-process-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
}

.seoguruji-process-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.seoguruji-process-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.seoguruji-pricing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.seoguruji-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.seoguruji-pricing-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.seoguruji-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.seoguruji-pricing-card.seoguruji-popular {
    border: 2px solid #667eea;
    transform: scale(1.05);
}

.seoguruji-popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #667eea;
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.seoguruji-pricing-name {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.seoguruji-pricing-desc {
    font-size: 14px;
    color: #666666;
    margin-bottom: 25px;
}

.seoguruji-pricing-price {
    margin-bottom: 30px;
}

.seoguruji-price-amount {
    font-size: 42px;
    font-weight: 800;
    color: #667eea;
}

.seoguruji-price-period {
    font-size: 16px;
    color: #666666;
    margin-left: 5px;
}

.seoguruji-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.seoguruji-pricing-features li {
    padding: 12px 0;
    font-size: 15px;
    color: #555555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.seoguruji-pricing-features li i {
    color: #667eea;
    font-size: 16px;
}

.seoguruji-pricing-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: #667eea;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.seoguruji-pricing-btn:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

/* ============================================
   PRICING SECTION - Hostinger Style with Original/Current Price
   ============================================ */
.seoguruji-pricing-grid-hostinger {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.seoguruji-pricing-card-hostinger {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    border: 2px solid transparent;
}

.seoguruji-pricing-card-hostinger:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.seoguruji-pricing-card-hostinger.seoguruji-popular-hostinger {
    border-color: #667eea;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.seoguruji-pricing-card-hostinger.seoguruji-pricing-reverse-hostinger {
    flex-direction: row-reverse;
}

.seoguruji-popular-badge-hostinger {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.seoguruji-pricing-card-hostinger.seoguruji-pricing-reverse-hostinger .seoguruji-popular-badge-hostinger {
    right: auto;
    left: 20px;
}

.seoguruji-discount-badge-hostinger {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.seoguruji-pricing-card-hostinger.seoguruji-pricing-reverse-hostinger .seoguruji-discount-badge-hostinger {
    left: auto;
    right: 20px;
}

.seoguruji-pricing-card-content-hostinger {
    padding: 50px;
    flex: 1;
    position: relative;
    z-index: 2;
}

.seoguruji-pricing-icon-hostinger {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.seoguruji-pricing-card-hostinger:hover .seoguruji-pricing-icon-hostinger {
    transform: scale(1.1) rotate(5deg);
}

.seoguruji-pricing-name-hostinger {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.seoguruji-pricing-desc-hostinger {
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 25px;
}

.seoguruji-pricing-price-hostinger {
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    gap: 15px;
    flex-wrap: wrap;
}

.seoguruji-price-original-hostinger {
    font-size: 24px;
    font-weight: 600;
    color: #999999;
    text-decoration: line-through;
}

.seoguruji-price-current-hostinger {
    font-size: 48px;
    font-weight: 800;
    color: #667eea;
    display: block;
    line-height: 1;
}

.seoguruji-pricing-features-hostinger {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.seoguruji-pricing-features-hostinger li {
    padding: 10px 0;
    font-size: 15px;
    color: #555555;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.seoguruji-pricing-features-hostinger li i {
    color: #667eea;
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.seoguruji-pricing-btn-hostinger {
    display: inline-block;
    padding: 16px 35px;
    background: #667eea;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.seoguruji-pricing-btn-hostinger:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.seoguruji-popular-hostinger .seoguruji-pricing-btn-hostinger {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.seoguruji-popular-hostinger .seoguruji-pricing-btn-hostinger:hover {
    background: linear-gradient(135deg, #5568d3 0%, #6a3d8f 100%);
}

/* Pricing Card Visual Element */
.seoguruji-pricing-card-hostinger::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 1;
    transition: all 0.4s ease;
}

.seoguruji-pricing-card-hostinger.seoguruji-pricing-reverse-hostinger::before {
    left: -100px;
    right: auto;
}

.seoguruji-pricing-card-hostinger:hover::before {
    transform: scale(1.2);
}

/* ============================================
   PRICING SECTION - NEW Left to Right Swap Design (OLD)
   ============================================ */
.seoguruji-pricing-grid-new {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.seoguruji-pricing-card-new {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.seoguruji-pricing-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.seoguruji-pricing-card-new.seoguruji-popular-new {
    border: 3px solid #667eea;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.seoguruji-pricing-card-new.seoguruji-pricing-reverse {
    flex-direction: row-reverse;
}

.seoguruji-popular-badge-new {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #667eea;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

.seoguruji-pricing-card-content {
    padding: 50px;
    flex: 1;
    position: relative;
    z-index: 2;
}

.seoguruji-pricing-icon-new {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.seoguruji-pricing-card-new:hover .seoguruji-pricing-icon-new {
    transform: scale(1.1) rotate(5deg);
}

.seoguruji-pricing-name-new {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.seoguruji-pricing-desc-new {
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 25px;
}

.seoguruji-pricing-price-new {
    margin-bottom: 30px;
}

.seoguruji-price-amount-new {
    font-size: 48px;
    font-weight: 800;
    color: #667eea;
    display: block;
}

.seoguruji-pricing-features-new {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.seoguruji-pricing-features-new li {
    padding: 10px 0;
    font-size: 15px;
    color: #555555;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.seoguruji-pricing-features-new li i {
    color: #667eea;
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.seoguruji-pricing-btn-new {
    display: inline-block;
    padding: 16px 35px;
    background: #667eea;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.seoguruji-pricing-btn-new:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Pricing Card Visual Element */
.seoguruji-pricing-card-new::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 1;
    transition: all 0.4s ease;
}

.seoguruji-pricing-card-new.seoguruji-pricing-reverse::before {
    left: -100px;
    right: auto;
}

.seoguruji-pricing-card-new:hover::before {
    transform: scale(1.2);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.seoguruji-testimonials-section {
    padding: 80px 0;
    background: #ffffff;
}

.seoguruji-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.seoguruji-testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.seoguruji-testimonial-rating {
    color: #ffc107;
    font-size: 16px;
    margin-bottom: 15px;
}

.seoguruji-testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 20px;
    font-style: italic;
}

.seoguruji-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.seoguruji-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.seoguruji-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seoguruji-testimonial-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 5px 0;
}

.seoguruji-testimonial-role {
    font-size: 13px;
    color: #666666;
    text-transform: uppercase;
    margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.seoguruji-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #ffffff;
}

.seoguruji-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.seoguruji-cta-title {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.seoguruji-cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
}

.seoguruji-btn-cta {
    background: #ffffff;
    color: #667eea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.seoguruji-btn-cta:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.seoguruji-why-choose-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.seoguruji-why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.seoguruji-why-choose-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.seoguruji-why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.seoguruji-why-choose-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.seoguruji-why-choose-card:hover .seoguruji-why-choose-icon {
    transform: scale(1.1) rotate(5deg);
}

.seoguruji-why-choose-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.seoguruji-why-choose-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
    margin: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.seoguruji-contact-section {
    padding: 80px 0;
    background: #ffffff;
}

.seoguruji-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.seoguruji-contact-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.seoguruji-contact-subtitle {
    font-size: 18px;
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.seoguruji-contact-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 40px;
}

.seoguruji-contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.seoguruji-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.seoguruji-contact-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    flex-shrink: 0;
}

.seoguruji-contact-item strong {
    display: block;
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 5px;
    font-weight: 700;
}

.seoguruji-contact-item p {
    font-size: 15px;
    color: #666666;
    margin: 0;
}

.seoguruji-contact-form-wrapper {
    position: sticky;
    top: 20px;
}

.seoguruji-contact-form-box {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.seoguruji-contact-form-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.seoguruji-why-choose-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.seoguruji-why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.seoguruji-why-choose-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.seoguruji-why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.seoguruji-why-choose-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.seoguruji-why-choose-card:hover .seoguruji-why-choose-icon {
    transform: scale(1.1) rotate(5deg);
}

.seoguruji-why-choose-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.seoguruji-why-choose-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
    margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .seoguruji-hero-title-custom {
        font-size: 42px;
    }
    
    .seoguruji-about-grid,
    .seoguruji-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .seoguruji-contact-form-wrapper {
        position: static;
    }
}

@media (max-width: 768px) {
    .seoguruji-hero-section-custom {
        padding: 80px 0 60px;
    }
    
    .seoguruji-hero-title-custom {
        font-size: 32px;
    }
    
    .seoguruji-hero-subtitle-custom {
        font-size: 18px;
    }
    
    .seoguruji-hero-buttons-custom {
        flex-direction: column;
    }
    
    .seoguruji-btn {
        width: 100%;
        text-align: center;
    }
    
    .seoguruji-section-title {
        font-size: 32px;
    }
    
    .seoguruji-pricing-card.seoguruji-popular {
        transform: scale(1);
    }
    
    .seoguruji-why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .seoguruji-pricing-card-hostinger {
        flex-direction: column !important;
    }
    
    .seoguruji-pricing-card-content-hostinger {
        padding: 40px 30px;
    }
    
    .seoguruji-pricing-card-hostinger::before {
        display: none;
    }
    
    .seoguruji-discount-badge-hostinger,
    .seoguruji-popular-badge-hostinger {
        position: static;
        display: inline-block;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .seoguruji-hero-title-custom {
        font-size: 28px;
    }
    
    .seoguruji-section-title {
        font-size: 28px;
    }
}
