/* Professional & Modern Design System */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette - Modern & Trustworthy */
    --primary: #2563eb;
    /* Royal Blue */
    --primary-dark: #1e40af;
    --secondary: #0f172a;
    /* Slate 900 */
    --accent: #f59e0b;
    /* Amber */
    --success: #10b981;
    /* Emerald */
    --danger: #ef4444;
    /* Red */

    /* Backgrounds */
    --bg-body: #f8fafc;
    /* Slate 50 */
    --bg-surface: #ffffff;
    --bg-surface-glass: rgba(255, 255, 255, 0.9);

    /* Text */
    --text-main: #1e293b;
    /* Slate 800 */
    --text-muted: #64748b;
    /* Slate 500 */
    --text-light: #94a3b8;
    /* Slate 400 */

    /* UI Elements */
    --border: #e2e8f0;
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;

    /* Shadows - Soft & Premium */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

    /* Layout */
    --container-width: 1200px;
    --header-height: 72px;
}

/* Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    color: var(--secondary);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

/* Header & Navigation */
.site-header {
    background: var(--bg-surface-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 1.25rem;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.logo span {
    color: var(--secondary);
}

.logo-img-footer {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.nav-desktop {
    display: none;
}

.nav-desktop a {
    margin-left: 2rem;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
}

.nav-desktop a:hover {
    color: var(--primary);
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s;
}

.nav-desktop a:hover::after {
    width: 100%;
}

/* Breadcrumbs & Category Headers */
.breadcrumb {
    padding: 1rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.breadcrumb .separator {
    color: var(--text-light);
}

.category-header {
    background: linear-gradient(to right, var(--bg-surface), #f1f5f9);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    margin-bottom: 2.5rem;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.category-title {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    color: var(--secondary);
    letter-spacing: -0.02em;
}

.category-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 650px;
}

.mobile-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    transform: translateY(-150%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.is-active {
    transform: translateY(0);
}

.mobile-link {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
    color: var(--secondary);
}

.mobile-link:last-child {
    border-bottom: none;
}

/* Hero Section */
.hero {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 2rem auto;
    box-shadow: var(--shadow-lg);
}

.hero-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s;
}

.hero:hover .hero-img {
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
    padding: 2rem;
    color: white;
}

.hero-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 2rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: white;
}

/* Main Layout Grid */
.main-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 2rem;
    padding-bottom: 4rem;
}

/* Article Cards */
.card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.card-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    border: 1px solid transparent;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: rgba(37, 99, 235, 0.05);
}

/* ========================================
   MODERN HORIZONTAL ARTICLE CARDS
   ======================================== */

.articles-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.article-card-horizontal {
    display: flex;
    gap: 1.5rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card-horizontal:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.article-image-link {
    flex-shrink: 0;
    width: 280px;
    overflow: hidden;
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card-horizontal:hover .article-image {
    transform: scale(1.05);
}

.article-content {
    flex: 1;
    padding: 1.5rem;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-meta-top {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.article-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    background: #f1f5f9;
}

.article-category.tech {
    color: #2563eb;
    background: #eff6ff;
}

.article-category.schemes {
    color: #10b981;
    background: #f0fdf4;
}

.article-category.travel {
    color: #d97706;
    background: #fffbeb;
}

.article-category.reviews {
    color: #db2777;
    background: #fdf2f8;
}

.article-read-time {
    font-size: 0.813rem;
    color: var(--text-muted);
}

.article-title {
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.article-title a {
    color: var(--secondary);
    transition: color 0.2s ease;
}

.article-title a:hover {
    color: var(--primary);
}

.article-excerpt {
    font-size: 0.938rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta-bottom {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.article-author {
    font-weight: 500;
}

.meta-separator {
    color: var(--text-light);
}

.article-date {
    color: var(--text-muted);
}

/* Ad Container Inline */
.ad-container-inline {
    width: 100%;
    min-height: 120px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
}

/* Responsive - Horizontal Cards */
@media (max-width: 768px) {
    .article-card-horizontal {
        flex-direction: column;
        gap: 0;
    }

    .article-image-link {
        width: 100%;
        height: 200px;
    }

    .article-content {
        padding: 1.5rem;
    }

    .article-title {
        font-size: 1.125rem;
    }
}

/* ========================================
   BLOG DETAIL PAGE - ARTICLE CONTENT
   ======================================== */

/* Article Main Container */
.article-content {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    border: 1px solid var(--border);
}

/* Article Title */
.article-content .article-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

/* Article Meta Information */
.article-content .article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.938rem;
    color: var(--text-muted);
}

.article-content .article-meta .separator {
    color: var(--text-light);
}

/* Article Hero Image */
.article-content .article-hero-img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-md);
}

/* Article Body Content */
.article-content .article-body {
    font-size: 1.063rem;
    line-height: 1.8;
    color: var(--text-main);
}

/* Lead Paragraph */
.article-content .article-body .lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-main);
    font-weight: 400;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 4px solid var(--primary);
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: var(--radius-sm);
}

/* Article Body Headings */
.article-content .article-body h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.article-content .article-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-content .article-body h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary);
    margin-top: 1.75rem;
    margin-bottom: 0.875rem;
    line-height: 1.4;
}

