@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-light: #f8fafc;
    --bg-lighter: #ffffff;
    --primary: #4f46e5;
    --secondary: #9333ea;
    --accent: #0284c7;
    --text-main: #0f172a;
    --text-dim: #475569;
    --glass: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-hover: rgba(255, 255, 255, 1);
    --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .outfit {
    font-family: 'Outfit', sans-serif;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-lighter);
}
::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Glassmorphism Utility */
.glass {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo {
    height: 40px;
    width: auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.1), transparent 40%),
                radial-gradient(circle at bottom left, rgba(147, 51, 234, 0.05), transparent 40%);
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 5;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 30px;
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.4rem;
    color: var(--text-dim);
    margin-bottom: 50px;
    max-width: 900px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin-top: 20px;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    z-index: -1;
}

.btn {
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(99, 102, 241, 0.6);
}

.btn-secondary {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--text-main);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.btn-secondary:hover {
    background: var(--glass-hover);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.animate-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto;
}

/* Grids */
.services-grid, .blog-grid-premium, .process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Horizontal Slider Setup */
.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0 40px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}
.testimonial-slider::-webkit-scrollbar { height: 8px; }
.testimonial-slider::-webkit-scrollbar-track { background: transparent; }
.testimonial-slider::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

.service-card, .blog-card-premium {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s;
}

.service-card:hover, .blog-card-premium:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
}

/* Premium Icon Box */
.premium-icon-box {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 30px;
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.3);
    transition: all 0.4s ease;
}

.premium-icon-box.huge {
    width: 250px;
    height: 250px;
    font-size: 7rem;
    border-radius: 60px;
}

.premium-icon-box.medium {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    border-radius: 18px;
}

.premium-icon-box.small {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    border-radius: 12px;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    transition: all 0.3s;
}

/* Section Spacing Utility */
.section-padding {
    padding: 120px 0;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 300px;
}

/* Glow Cards */
.glow-card {
    position: relative;
    overflow: hidden;
}

.glow-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    border-radius: inherit;
    background: linear-gradient(45deg, var(--primary), var(--secondary)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: 0.3s;
}

.glow-card:hover::after {
    opacity: 1;
}

/* Contact Page Layout */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 15px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    color: var(--text-main);
    font-family: inherit;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

/* Mobile App Bottom Nav (Hidden on desktop) */
.bottom-nav {
    display: none !important;
}

/* RESPONSIVE DESIGN (APP-LIKE) */

/* RESPONSIVE DESIGN (SENIOR-LEVEL SYSTEM) */

