/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (V3 - ROYAL BLUE BRANDING)
   ========================================================================== */
:root {
    /* Fonts */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Layout */
    --max-width: 1200px;
    --header-height: 80px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Theme Tokens (Default) */
.dark-theme {
    --bg-primary: #0a0e1a;
    --bg-secondary: #0f1526;
    --bg-glass: rgba(15, 21, 38, 0.7);
    --bg-glass-hover: rgba(22, 30, 54, 0.95);
    --border-glass: rgba(255, 255, 255, 0.06);
    --border-glass-hover: rgba(37, 99, 235, 0.4);
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --color-accent: #2563eb; /* Royal Blue */
    --color-accent-secondary: #60a5fa;
    --color-primary-grad: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #60a5fa 100%);
    --color-text-grad: linear-gradient(135deg, #f8fafc 0%, #60a5fa 100%);
    --color-card-shadow: rgba(0, 0, 0, 0.5);
    --color-glow: rgba(37, 99, 235, 0.2);
    
    --blog-marketing-bg: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(96, 165, 250, 0.2) 100%);
    --blog-fashion-bg: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(244, 63, 94, 0.2) 100%);
    --blog-lifestyle-bg: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%);
    --blog-health-bg: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.2) 100%);
}

/* Light Theme Tokens */
.light-theme {
    --bg-primary: #f8fafc;
    --bg-secondary: #f1f5f9;
    --bg-glass: rgba(255, 255, 255, 0.75);
    --bg-glass-hover: rgba(255, 255, 255, 0.95);
    --border-glass: rgba(15, 23, 42, 0.08);
    --border-glass-hover: rgba(37, 99, 235, 0.5);
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    
    --color-accent: #2563eb; /* Royal Blue */
    --color-accent-secondary: #1d4ed8;
    --color-primary-grad: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --color-text-grad: linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%);
    --color-card-shadow: rgba(15, 23, 42, 0.05);
    --color-glow: rgba(37, 99, 235, 0.12);
    
    --blog-marketing-bg: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(96, 165, 250, 0.12) 100%);
    --blog-fashion-bg: linear-gradient(135deg, rgba(219, 39, 119, 0.12) 0%, rgba(225, 29, 72, 0.12) 100%);
    --blog-lifestyle-bg: linear-gradient(135deg, rgba(109, 40, 217, 0.12) 0%, rgba(79, 70, 229, 0.12) 100%);
    --blog-health-bg: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(5, 150, 105, 0.12) 100%);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 80px 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

li {
    list-style: none;
}

/* ==========================================================================
   UTILITY STYLES
   ========================================================================== */
.gradient-text {
    background: var(--color-primary-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.text-left {
    text-align: left;
}

.desktop-only {
    display: inline-flex;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.tag-badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    background: var(--color-primary-grad);
    color: #fff;
    margin-bottom: 24px;
    box-shadow: 0 0 15px var(--color-glow);
}

.font-bold {
    font-weight: 700 !important;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border var(--transition-fast);
    border: none;
    font-size: 0.95rem;
}

.btn:active {
    transform: scale(0.97);
}

.btn-primary {
    background: var(--color-primary-grad);
    color: #ffffff;
    box-shadow: 0 8px 20px var(--color-glow);
}

.btn-primary:hover {
    box-shadow: 0 12px 25px var(--color-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--text-primary);
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

.icon-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast);
    border: 1px solid var(--border-glass);
}

.icon-btn:hover {
    background: var(--bg-glass-hover);
}

/* ==========================================================================
   GLASSMORPHISM
   ========================================================================== */
.card-glass {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px var(--color-card-shadow);
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal), background-color var(--transition-normal);
}

