/**
 * Home Page - Premium Luxury Design
 * تصميم فاخر واحترافي للصفحة الرئيسية
 */

/* ============================================
   HERO SECTION - Modern Animated Design
   ============================================ */

.home-hero.modern-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-bottom: 0;
    background: var(--gradient-secondary, linear-gradient(135deg, #1E3A5F 0%, #152a45 50%, #0d1a2b 100%));
    background-size: cover;
    background-position: center;
}

/* Animated Background Gradient */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(193, 122, 74, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(193, 122, 74, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(30, 58, 95, 0.3) 0%, transparent 70%);
    animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Floating Shapes */
.hero-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(193, 122, 74, 0.1), rgba(193, 122, 74, 0.05));
    border: 1px solid rgba(193, 122, 74, 0.15);
    backdrop-filter: blur(2px);
}

.floating-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -100px;
    animation: float1 15s ease-in-out infinite;
}

.floating-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -50px;
    animation: float2 12s ease-in-out infinite;
}

.floating-shape.shape-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 20%;
    animation: float3 18s ease-in-out infinite;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.floating-shape.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    right: 10%;
    animation: float1 20s ease-in-out infinite reverse;
}

.floating-shape.shape-5 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 15%;
    animation: float2 14s ease-in-out infinite;
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
}

@keyframes float1 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    33% {
        transform: translateY(-20px) translateX(15px);
    }

    66% {
        transform: translateY(10px) translateX(-10px);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }
}

/* Hero Overlay */
.home-hero.modern-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            rgba(13, 26, 43, 0.3) 0%,
            rgba(13, 26, 43, 0.5) 50%,
            rgba(13, 26, 43, 0.7) 100%);
    z-index: 1;
}

.home-hero.modern-hero .hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 950px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(193, 122, 74, 0.2), rgba(193, 122, 74, 0.1));
    border: 1px solid rgba(193, 122, 74, 0.4);
    backdrop-filter: blur(10px);
    padding: 12px 28px;
    border-radius: 50px;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge i {
    color: var(--primary-color);
    font-size: 18px;
}

.hero-badge span {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 15px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Title */
.home-hero.modern-hero .hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--white);
    margin: 0 0 25px;
    line-height: 1.2;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Hero Subtitle */
.home-hero.modern-hero .hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 45px;
    line-height: 1.8;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Search Form - Glass Morphism */
.home-hero.modern-hero .hero-search-form {
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.search-input-group.glass-effect {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 60px;
    padding: 8px 10px 8px 25px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-input-group.glass-effect:focus-within {
    border-color: rgba(193, 122, 74, 0.6);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 0 3px rgba(193, 122, 74, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.15);
}

.search-input-group.glass-effect>i {
    color: var(--primary-color);
    font-size: 22px;
    margin-left: 15px;
}

.home-hero.modern-hero .search-field {
    flex: 1;
    border: none;
    padding: 18px 15px;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    background: transparent;
    color: var(--white);
}

.home-hero.modern-hero .search-field::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.home-hero.modern-hero .search-submit {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(193, 122, 74, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-hero.modern-hero .search-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(193, 122, 74, 0.4);
}

/* Quick Filters - Enhanced */
.home-hero.modern-hero .hero-quick-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.home-hero.modern-hero .quick-filter-btn {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
}

.home-hero.modern-hero .quick-filter-btn:hover {
    background: rgba(193, 122, 74, 0.2);
    border-color: rgba(193, 122, 74, 0.5);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(193, 122, 74, 0.15);
}

.home-hero.modern-hero .quick-filter-btn i {
    color: var(--primary-color);
    font-size: 14px;
}

/* Hero Stats Row */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-item .stat-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.hero-stat-item .stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {

    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(10px);
    }
}

.scroll-indicator span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
}

/* ============================================
   SECTION STYLING
   ============================================ */

.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    display: block;
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin: 0 0 18px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto;
}

.section-header.white .section-title,
.section-header.white .section-subtitle {
    color: var(--white);
}

.section-header.white::after {
    background: rgba(255, 255, 255, 0.3);
}

/* ============================================
   PROJECT TABS
   ============================================ */