/* Tablet View (1024px) */
@media (max-width: 1024px) {
    .container { padding: 0 40px; }
    
    .hero-content-wrapper { 
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero h1 { font-size: clamp(3rem, 7vw, 4.5rem); }
    
    .hero-btns { justify-content: center !important; }
    
    .services-grid, .blog-grid-premium, .stats-grid, .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .section-header h2 { font-size: 2.8rem; }
    
    .section-padding { padding: 80px 0; }
    
    .btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    .service-detail-row {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 40px;
    }
}

/* Mobile View (768px and below) */
@media (max-width: 768px) {
    body { padding-bottom: 80px; } /* Space for bottom nav */

    .container { padding: 0 25px; }

    .nav-logo {
        width: 40px;
        height: 40px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-links { display: none; }
    
    .hero {
        padding: 120px 0 60px;
        text-align: center;
    }

    .hero-content-wrapper {
        flex-direction: column-reverse; /* Put illustration above text for better balance */
        display: flex;
        gap: 40px;
    }

    .hero h1 { 
        font-size: clamp(2.2rem, 9vw, 2.8rem) !important;
        line-height: 1.2;
    }
    
    .hero p { 
        font-size: 1rem !important;
        margin: 0 auto 30px;
        max-width: 100%;
    }
    
    .hero-btns { 
        flex-direction: column;
        width: 100%;
        gap: 15px !important;
    }

    .hero-glow {
        width: 250px;
        height: 250px;
        filter: blur(100px);
    }

    .btn {
        width: 100%; /* Full width buttons on mobile feel more "premium" and usable */
        text-align: center;
        padding: 15px 20px;
        font-size: 1rem;
    }

    .premium-icon-box {
        width: 100px;
        height: 100px;
        font-size: 3rem;
        margin: 0 auto 20px;
    }

    .premium-icon-box.huge {
        width: 140px;
        height: 140px;
        font-size: 4.5rem;
    }

    .services-grid, .blog-grid-premium, .contact-wrapper, .process-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 10px;
    }
    
    .stats-grid .stat-number {
        font-size: clamp(1.2rem, 5vw, 2.5rem);
    }
    
    .stats-grid p {
        font-size: clamp(0.55rem, 2.2vw, 0.9rem);
        line-height: 1.2;
    }

    .section-header h2 { 
        font-size: clamp(1.8rem, 7vw, 2.2rem) !important; 
    }

    .section-padding {
        padding: 60px 0;
    }

    .service-detail-row {
        padding: 40px 0;
        margin-bottom: 40px;
    }

    .service-feature-list {
        grid-template-columns: 1fr;
        text-align: left;
    }

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

    .glow-card {
        padding: 25px !important;
        border-radius: 24px !important;
    }

    .blog-featured-card {
        margin-bottom: 40px;
        border-radius: 24px;
    }

    .featured-content {
        padding: 30px 20px !important;
        text-align: center;
    }

    .featured-content h2 {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
    }

    .featured-content p {
        font-size: 0.95rem !important;
        margin-bottom: 20px !important;
    }

    .featured-content div {
        justify-content: center !important;
    }

    /* Bottom Navigation Bar (App-like) */
    .bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex !important;
        justify-content: space-around;
        padding: 12px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        z-index: 2000;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
    }

    .bottom-nav-item {
        color: var(--text-dim);
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 0.65rem;
        gap: 4px;
    }

    .bottom-nav-item i { font-size: 1.3rem; }
    .bottom-nav-item.active { color: var(--primary); }
}



/* Working Process Premium Styles */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    padding: 50px 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    position: relative;
    transition: all 0.4s ease;
}

.process-step:hover {
    border-color: var(--primary);
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.05);
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    opacity: 0.1;
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--primary);
}

/* Testimonials Premium Styles */
.testimonial-card {
    padding: 30px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100%;
    width: 340px;
    max-width: 100%;
    flex: 0 0 auto;
    scroll-snap-align: center;
}

.testimonial-card p {
    flex-grow: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.testimonial-card:hover {
    border-color: var(--secondary);
    transform: scale(1.02);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.user-img {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
}


/* Service Details Premium Layout */
.service-detail-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.service-detail-row:nth-child(even) {
    direction: rtl;
}

.service-detail-row:nth-child(even) > * {
    direction: ltr;
}

.service-feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.service-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-dim);
}

.service-feature-list li i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Category Badge Premium */
.category-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}


/* Global Glow Utility */
.glow-text {
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

.glow-border {
    position: relative;
}

.glow-border::after {
    content: " \;
 position: absolute;
 inset: -1px;
 background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
 border-radius: inherit;
 z-index: -1;
 opacity: 0.3;
 filter: blur(10px);
}

/* Mobile Adjustments for Process Grid */
@media (max-width: 768px) {
 .process-grid {
 grid-template-columns: 1fr;
 gap: 20px;
 }
 
 .service-detail-row {
 grid-template-columns: 1fr !important;
 gap: 40px;
 text-align: center;
 }
 
 .service-detail-row:nth-child(even) {
 direction: ltr;
 }
}


/* Ultra Premium Blog List Styles */
.blog-hero {
    padding: 180px 0 80px;
    background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
    text-align: center;
}

.blog-featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    margin-bottom: 80px;
    border-radius: 40px;
    overflow: hidden;
    background: var(--glass);
    border: 1px solid var(--glass-border);
}