.card-glass:hover {
    transform: translateY(-5px);
    border-color: var(--border-glass-hover);
    box-shadow: 0 15px 35px var(--color-card-shadow), 0 0 15px var(--color-glow);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: background-color var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.header-glass {
    background: rgba(10, 14, 26, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-glass);
}

.header-scrolled {
    background: var(--bg-glass);
    box-shadow: 0 4px 30px var(--color-card-shadow);
    border-bottom-color: var(--border-glass-hover);
}

.nav-container {
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.logo-text span {
    color: #2563eb;
}

.light-theme .logo-text span {
    color: #1d4ed8;
}

#nav-menu ul {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
    text-transform: capitalize;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary-grad);
    transition: width var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sun-icon {
    display: none;
}
.dark-theme .moon-icon {
    display: none;
}
.dark-theme .sun-icon {
    display: block;
    color: #ffb800;
}
.light-theme .moon-icon {
    color: #2563eb;
}

.mobile-only {
    display: none;
}

/* ==========================================================================
   HERO / INDEX LAYOUTS
   ========================================================================== */
.hero-section {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-grid-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.hero-bg-gradients {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.grad-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.25;
    animation: float-blob 20s infinite alternate ease-in-out;
}

.dark-theme .grad-blob {
    opacity: 0.15;
}

.grad-blob-1 {
    width: 500px;
    height: 500px;
    background: var(--color-accent);
    top: -100px;
    right: -100px;
}

.grad-blob-2 {
    width: 400px;
    height: 400px;
    background: var(--color-accent-secondary);
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 24px;
    animation: fade-in-up 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    animation: fade-in-up 1s ease-out;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
    animation: fade-in-up 1.2s ease-out;
}

.hero-visual-panel {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-hero-card {
    width: 100%;
    max-width: 450px;
    padding: 24px;
}

/* Mock dashboard visualization */
.mock-dashboard {
    background: rgba(10, 14, 26, 0.4);
    border-radius: var(--border-radius-sm);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.dot-red, .dot-yellow, .dot-green {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.dot-red { background: #ef4444; }
.dot-yellow { background: #eab308; }
.dot-green { background: #22c55e; }

.dash-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-left: 4px;
}

.dashboard-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.dash-stat {
    display: flex;
    flex-direction: column;
}

.dash-stat .lbl {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.dash-stat .val {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}

.dashboard-chart {
    height: 100px;
}

.chart-svg {
    width: 100%;
    height: 100%;
}

.hero-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 20px 30px;
    margin-top: 40px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
}

.stat-plus {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-accent);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-glass);
}

/* ==========================================================================
   SERVICES GRID LAYOUTS
   ========================================================================== */
.services-highlight-section, .services-detailed-section {
    padding: 80px 0;
}

.section-header {
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px;
}

.service-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--color-primary-grad);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 16px var(--color-glow);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.read-more-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent);
}

.read-more-link:hover {
    letter-spacing: 0.5px;
}

/* ==========================================================================
   ABOUT PAGES (WHO WE ARE, MISSION, WHAT WE DO)
   ========================================================================== */
.about-hero-section, .services-hero-section, .blog-hero-section, .contact-hero-section {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 60px;
}

.reverse-grid {
    grid-template-columns: 0.9fr 1.1fr;
}

.seo-illustration-box, .laptop-illustration-box, .blog-illustration-box {
    width: 100%;
    max-width: 400px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.seo-3d-model {
    font-size: 5rem;
    position: relative;
    font-weight: 800;
    color: var(--color-accent);
}

.seo-badge-3d {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    background: var(--color-primary-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gear {
    position: absolute;
    font-size: 1.8rem;
    animation: spin 8s linear infinite;
}

.gear-1 {
    top: -20px;
    right: -25px;
}

.gear-2 {
    bottom: -10px;
    left: -20px;
    animation-direction: reverse;
}

.magnifier {
    position: absolute;
    font-size: 2.2rem;
    top: -20px;
    left: -30px;
    animation: float-mag 4s ease-in-out infinite alternate;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.pillar-card {
    padding: 30px;
}

.pillar-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    border-left: 3px solid var(--color-accent);
    padding-left: 12px;
}

.pillar-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ==========================================================================
   THE 6-D PROCESS TIMELINE
   ========================================================================== */
.process-grid-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.process-step-box {
    padding: 32px;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.step-header .num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-accent);
}

.step-header h4 {
    font-size: 1.2rem;
}

.process-step-box p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.why-bullets {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-bullets li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
}

.why-bullets li::before {
    content: '•';
    color: var(--color-accent);
    position: absolute;
    left: 0;
    font-weight: 700;
}

.why-stats-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 10px 0;
}

.why-stat-box {
    background: rgba(10, 14, 26, 0.3);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-glass);
    padding: 16px;
}

/* ==========================================================================
   MEET OUR TEAM
   ========================================================================== */
.team-section {
    background: var(--bg-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    padding: 32px;
}

.team-avatar-box {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.avatar-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.avatar-gradient-1 { background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); }
.avatar-gradient-2 { background: linear-gradient(135deg, #ec4899 0%, #d946ef 100%); }
.avatar-gradient-3 { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }

.team-card h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.team-card .role {
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-card .bio {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ==========================================================================
   TESTIMONIALS SLIDER
   ========================================================================== */
.testimonials-section {
    background: var(--bg-secondary);
}

.carousel-container {
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-slider {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    transform: translateX(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.testimonial-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.client-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.client-profile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-glass);
    padding-top: 20px;
}

.client-name {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
}

.client-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.client-metric {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.carousel-btn {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.carousel-btn:hover {
    background: var(--bg-glass-hover);
    border-color: var(--border-glass-hover);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    cursor: pointer;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.dot.active {
    background: var(--color-accent);
    transform: scale(1.3);
}

/* ==========================================================================
   BLOG LAYOUTS
   ========================================================================== */
.blog-search-container {
    padding: 30px;
    margin-bottom: 40px;
}

.search-form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.search-input-group {
    flex-grow: 1;
}

.search-input-group input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(10, 14, 26, 0.25);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
}

.light-theme .search-input-group input {
    background: rgba(255, 255, 255, 0.5);
}

.blog-filters-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-label {
    font-weight: 600;
    color: var(--text-secondary);
}

.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    padding: 6px 16px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--color-primary-grad);
    border-color: transparent;
    color: #ffffff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
    
}

.blog-image-fallback {
    height: 180px;
    width: 100%;
    position: relative;
}

.marketing-bg { background: var(--blog-marketing-bg); }
.fashion-bg { background: var(--blog-fashion-bg); }
.lifestyle-bg { background: var(--blog-lifestyle-bg); }
.health-bg { background: var(--blog-health-bg); }

.blog-category-tag {
    position: absolute;
    bottom: 12px;
    left: 16px;
    padding: 4px 8px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    background: rgba(10, 14, 26, 0.8);
    color: #ffffff;
    border-radius: 4px;
}

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

.blog-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.blog-card-content h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.blog-card-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* ===== MOBILE VIEW - Equal Margin Both Sides ===== */
@media (max-width: 768px) {
    .blog-card {
        /* margin-left: 20px; */
        margin-right: 20px;
    }
}

@media (max-width: 576px) {
    .blog-card {
        /* margin-left: 20px; */
        margin-right: 20px;
    }
}
/* Custom illustration representations */
.creative-hub {
    font-size: 4rem;
    position: relative;
}

.mock-browser-window {
    width: 160px;
    height: 100px;
    background: rgba(10, 14, 26, 0.5);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px;
    position: relative;
}

.url-mock {
    font-size: 0.55rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 6px;
    border-radius: 2px;
    margin-top: 4px;
}

.idea-bulb {
    position: absolute;
    top: -20px;
    right: -20px;
    animation: float-mag 5s ease-in-out infinite alternate;
}

.article-stack {
    position: absolute;
    bottom: -10px;
    right: -30px;
    animation: float-mag 4s ease-in-out infinite alternate-reverse;
}

.chart-growth {
    position: absolute;
    top: 20px;
    left: -40px;
    animation: float-mag 6s ease-in-out infinite alternate;
}

/* ==========================================================================
   CONTACT DEDICATED LAYOUTS
   ========================================================================== */
.visual-location-card {
    padding: 30px;
    margin-top: 40px;
    border-left: 4px solid var(--color-accent);
}

.location-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.loc-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
}

.lat-lng {
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.location-body h5 {
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.target-marker {
    font-size: 2.2rem;
    margin-bottom: 10px;
    animation: marker-pulse 2s infinite ease-in-out;
}

.timezone-indicator {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.contact-form-panel {
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(10, 14, 26, 0.25);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 10px var(--color-glow);
}

.form-group.error input, .form-group.error select, .form-group.error textarea {
    border-color: #ef4444;
}

.error-msg {
    display: none;
    font-size: 0.75rem;
    color: #ef4444;
    margin-top: 4px;
}

.form-group.error .error-msg {
    display: block;
}

.form-success-message {
    text-align: center;
    padding: 40px 0;
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ==========================================================================
   CTA BANNER SECTION
   ========================================================================== */
.cta-banner-section {
    padding: 60px 0;
}

.cta-banner {
    padding: 60px 40px;
}

.cta-banner h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.cta-banner p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-glass);
    background-color: var(--bg-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 16px;
    font-size: 0.95rem;
}

.footer-tagline {
    max-width: 250px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}

.social-links a:hover {
    color: var(--text-primary);
    border-color: var(--color-accent);
    background: var(--bg-glass-hover);
}

.footer-links-group h4 {
    font-size: 1.05rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-group a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-links-group a:hover {
    color: var(--text-primary);
}

.footer-links-group p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-contact-info {
    margin-top: 16px;
}

.footer-contact-info a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid var(--border-glass);
    padding-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    width: 100%;
    text-align: center;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes float-blob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 30px) scale(1.1); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes float-mag {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-10px); }
}

@keyframes marker-pulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(37, 99, 235, 0.4)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 10px rgba(37, 99, 235, 0.8)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(37, 99, 235, 0.4)); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   DESKTOP GRID & PAGE LAYOUTS (ABOUT & CONTACT)
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 50px;
    align-items: center;
}

.about-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-info p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-visual {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.methodology-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-panel h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.contact-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.detail-item h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.detail-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.detail-item a:hover {
    color: var(--color-accent);
}

/* ==========================================================================
   CHARACTER WORK OVERLAYS & ANIMATIONS
   ========================================================================== */
.hero-illustration-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.hero-illustration-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--border-radius-md);
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
}

/* Base style for all text/icon character overlays */
.character-overlay {
    position: absolute;
    z-index: 10;
    font-family: var(--font-heading);
    font-weight: 700;
    pointer-events: none;
    user-select: none;
}

/* 1. Services Page (Developers Animation) */
.dev-illustration-wrapper .overlay-tag-bracket {
    font-size: 1.8rem;
    color: #3b82f6;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
    animation: float-slow 4s ease-in-out infinite;
}

.dev-illustration-wrapper .overlay-tag-code {
    font-size: 1rem;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.4);
    padding: 4px 10px;
    border-radius: 6px;
    color: #818cf8;
    backdrop-filter: blur(4px);
    animation: float-medium 5s ease-in-out infinite;
}

.dev-illustration-wrapper .overlay-tag-div {
    font-size: 1.4rem;
    color: #10b981;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    animation: float-fast 3.5s ease-in-out infinite;
}

/* Monitor code lines simulating developer coding */
.monitor-code-box {
    position: absolute;
    top: 35%;
    left: 35%;
    width: 20%;
    height: 18%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 6px;
    background: rgba(15, 23, 42, 0.85);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.5);
    z-index: 5;
}

.monitor-code-box .code-line {
    display: block;
    height: 3px;
    background-color: #3b82f6;
    border-radius: 2px;
    animation: type-line 3s infinite linear;
}

.monitor-code-box .code-line.line-1 {
    width: 0%;
    background-color: #3b82f6;
    animation-delay: 0s;
}

.monitor-code-box .code-line.line-2 {
    width: 0%;
    background-color: #ec4899;
    animation-delay: 1s;
}

.monitor-code-box .code-line.line-3 {
    width: 0%;
    background-color: #10b981;
    animation-delay: 2s;
}

/* Keyboard keystroke sparks */
.keyboard-spark {
    position: absolute;
    bottom: 22%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #60a5fa;
    box-shadow: 0 0 12px #3b82f6, 0 0 20px #2563eb;
    opacity: 0;
    z-index: 6;
}

.keyboard-spark.spark-1 {
    left: 45%;
    animation: keypress-spark 1.8s infinite ease-out;
}

.keyboard-spark.spark-2 {
    left: 52%;
    animation: keypress-spark 2.2s infinite ease-out 0.6s;
}

/* 2. About Page (SEO Boy Animation) */
.seo-illustration-wrapper .rotating-gear {
    font-size: 2.2rem;
    top: 22%;
    left: 15%;
    filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.4));
    animation: spin-clockwise 10s linear infinite;
}

.seo-illustration-wrapper .scanning-magnifier {
    font-size: 2rem;
    top: 55%;
    left: 12%;
    filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.4));
    animation: scan-move 6s ease-in-out infinite alternate;
}

