/*---------------------
  SEO CHECKER PAGE BANNER STYLES
  Used in: seo-checker/seo-checker.blade.php
-----------------------*/

/* Modern SEO checker banner section with gradient background */
.modern-seo-banner-section {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(235, 43, 99, 0.9)), url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* Banner background decorative elements */
.seo-banner-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

/* Banner container positioning */
.seo-banner-container {
    position: relative;
    z-index: 2;
}

/* SEO banner content wrapper */
.seo-banner-content-modern {
    color: white;
    text-align: center;
    padding: 60px 0;
}

/* SEO badge styling */
.seo-badge {
    margin-bottom: 24px;
}

.seo-badge span {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* SEO main heading with gradient text */
.seo-main-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* SEO description text */
.seo-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* SEO form wrapper with glass effect */
.seo-form-warp {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* SEO search form layout */
.seo-search-form {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

/* SEO search input field */
.seo-search-input {
    flex: 1;
    min-width: 300px;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: #1e293b;
    outline: none;
}

/* SEO search button */
.seo-search-btn {
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    color: #1e293b;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* SEO search button hover effect */
.seo-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* SEO features grid layout */
.seo-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    width: 100%;
    justify-content: center;
}

/* SEO feature card styling */
.seo-feature-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 1 200px;
    min-width: 200px;
    max-width: 300px;
}

/* SEO feature card hover effect */
.seo-feature-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* SEO feature title */
.seo-feature-card .feature-title {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

/* SEO feature description */
.seo-feature-card .feature-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* SEO additional info */
.seo-additional-info {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 16px;
}

.seo-additional-info a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.seo-additional-info a:hover {
    color: #f8fafc;
    text-decoration: none;
}

/* RESPONSIVE DESIGN FOR SEO CHECKER BANNER */

/* Tablet and small desktop (768px and below) */
@media (max-width: 768px) {
    .modern-seo-banner-section {
        min-height: 70vh !important;
        background-attachment: scroll !important;
        padding-top: 120px !important;
        padding-bottom: 40px !important;
        margin-top: 0 !important;
    }
    
    .seo-banner-content-modern {
        padding: 40px 0 !important;
    }
    
    .seo-main-heading {
        font-size: 2.5rem !important;
        margin-bottom: 20px !important;
    }
    
    .seo-description {
        font-size: 1.1rem !important;
        margin-bottom: 30px !important;
    }
    
    .seo-form-warp {
        padding: 20px !important;
    }
    
    .seo-search-form {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    
    .seo-search-input {
        min-width: unset !important;
        margin-bottom: 12px !important;
        padding: 20px 24px !important;
        font-size: 18px !important;
    }
    
    .seo-search-btn {
        width: 100% !important;
        padding: 20px 32px !important;
        font-size: 18px !important;
    }
    
    .seo-features-grid {
        gap: 10px !important;
    }
    
    .seo-feature-card {
        flex: 1 1 180px !important;
        min-width: 180px !important;
        max-width: 250px !important;
        min-height: 100px !important;
        padding: 16px !important;
    }
}

/* Mobile devices (576px and below) */
@media (max-width: 576px) {
    .modern-seo-banner-section {
        min-height: 60vh !important;
        padding-top: 100px !important;
        padding-bottom: 30px !important;
        margin-top: 0 !important;
    }
    
    .seo-banner-content-modern {
        padding: 30px 0 !important;
    }
    
    .seo-main-heading {
        font-size: 2rem !important;
    }
    
    .seo-form-warp {
        padding: 15px !important;
    }
    
    .seo-features-grid {
        gap: 8px !important;
    }
    
    .seo-feature-card {
        flex: 1 1 150px !important;
        min-width: 150px !important;
        max-width: 200px !important;
        min-height: 90px !important;
        padding: 12px !important;
    }
    
    .seo-feature-card .feature-title {
        font-size: 14px !important;
    }
    
    .seo-feature-card .feature-description {
        font-size: 12px !important;
    }
    
    .seo-search-input {
        padding: 18px 20px !important;
        font-size: 16px !important;
    }
    
    .seo-search-btn {
        padding: 18px 24px !important;
        font-size: 16px !important;
    }
}

/* Small mobile devices (480px and below) */
@media (max-width: 480px) {
    .modern-seo-banner-section {
        min-height: 55vh !important;
        padding-top: 90px !important;
        padding-bottom: 20px !important;
        margin-top: 0 !important;
    }
    
    .seo-banner-content-modern {
        padding: 20px 0 !important;
    }
    
    .seo-main-heading {
        font-size: 1.75rem !important;
    }
    
    .seo-form-warp {
        padding: 12px !important;
    }
    
    .seo-features-grid {
        gap: 6px !important;
    }
    
    .seo-feature-card {
        flex: 1 1 120px !important;
        min-width: 120px !important;
        max-width: 180px !important;
        min-height: 80px !important;
        padding: 10px !important;
    }
    
    .seo-search-input {
        padding: 16px 18px !important;
        font-size: 15px !important;
    }
    
    .seo-search-btn {
        padding: 16px 20px !important;
        font-size: 15px !important;
    }
}

/* Extra small devices (360px and below) */
@media (max-width: 360px) {
    .seo-banner-content-modern {
        padding: 15px 0 !important;
    }
    
    .seo-main-heading {
        font-size: 1.5rem !important;
    }
    
    .seo-form-warp {
        padding: 10px !important;
    }
}

/* END OF SEO CHECKER BANNER STYLES */