.projects-tabs {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    background: #f8f9fa;
    color: var(--secondary-color);
    border: 2px solid transparent;
    padding: 16px 38px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.tab-btn:hover {
    background: #fff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(193, 122, 74, 0.25);
}

.tab-btn i {
    font-size: 20px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.no-projects {
    text-align: center;
    padding: 80px 20px;
    color: #888;
    font-size: 1.15rem;
}

.section-footer {
    text-align: center;
    margin-top: 60px;
}

/* ============================================
   STATS SECTION - Premium
   ============================================ */

.bg-gradient {
    background: linear-gradient(135deg, #1a2332 0%, #2d3e50 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.bg-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".1" fill="%23ffffff"/></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.05;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(193, 122, 74, 0.2), rgba(193, 122, 74, 0.1));
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 2px solid rgba(193, 122, 74, 0.3);
}

.stat-icon i {
    font-size: 40px;
    color: var(--primary-color);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1;
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.8));
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.developer-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.developer-logo-item span {
    font-weight: 800;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* ============================================
   BLOG SECTION
   ============================================ */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.blog-card-image {
    height: 260px;
    overflow: hidden;
    position: relative;
}

.blog-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
    opacity: 0;
    transition: opacity 0.3s;
}

.blog-card:hover .blog-card-image::after {
    opacity: 1;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 32px;
}

.blog-meta {
    margin-bottom: 15px;
}

.blog-date {
    color: #888;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.blog-date i {
    color: var(--primary-color);
}

.blog-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 16px;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.read-more-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    font-size: 15px;
}

.read-more-link:hover {
    gap: 15px;
    color: var(--primary-darker);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-lg {
    padding: 18px 50px;
    font-size: 18px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    box-shadow: 0 10px 30px rgba(193, 122, 74, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(193, 122, 74, 0.4);
    color: var(--white);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(193, 122, 74, 0.3);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-4px);
    color: var(--white);
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.final-cta-section {
    background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(193, 122, 74, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.final-cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(193, 122, 74, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--white);
    margin: 0 0 25px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 50px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .features-grid-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .features-image {
        order: -1;
    }
}

@media (max-width: 768px) {

    /* Modern Hero - Mobile */
    .home-hero.modern-hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .home-hero.modern-hero .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .home-hero.modern-hero .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 35px;
    }

    .hero-badge {
        padding: 10px 20px;
        font-size: 13px;
    }

    .hero-badge i {
        font-size: 16px;
    }

    /* Hide some floating shapes on mobile for performance */
    .floating-shape.shape-3,
    .floating-shape.shape-4,
    .floating-shape.shape-5 {
        display: none;
    }

    .floating-shape.shape-1 {
        width: 200px;
        height: 200px;
    }

    .floating-shape.shape-2 {
        width: 150px;
        height: 150px;
    }

    /* Search Form - Mobile */
    .search-input-group.glass-effect {
        flex-direction: column;
        border-radius: 20px;
        padding: 15px;
        gap: 12px;
    }

    .search-input-group.glass-effect>i {
        display: none;
    }

    .home-hero.modern-hero .search-field {
        width: 100%;
        padding: 14px;
        text-align: center;
    }

    .home-hero.modern-hero .search-submit {
        width: 100%;
        justify-content: center;
        padding: 14px 25px;
    }

    /* Quick Filters - Mobile */
    .home-hero.modern-hero .hero-quick-filters {
        gap: 8px;
        margin-bottom: 35px;
    }

    .home-hero.modern-hero .quick-filter-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    /* Hero Stats - Mobile */
    .hero-stats {
        gap: 20px;
    }

    .hero-stat-item .stat-value {
        font-size: 1.6rem;
    }

    .hero-stat-item .stat-label {
        font-size: 12px;
    }

    .hero-stat-divider {
        height: 30px;
    }

    /* Scroll Indicator - Hide on mobile */
    .scroll-indicator {
        display: none;
    }

    /* General Sections */
    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .projects-tabs {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .developers-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .quick-filter-btn {
        font-size: 14px;
        padding: 12px 20px;
    }

    .blog-card-title {
        font-size: 1.3rem;
    }

    .final-cta-section {
        padding: 60px 0;
    }
}