.seo-illustration-wrapper .pulsing-target {
    font-size: 2.4rem;
    top: 30%;
    right: 15%;
    filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.5));
    animation: pulse-scale 2.5s ease-in-out infinite;
}

/* 3. Blog Page (Workspace Girl Animation) */
.blog-illustration-wrapper .shifting-folder {
    font-size: 2rem;
    top: 25%;
    left: 12%;
    animation: shift-horizontal 5s ease-in-out infinite alternate;
}

.blog-illustration-wrapper .growing-bar {
    font-size: 2rem;
    top: 35%;
    right: 15%;
    animation: bar-grow 3s ease-in-out infinite alternate;
}

.blog-illustration-wrapper .steam-particle {
    font-size: 1.4rem;
    bottom: 35%;
    left: 45%;
    opacity: 0;
    transform: translateY(0) scale(0.8);
    animation: rise-steam 4s ease-in-out infinite;
}

/* 4. Contact Page (Support Agent Animation) */
.contact-illustration-wrapper {
    max-width: 350px;
}

.contact-illustration-wrapper .mail-illustration-1 {
    font-size: 1.6rem;
    top: 15%;
    left: 15%;
    animation: fly-mail-1 6s ease-in-out infinite;
}

.contact-illustration-wrapper .mail-illustration-2 {
    font-size: 1.4rem;
    top: 30%;
    right: 15%;
    animation: fly-mail-2 7s ease-in-out infinite 1.5s;
}