.blog-featured-card .blog-card-image {
    height: 100%;
}

.blog-featured-card .featured-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.blog-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card-premium {
    display: flex;
    flex-direction: column;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card-premium:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.blog-card-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card-premium:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-content h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 15px;
    color: var(--text-main);
}

.blog-card-content p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

@media (max-width: 1024px) {
    .blog-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-featured-card {
        grid-template-columns: 1fr;
    }
    .blog-featured-card .featured-content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .blog-grid-premium {
        grid-template-columns: 1fr;
    }
    .blog-card-image {
        height: 200px;
    }
}

/* ==========================================================================
   ADMIN PANEL STYLES
   ========================================================================== */

.admin-body {
    background: var(--bg-darker);
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(20px);
    border-right: 1px solid var(--glass-border);
    position: fixed;
    left: 0;
    top: 0;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.admin-main {
    margin-left: 280px;
    flex: 1;
    padding: 60px;
    width: calc(100% - 280px);
}

.admin-menu {
    list-style: none;
    margin-top: 50px;
}

.admin-menu li {
    margin-bottom: 10px;
}

.admin-menu a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: var(--text-dim);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.admin-menu a i {
    font-size: 1.1rem;
}

.admin-menu a:hover,
.admin-menu a.active {
    background: var(--glass);
    color: var(--primary);
    transform: translateX(5px);
}

.admin-card {
    padding: 40px;
    margin-bottom: 30px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.admin-table th {
    text-align: left;
    padding: 15px 20px;
    color: var(--text-dim);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--glass-border);
}

.admin-table td {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.admin-table tr:last-child td {
    border-bottom: none;
}

/* Stat Cards */
.stat-card .value {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 10px;
}

.stat-card h3 {
    font-size: 0.9rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Status Badges */
.status-badge {
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-new {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.status-contacted {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Action Buttons */
.action-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text-dim);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
}

.action-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.delete-btn:hover {
    background: #ef4444;
    border-color: #ef4444;
}

/* Editor Layout */
.wp-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

/* AI Generator Modal Specifics */
.ai-loader-container {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.ai-orb {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    filter: blur(20px);
    animation: pulseOrb 2s infinite alternate;
}

@keyframes pulseOrb {
    from { transform: scale(1); opacity: 0.5; }
    to { transform: scale(1.5); opacity: 0.8; }
}

.ai-loading-text {
    margin-top: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ai-progress-bar {
    width: 100%;
    height: 4px;
    background: var(--glass-border);
    border-radius: 2px;
    margin-top: 25px;
    overflow: hidden;
}

.ai-progress-fill {
    width: 40%;
    height: 100%;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    animation: progressFlow 3s infinite;
}

@keyframes progressFlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(250%); }
}

/* Responsive Admin */
@media (max-width: 1024px) {
    .admin-sidebar { width: 80px; padding: 30px 15px; }
    .admin-sidebar .logo, .admin-menu span { display: none; }
    .admin-main { margin-left: 80px; width: calc(100% - 280px); padding: 40px; }
    .wp-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .admin-sidebar { display: none; }
    .admin-main { margin-left: 0; width: 100%; padding: 20px; }
    .admin-card { padding: 20px; overflow-x: auto; }
    .admin-table { min-width: 600px; }
}

/* Testimonial Slider (Mobile & Tablet) */
@media (max-width: 1024px) {
    .testimonial-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 20px 0 40px;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
    }

    .testimonial-slider::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

    .testimonial-slider .testimonial-card {
        min-width: 82%; /* Shows a peek of the next card for better UX */
        scroll-snap-align: center;
        flex-shrink: 0;
        margin: 0 5px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
}

/* Blog Featured Card Base */
.blog-featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 80px;
    backdrop-filter: blur(20px);
}

.featured-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 1024px) {
    .blog-featured-card {
        grid-template-columns: 1fr;
    }
}