/* Article Body Paragraphs */
.article-content .article-body p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.article-content .article-body p:last-child {
    margin-bottom: 0;
}

/* Article Body Lists */
.article-content .article-body ul,
.article-content .article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content .article-body ul li,
.article-content .article-body ol li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: var(--text-main);
}

.article-content .article-body ul li:last-child,
.article-content .article-body ol li:last-child {
    margin-bottom: 0;
}

/* Article Body Links */
.article-content .article-body a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: all 0.2s ease;
}

.article-content .article-body a:hover {
    color: var(--primary-dark);
    text-decoration-thickness: 2px;
}

/* Article Body Strong/Bold */
.article-content .article-body strong {
    font-weight: 600;
    color: var(--secondary);
}

/* Article Body Blockquote */
.article-content .article-body blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: #f8fafc;
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-sm);
    font-style: italic;
    color: var(--text-muted);
}

/* Article Body Code */
.article-content .article-body code {
    background: #f1f5f9;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-family: 'Courier New', monospace;
    font-size: 0.938rem;
    color: #e11d48;
}

.article-content .article-body pre {
    background: #0f172a;
    color: #e2e8f0;
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.article-content .article-body pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

/* Responsive Article Content */
@media (max-width: 768px) {
    .article-content {
        padding: 1.5rem;
    }

    .article-content .article-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .article-content .article-meta {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .article-content .article-hero-img {
        margin-bottom: 2rem;
        max-height: 300px;
    }

    .article-content .article-body {
        font-size: 1rem;
    }

    .article-content .article-body .lead {
        font-size: 1.125rem;
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .article-content .article-body h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .article-content .article-body h3 {
        font-size: 1.25rem;
        margin-top: 1.5rem;
        margin-bottom: 0.875rem;
    }

    .article-content .article-body h4 {
        font-size: 1.125rem;
        margin-top: 1.25rem;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 480px) {
    .article-content {
        padding: 1.25rem;
    }

    .article-content .article-title {
        font-size: 1.5rem;
    }

    .article-content .article-body .lead {
        font-size: 1.063rem;
        padding: 1rem;
    }

    .article-content .article-body h2 {
        font-size: 1.375rem;
    }
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.widget {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.widget-title {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
}

/* Product Mini Card */
.mini-product {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.mini-product:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.mini-thumb {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: #f1f5f9;
}

.mini-details h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.mini-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Quick Links API Style */
.link-list {
    list-style: none;
}

.link-list li {
    margin-bottom: 0.75rem;
}

.link-list a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
    font-weight: 500;
}

.link-list a:before {
    content: '→';
    color: var(--primary);
    font-weight: 900;
}

.link-list a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #bfdbfe;
}

.input-group {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-input {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    width: 100%;
}

.form-input:focus {
    outline: 2px solid var(--primary);
    border-color: transparent;
}

/* ========================================
   FAQ SECTION - MODERN ACCORDION
   ======================================== */

.faq-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

/* Accordion Container */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Accordion Item */
.accordion-item {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.accordion-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.accordion-item.active {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

/* Accordion Header (Question Button) */
.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem 1.75rem;
    font-size: 1.063rem;
    font-weight: 600;
    color: var(--secondary);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    line-height: 1.5;
}

.accordion-header:hover {
    color: var(--primary);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(147, 51, 234, 0.03) 100%);
}

.accordion-item.active .accordion-header {
    color: var(--primary);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
    border-bottom: 1px solid var(--border);
}

/* Icon in Header */
.accordion-header .icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #9333ea 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
}

.accordion-item.active .accordion-header .icon {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #9333ea 0%, var(--primary) 100%);
}

/* Accordion Content (Answer) */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease;
    opacity: 0;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 1.5rem 1.75rem;
    opacity: 1;
}

.accordion-content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Smooth Fade-In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.accordion-item.active .accordion-content {
    animation: fadeIn 0.4s ease;
}

/* Responsive FAQ Section */
@media (max-width: 768px) {
    .accordion-header {
        padding: 1.25rem 1.25rem;
        font-size: 1rem;
    }

    .accordion-item.active .accordion-content {
        padding: 1.25rem 1.25rem;
    }

    .accordion-header .icon {
        width: 24px;
        height: 24px;
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .accordion-header {
        padding: 1rem 1rem;
        font-size: 0.938rem;
        gap: 0.75rem;
    }

    .accordion-item.active .accordion-content {
        padding: 1rem 1rem;
        max-height: 600px;
    }

    .accordion-content p {
        font-size: 0.938rem;
    }
}

/* Footer */
.site-footer {
    background-color: var(--secondary);
    color: #cbd5e1;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.footer-logo {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 1rem;
    display: block;
}

.footer-heading {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.875rem;
    color: #94a3b8;
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-desktop {
        display: block;
    }

    .mobile-toggle {
        display: none;
    }

    .main-wrapper {
        grid-template-columns: 2.5fr 1fr;
        /* 71% / 29% approx */
    }

    .card {
        flex-direction: row;
        align-items: center;
    }

    .card-img {
        width: 280px;
        /* larger image on desktop */
        height: 100%;
        min-height: 220px;
    }

    .hero-img {
        height: 400px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* ========================================
   SPACING UTILITIES - STANDARDIZED
   ======================================== */

/* Margin Utilities */
.m-0 {
    margin: 0;
}

.m-1 {
    margin: 0.5rem;
}

.m-2 {
    margin: 1rem;
}

.m-3 {
    margin: 1.5rem;
}

.m-4 {
    margin: 2rem;
}

.m-5 {
    margin: 3rem;
}

/* Margin Top */
.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* Margin Bottom */
.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

/* Margin Left */
.ml-0 {
    margin-left: 0;
}

.ml-1 {
    margin-left: 0.5rem;
}

.ml-2 {
    margin-left: 1rem;
}

.ml-3 {
    margin-left: 1.5rem;
}

.ml-4 {
    margin-left: 2rem;
}

/* Margin Right */
.mr-0 {
    margin-right: 0;
}

.mr-1 {
    margin-right: 0.5rem;
}

.mr-2 {
    margin-right: 1rem;
}

.mr-3 {
    margin-right: 1.5rem;
}

.mr-4 {
    margin-right: 2rem;
}

/* Margin X (Horizontal) */
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mx-1 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.mx-2 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.mx-3 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

/* Margin Y (Vertical) */
.my-1 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.my-2 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.my-3 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.my-4 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.my-5 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

/* Padding Utilities */
.p-0 {
    padding: 0;
}

.p-1 {
    padding: 0.5rem;
}

.p-2 {
    padding: 1rem;
}

.p-3 {
    padding: 1.5rem;
}

.p-4 {
    padding: 2rem;
}

.p-5 {
    padding: 3rem;
}

/* Padding Top */
.pt-0 {
    padding-top: 0;
}

.pt-1 {
    padding-top: 0.5rem;
}

.pt-2 {
    padding-top: 1rem;
}

.pt-3 {
    padding-top: 1.5rem;
}

.pt-4 {
    padding-top: 2rem;
}

.pt-5 {
    padding-top: 3rem;
}

/* Padding Bottom */
.pb-0 {
    padding-bottom: 0;
}

.pb-1 {
    padding-bottom: 0.5rem;
}

.pb-2 {
    padding-bottom: 1rem;
}

.pb-3 {
    padding-bottom: 1.5rem;
}

.pb-4 {
    padding-bottom: 2rem;
}

.pb-5 {
    padding-bottom: 3rem;
}

/* Padding Left */
.pl-0 {
    padding-left: 0;
}

.pl-1 {
    padding-left: 0.5rem;
}

.pl-2 {
    padding-left: 1rem;
}

.pl-3 {
    padding-left: 1.5rem;
}

.pl-4 {
    padding-left: 2rem;
}

/* Padding Right */
.pr-0 {
    padding-right: 0;
}

.pr-1 {
    padding-right: 0.5rem;
}

.pr-2 {
    padding-right: 1rem;
}

.pr-3 {
    padding-right: 1.5rem;
}

.pr-4 {
    padding-right: 2rem;
}

/* Padding X (Horizontal) */
.px-1 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.px-2 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-3 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-4 {
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Padding Y (Vertical) */
.py-1 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-2 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-3 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-4 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Text Utilities */
.text-center {
    text-align: center;
}

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

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

/* Display Utilities */
.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-inline {
    display: inline;
}

.d-inline-block {
    display: inline-block;
}

.d-flex {
    display: flex;
}

/* AMP / Low Bandwidth Optimization */
@media screen and (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* AdSense Placeholders */
.ad-container {
    width: 100%;
    min-height: 100px;
    background-color: #f1f5f9;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #94a3b8;
    font-size: 0.8rem;
    border: 1px dashed #cbd5e1;
    margin: 2rem 0;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ad-placeholder {
    padding: 1rem;
    text-align: center;
}

.ad-sidebar {
    height: 300px;
}

/* ========================================
   MINIMALIST HERO SECTION
   ======================================== */
.hero-minimal {
    margin: 3rem 0 4rem;
    padding: 0 1rem;
}

.hero-container {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.hero-label {
    display: inline-block;
    font-size: 0.813rem;
    font-weight: 500;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: #f1f5f9;
    border-radius: 2rem;
}

.hero-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.15;
    color: #0f172a;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 2.5rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-minimal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.btn-primary-minimal {
    background: #0f172a;
    color: white;
}

.btn-primary-minimal:hover {
    background: #1e293b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.btn-outline-minimal {
    background: transparent;
    color: #0f172a;
    border-color: #e2e8f0;
}

.btn-outline-minimal:hover {
    border-color: #0f172a;
    background: #f8fafc;
}

/* ========================================
   MINIMALIST QUICK LINKS
   ======================================== */
.quick-links-minimal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin: 3rem 0;
}

.quick-link-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.quick-link-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

.quick-link-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.quick-link-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.quick-link-content p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

/* ========================================
   RESPONSIVE DESIGN - MINIMALIST
   ======================================== */
@media (max-width: 768px) {
    .hero-heading {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .quick-links-minimal {
        grid-template-columns: 1fr;
    }

    .btn-minimal {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 1.75rem;
    }

    .hero-label {
        font-size: 0.75rem;
    }

    .quick-link-card {
        padding: 1.25rem;
    }
}