.contact-illustration-wrapper .chat-illustration {
    font-size: 2.2rem;
    bottom: 40%;
    right: 22%;
    animation: pulse-chat 4s ease-in-out infinite;
}

/* Keyframe Animations */
@keyframes float-slow {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-medium {
    0% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-8px) translateX(6px); }
    100% { transform: translateY(0px) translateX(0px); }
}

@keyframes float-fast {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-6px) scale(1.05); }
    100% { transform: translateY(0px) scale(1); }
}

@keyframes type-line {
    0% { width: 0%; }
    40% { width: 100%; }
    70% { width: 100%; opacity: 1; }
    90% { width: 100%; opacity: 0; }
    100% { width: 0%; opacity: 0; }
}

@keyframes keypress-spark {
    0% { transform: scale(0.5); opacity: 0; }
    30% { opacity: 0.8; }
    100% { transform: scale(2.5) translateY(-20px); opacity: 0; }
}

@keyframes spin-clockwise {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes scan-move {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-15px, -10px) scale(1.1); }
    100% { transform: translate(10px, 5px) scale(0.95); }
}

@keyframes pulse-scale {
    0% { transform: scale(1) translate(0, 0); opacity: 0.8; }
    50% { transform: scale(1.15) translate(5px, -5px); opacity: 1; filter: drop-shadow(0 0 15px rgba(239, 68, 68, 0.8)); }
    100% { transform: scale(1) translate(0, 0); opacity: 0.8; }
}

@keyframes shift-horizontal {
    0% { transform: translateX(0px) rotate(0deg); }
    100% { transform: translateX(12px) rotate(5deg); }
}

@keyframes bar-grow {
    0% { transform: scaleY(0.7) translateY(15%); }
    100% { transform: scaleY(1.1) translateY(-5%); }
}

@keyframes rise-steam {
    0% { transform: translateY(0) scale(0.8) translateX(0); opacity: 0; }
    20% { opacity: 0.6; }
    50% { transform: translateY(-15px) scale(1.1) translateX(5px); opacity: 0.3; }
    80% { transform: translateY(-30px) scale(1.3) translateX(-3px); opacity: 0.1; }
    100% { transform: translateY(-40px) scale(1.5) translateX(2px); opacity: 0; }
}

@keyframes fly-mail-1 {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(15px, -15px) rotate(10deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes fly-mail-2 {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-10px, -20px) rotate(-15deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes pulse-chat {
    0% { transform: scale(1) translateY(0); }
    40% { transform: scale(1.08) translateY(-4px); }
    60% { transform: scale(0.95) translateY(2px); }
    100% { transform: scale(1) translateY(0); }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    .hero-grid-layout, .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-content {
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .seo-illustration-box, .laptop-illustration-box, .blog-illustration-box {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    h1 {
        font-size: 2.4rem;
    }
    h2.section-title {
        font-size: 1.85rem;
    }
    .desktop-only {
        display: none;
    }
    .mobile-only {
        display: inline-flex;
    }
    
    #nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--bg-primary);
        z-index: 999;
        transition: left var(--transition-normal);
        padding: 40px 24px;
        border-top: 1px solid var(--border-glass);
    }
    
    #nav-menu.active {
        left: 0;
    }
    
    #nav-menu ul {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    #nav-menu .nav-link {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .btn {
        width: 100%;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .character-overlay {
        font-size: 1.4rem !important;
    }
    .dev-illustration-wrapper .overlay-tag-code {
        font-size: 0.8rem !important;
    }
    .seo-illustration-wrapper .rotating-gear, 
    .seo-illustration-wrapper .pulsing-target,
    .contact-illustration-wrapper .chat-illustration {
        font-size: 1.5rem !important;
    }
}

/* ===== PAGINATION - MODERN GRADIENT ===== */
.pagination-wrapper {
    margin-top: 50px;
    padding-top: 35px;
    border-top: 2px solid #f1f5f9;
    text-align: center;
}

.pagination-info {
    margin-bottom: 25px;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    color: #475569;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.info-badge svg {
    color: #3b82f6;
}

.pagination-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 12px;
    background: white;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.page-btn:hover:not(.disabled) {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border-color: #3b82f6;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.page-btn svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.page-btn.prev:hover:not(.disabled) svg {
    transform: translateX(-4px);
}

.page-btn.next:hover:not(.disabled) svg {
    transform: translateX(4px);
}

.page-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
    background: #f8fafc;
    border-color: #e2e8f0;
}

.page-numbers {
    display: flex;
    align-items: center;
    gap: 6px;
}

.num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 6px;
    border-radius: 12px;
    background: transparent;
    color: #475569;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.num:hover:not(.active) {
    background: #f1f5f9;
    border-color: #e2e8f0;
    color: #1e293b;
    transform: translateY(-2px);
}

.num.active {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border-color: #3b82f6;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.35);
    transform: translateY(-2px);
    cursor: default;
}

.dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 44px;
    color: #94a3b8;
    font-size: 18px;
    font-weight: 600;
    cursor: default;
    user-select: none;
}

/* ============================================
   MOBILE RESPONSIVE - PAGINATION
   ============================================ */

/* Tablet - 768px and below */
@media (max-width: 768px) {
    .pagination-wrapper {
        margin-top: 35px;
        padding-top: 25px;
    }
    
    .pagination-info {
        margin-bottom: 18px;
    }
    
    .info-badge {
        font-size: 13px;
        padding: 8px 18px;
        gap: 8px;
    }
    
    .info-badge svg {
        width: 16px;
        height: 16px;
    }
    
    .pagination-container {
        gap: 6px;
    }
    
    .page-btn {
        padding: 8px 16px;
        font-size: 13px;
        gap: 6px;
        border-radius: 10px;
    }
    
    .page-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .num {
        min-width: 40px;
        height: 40px;
        font-size: 14px;
        border-radius: 10px;
    }
    
    .dots {
        min-width: 26px;
        height: 40px;
        font-size: 16px;
    }
}

/* Mobile - 576px and below */
@media (max-width: 576px) {
    .pagination-wrapper {
        margin-top: 30px;
        padding-top: 20px;
    }
    
    .pagination-info {
        margin-bottom: 15px;
    }
    
    .info-badge {
        font-size: 12px;
        padding: 6px 14px;
        gap: 6px;
        border-radius: 30px;
    }
    
    .info-badge svg {
        width: 14px;
        height: 14px;
    }
    
    .pagination-container {
        gap: 4px;
    }
    
    /* Hide text on small screens - only icons show */
    .page-btn span {
        display: none;
    }
    
    .page-btn {
        padding: 8px 14px;
        border-radius: 10px;
        min-width: 40px;
        justify-content: center;
    }
    
    .page-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .num {
        min-width: 38px;
        height: 38px;
        font-size: 14px;
        border-radius: 10px;
    }
    
    .dots {
        min-width: 22px;
        height: 38px;
        font-size: 14px;
    }
}

/* Extra Small - 400px and below */
@media (max-width: 400px) {
    .info-badge {
        font-size: 11px;
        padding: 5px 12px;
        gap: 4px;
    }
    
    .info-badge svg {
        width: 12px;
        height: 12px;
    }
    
    .pagination-container {
        gap: 3px;
    }
    
    .page-btn {
        padding: 6px 10px;
        min-width: 34px;
        border-radius: 8px;
    }
    
    .page-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .num {
        min-width: 32px;
        height: 32px;
        font-size: 12px;
        border-radius: 8px;
    }
    
    .dots {
        min-width: 18px;
        height: 32px;
        font-size: 12px;
    }
}