/* ===========================
   TICKLE RIGHT BLOG - Creative Classic
   =========================== */

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

:root {
    --primary: #E85D26;
    --primary-light: #FF7A45;
    --primary-dark: #C94D1C;
    --secondary: #1B4965;
    --secondary-light: #2D6A8E;
    --accent: #FFB400;
    --accent-light: #FFCF56;
    --light: #FDFBF7;
    --cream: #FAF6EE;
    --warm-white: #FFFCF5;
    --dark: #1B2A4A;
    --dark-soft: #2C3E5A;
    --gray: #6B7A8D;
    --gray-light: #E8ECF1;
    --gray-lighter: #F4F6F9;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(27,42,74,0.06);
    --shadow: 0 4px 24px rgba(27,42,74,0.08);
    --shadow-lg: 0 12px 40px rgba(27,42,74,0.12);
    --shadow-glow: 0 0 40px rgba(232,93,38,0.15);
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, sans-serif;
    --font-accent: 'Caveat', cursive;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ===========================
   TOP BAR
   =========================== */
/* ===========================
   HEADER
   =========================== */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(255,255,255,0.95);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}

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

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

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(232,93,38,0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-tickle {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.logo-right {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.1;
}

.logo-tagline {
    font-size: 0.6rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

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

.nav-link {
    font-weight: 600;
    color: var(--dark-soft);
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(232,93,38,0.06);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(232,93,38,0.3);
    margin-left: 12px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,93,38,0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    background: linear-gradient(135deg, var(--secondary) 0%, #0D2E44 100%);
    padding: 70px 0 80px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: -80px;
    left: -80px;
    animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--primary-light);
    top: 50%;
    left: 40%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.15;
}

.hero .highlight {
    color: var(--accent);
    position: relative;
}

.hero p {
    font-size: 1.15rem;
    opacity: 0.85;
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.hero-search {
    display: flex;
    max-width: 450px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.search-input {
    flex: 1;
    padding: 14px 20px;
    background: transparent;
    border: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
}

.search-input::placeholder {
    color: rgba(255,255,255,0.5);
}

.search-btn {
    padding: 14px 20px;
    background: var(--primary);
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.search-btn:hover {
    background: var(--primary-light);
}

.hero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
    height: 300px;
}

.hero-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.15);
    transition: var(--transition);
}

.hero-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.15);
}

.hero-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 8px;
}

.hero-card span {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--accent);
}

.hero-card-1 {
    transform: rotate(-5deg) translateY(-20px);
}

.hero-card-2 {
    transform: translateY(10px);
}

.hero-card-3 {
    transform: rotate(5deg) translateY(-30px);
}

/* ===========================
   BLOG LAYOUT
   =========================== */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 50px;
    padding: 60px 0 80px;
}

.section-header {
    margin-bottom: 35px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.section-header p {
    color: var(--gray);
    font-size: 1rem;
}

/* ===========================
   POST CARDS
   =========================== */
.blog-grid {
    display: grid;
    gap: 28px;
}

.post-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: grid;
    grid-template-columns: 280px 1fr;
}

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

.post-card.featured {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
}

.post-card.featured .post-image {
    height: 320px;
}

.post-image-link {
    display: block;
}

.post-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-card:hover .post-image img {
    transform: scale(1.08);
}

.category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    backdrop-filter: blur(4px);
}

.post-content {
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-meta {
    display: flex;
    gap: 18px;
    margin-bottom: 14px;
    font-size: 0.82rem;
    color: var(--gray);
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-meta svg {
    opacity: 0.6;
}

.post-card h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.35;
}

.post-card h2 a {
    transition: var(--transition);
}

.post-card h2 a:hover {
    color: var(--primary);
}

.post-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.65;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.88rem;
    transition: var(--transition);
}

.read-more svg {
    transition: var(--transition);
}

.read-more:hover svg {
    transform: translateX(4px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.page-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 2px solid var(--gray-light);
    background: var(--white);
    color: var(--gray);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-btn:hover,
.page-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(232,93,38,0.3);
}

.page-btn.next {
    width: auto;
    padding: 0 18px;
    gap: 4px;
}

/* ===========================
   SIDEBAR
   =========================== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.newsletter-widget {
    position: sticky;
    top: 20px;
    z-index: 10;
    border: 2px solid var(--primary);
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.sidebar-widget:hover {
    box-shadow: var(--shadow);
}

.sidebar-widget h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
    position: relative;
    padding-bottom: 12px;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

/* About Widget */
.about-widget {
    text-align: center;
    background: linear-gradient(135deg, var(--secondary) 0%, #0D2E44 100%);
    color: var(--white);
}

.about-widget h3 {
    color: var(--white);
}

.about-widget h3::after {
    background: var(--accent);
}

.about-widget p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

.widget-logo {
    width: 70px;
    height: 70px;
    margin: 0 auto 12px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.2);
}

/* Categories Widget */
.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    background: var(--gray-lighter);
    transition: var(--transition);
}

.category-tag:hover {
    background: var(--cat-color);
    color: var(--white);
}

.cat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.cat-count {
    font-size: 0.7rem;
    background: rgba(0,0,0,0.08);
    padding: 2px 8px;
    border-radius: 50px;
    margin-left: 2px;
}

.category-tag:hover .cat-count {
    background: rgba(255,255,255,0.2);
}

/* Popular Posts */
.popular-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.popular-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.popular-item:hover {
    background: var(--gray-lighter);
}

.popular-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-light);
    min-width: 36px;
}

.popular-item:hover .popular-num {
    color: var(--primary);
}

.popular-item img {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}

.popular-info h4 {
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 4px;
}

.popular-date {
    font-size: 0.75rem;
    color: var(--gray);
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.cta-widget h3 {
    color: var(--white);
}

.cta-widget h3::after {
    background: var(--accent);
}

.cta-widget p {
    font-size: 0.9rem;
    opacity: 0.92;
    margin-bottom: 20px;
    line-height: 1.55;
}

.cta-icon {
    margin-bottom: 12px;
    opacity: 0.9;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 28px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Newsletter */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 13px 18px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--gray-lighter);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.newsletter-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27,73,101,0.3);
}

/* ===========================
   BLOG POST PAGE
   =========================== */
.blog-post {
    max-width: 100%;
    margin: 0 auto;
    padding: 50px 24px 80px;
}

.post-header {
    margin-bottom: 32px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 16px;
    transition: var(--transition);
    font-weight: 600;
}

.back-link:hover {
    color: var(--primary);
}

.back-link svg {
    transition: var(--transition);
}

.back-link:hover svg {
    transform: translateX(-4px);
}

.post-header .category-badge {
    position: static;
    display: inline-block;
    margin-bottom: 16px;
}

.post-header h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    color: var(--dark);
}

.post-header .post-meta {
    flex-wrap: wrap;
}

.post-featured-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 36px;
    box-shadow: var(--shadow-lg);
}

.post-featured-image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.post-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.post-sidebar {
    position: sticky;
    top: 20px;
}

.post-main {
    min-width: 0;
}

.post-body {
    font-size: 1.08rem;
}

.post-body .lead {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 28px;
    line-height: 1.6;
    border-left: 4px solid var(--primary);
    padding-left: 20px;
}

.post-body h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 40px 0 16px;
    color: var(--dark);
}

.post-body p {
    margin-bottom: 20px;
    color: #3D4F65;
    line-height: 1.75;
}

.post-body ul, .post-body ol {
    margin: 16px 0 24px 24px;
    color: #3D4F65;
}

.post-body li {
    margin-bottom: 10px;
    line-height: 1.65;
}

.post-body strong {
    color: var(--dark);
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 24px 0 32px;
}

.skill-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

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

.skill-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.skill-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
}

.skill-card p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}

/* Highlight Box */
.highlight-box {
    background: var(--cream);
    border-left: 4px solid var(--primary);
    padding: 24px 28px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 28px 0;
}

.highlight-box h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.highlight-box ul {
    margin-left: 16px;
}

/* Timeline */
.timeline {
    margin: 24px 0 32px;
    position: relative;
    padding-left: 28px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 1px;
}

.timeline-item {
    position: relative;
    margin-bottom: 24px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--light);
    box-shadow: 0 0 0 2px var(--primary);
}

.timeline-marker {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-content p {
    margin: 0;
    color: #3D4F65;
    line-height: 1.6;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--secondary) 0%, #0D2E44 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin: 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.cta-box::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.1;
    top: -50px;
    right: -50px;
}

.cta-box h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.cta-box p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    line-height: 1.65;
}

.cta-box .btn-cta {
    background: var(--accent);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(255,180,0,0.3);
}

.cta-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.cta-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Post Footer */
.post-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-light);
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.tag {
    background: var(--gray-lighter);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray);
    transition: var(--transition);
    cursor: pointer;
}

.tag:hover {
    background: var(--primary);
    color: var(--white);
}

.post-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.post-share span {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.9rem;
}

.share-btn {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.share-btn.facebook { background: #1877F2; color: white; }
.share-btn.twitter { background: #1DA1F2; color: white; }
.share-btn.linkedin { background: #0A66C2; color: white; }
.share-btn.whatsapp { background: #25D366; color: white; }

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.author-box {
    display: flex;
    gap: 20px;
    align-items: center;
    background: var(--cream);
    padding: 24px;
    border-radius: var(--radius);
}

.author-avatar img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.author-info p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.55;
}

/* Related Posts */
.related-posts {
    margin-top: 50px;
}

.related-posts h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 28px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.related-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.related-image {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-card:hover .related-image img {
    transform: scale(1.06);
}

.related-image .category-badge {
    top: 10px;
    left: 10px;
    font-size: 0.65rem;
    padding: 4px 10px;
}

.related-info {
    padding: 16px 18px;
}

.related-info h3 {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 6px;
}

.related-date {
    font-size: 0.75rem;
    color: var(--gray);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--dark);
    padding: 30px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
}

.footer-brand .logo-img {
    height: 36px;
}

.footer-brand .logo-tickle,
.footer-brand .logo-right {
    font-size: 1rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer p {
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ===========================
   HEADER
   =========================== */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr 300px;
        gap: 30px;
    }

    .post-layout {
        grid-template-columns: 1fr 300px;
        gap: 30px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero p {
        margin: 0 auto 28px;
    }

    .hero-search {
        margin: 0 auto;
    }

    .hero-illustration {
        display: none;
    }

    .post-card {
        grid-template-columns: 1fr;
    }

    .post-card .post-image {
        height: 220px;
    }

    .cta-box {
        grid-template-columns: 1fr;
    }

    .cta-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 8px;
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
        transition: var(--transition);
        z-index: 1000;
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        padding: 12px 16px;
        width: 100%;
        border-radius: var(--radius-sm);
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 12px;
        justify-content: center;
        width: 100%;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding: 50px 0 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .blog-layout {
        grid-template-columns: 1fr;
    }

    .post-layout {
        grid-template-columns: 1fr;
    }

    .post-sidebar {
        position: static;
    }

    .sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .post-header h1 {
        font-size: 1.8rem;
    }

    .post-featured-image img {
        height: 260px;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo-tagline {
        display: none;
    }
}

@media (max-width: 480px) {
    .sidebar {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .post-content {
        padding: 20px;
    }

    .post-card {
        border-radius: var(--radius);
    }

    .cta-box {
        padding: 28px 20px;
    }

    .pagination {
        flex-wrap: wrap;
    }
}


/* ===========================
   SEO LANDING PAGES
   =========================== */

.seo-breadcrumb {
    background: var(--gray-lighter);
    padding: 12px 0;
    font-size: 0.82rem;
    color: var(--gray);
}
.seo-breadcrumb a { color: var(--gray); transition: var(--transition); }
.seo-breadcrumb a:hover { color: var(--primary); }

.seo-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, #0D2E44 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}
.seo-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
}
.seo-hero h1 {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}
.seo-hero-sub {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 28px;
    line-height: 1.7;
}
.seo-hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.seo-hero-actions .btn-cta {
    background: var(--accent);
    color: var(--dark);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(255,180,0,0.3);
}
.seo-hero-actions .btn-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(255,180,0,0.4); }
.seo-hero-actions .btn-call {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    border: 2px solid rgba(255,255,255,0.3);
    transition: var(--transition);
}
.seo-hero-actions .btn-call:hover { background: rgba(255,255,255,0.2); }
.seo-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.seo-hero-stats div { text-align: center; }
.seo-hero-stats strong { display: block; font-size: 1.6rem; font-family: var(--font-display); color: var(--accent); }
.seo-hero-stats span { font-size: 0.82rem; opacity: 0.7; }

.seo-section { padding: 60px 0; }
.seo-section-alt { background: var(--cream); }
.seo-section h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}
.seo-intro {
    text-align: center;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.seo-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.seo-text h2 { text-align: left; font-size: 1.6rem; margin-bottom: 14px; }
.seo-text p { color: #3D4F65; line-height: 1.75; margin-bottom: 16px; }
.seo-text h3 { font-size: 1.2rem; margin: 24px 0 12px; }
.seo-list { margin-left: 20px; color: #3D4F65; }
.seo-list li { margin-bottom: 8px; line-height: 1.6; }

.seo-features { display: flex; flex-direction: column; gap: 18px; }
.seo-feature {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.seo-feature:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.feature-icon { font-size: 1.8rem; flex-shrink: 0; }
.seo-feature strong { display: block; margin-bottom: 4px; }
.seo-feature p { margin: 0; font-size: 0.88rem; color: var(--gray); line-height: 1.5; }

.seo-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.benefit-card {
    background: var(--white);
    padding: 28px 22px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.benefit-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.benefit-icon { font-size: 2.2rem; margin-bottom: 12px; }
.benefit-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.benefit-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.55; }

.seo-age-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.age-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: var(--transition);
}
.age-card:hover { box-shadow: var(--shadow); }
.featured-age { border-color: var(--primary); box-shadow: var(--shadow); }
.age-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.age-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.age-card ul { list-style: none; margin-bottom: 18px; }
.age-card li { padding: 6px 0; font-size: 0.9rem; color: var(--gray); border-bottom: 1px solid var(--gray-lighter); }
.btn-primary-sm, .btn-outline-sm {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
}
.btn-primary-sm { background: var(--primary); color: var(--white); }
.btn-primary-sm:hover { background: var(--primary-dark); }
.btn-outline-sm { border: 2px solid var(--primary); color: var(--primary); }
.btn-outline-sm:hover { background: var(--primary); color: var(--white); }

.seo-areas-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.area-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: var(--white);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.area-tag:hover { background: var(--primary); color: var(--white); box-shadow: var(--shadow); }
.area-tag:hover svg { stroke: var(--white); }

.seo-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 20px; }
.step { text-align: center; position: relative; }
.step-num {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 auto 14px;
}
.step h3 { font-size: 1rem; margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--gray); line-height: 1.55; }

.seo-faq { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px 26px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
}
.faq-item h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--dark); }
.faq-item p { font-size: 0.92rem; color: var(--gray); line-height: 1.65; margin: 0; }

.seo-cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}
.seo-cta-section h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 12px; color: var(--white); }
.seo-cta-section p { font-size: 1.1rem; opacity: 0.92; max-width: 600px; margin: 0 auto 28px; }
.seo-cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }
.btn-cta-lg {
    background: var(--accent);
    color: var(--dark);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(255,180,0,0.3);
}
.btn-cta-lg:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(255,180,0,0.4); }
.btn-call-lg {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    border: 2px solid rgba(255,255,255,0.3);
    transition: var(--transition);
}
.btn-call-lg:hover { background: rgba(255,255,255,0.25); }
.seo-cta-note { font-size: 0.85rem; opacity: 0.75; margin-top: 12px; }

.seo-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.related-service-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.related-service-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-left: 3px solid var(--primary); }
.rs-icon { font-size: 1.6rem; }
.related-service-card h4 { font-size: 0.88rem; font-weight: 600; line-height: 1.3; margin: 0; }

.seo-article-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, #0D2E44 100%);
    color: var(--white);
    padding: 50px 0 40px;
}
.seo-article-hero h1 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.25;
    max-width: 800px;
}
.seo-article-hero .seo-hero-sub { max-width: 800px; margin: 0 auto 16px; }
.seo-article-meta { display: flex; gap: 8px; justify-content: center; font-size: 0.85rem; opacity: 0.75; }

.seo-article-content { max-width: 700px; }
.article-section { margin-bottom: 32px; }
.article-section h2 { font-family: var(--font-display); font-size: 1.5rem; text-align: left; margin-bottom: 14px; color: var(--dark); }
.article-section div { color: #3D4F65; line-height: 1.8; font-size: 1.02rem; }
.article-section ul { margin: 12px 0; padding-left: 20px; }
.article-section li { margin-bottom: 8px; line-height: 1.65; }

.seo-inline-cta {
    background: var(--cream);
    border-left: 4px solid var(--primary);
    padding: 28px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 32px 0;
    text-align: center;
}
.seo-inline-cta h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 8px; }
.seo-inline-cta p { color: var(--gray); margin-bottom: 16px; }

.seo-article-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-cta-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
}
.sidebar-cta-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.sidebar-cta-card p { font-size: 0.88rem; color: var(--gray); margin-bottom: 14px; }
.btn-cta-sm { display: inline-block; background: var(--primary); color: var(--white); padding: 10px 24px; border-radius: 50px; font-weight: 700; font-size: 0.88rem; transition: var(--transition); }
.btn-cta-sm:hover { background: var(--primary-dark); }
.btn-call-sm { display: inline-block; background: var(--gray-lighter); color: var(--primary); padding: 10px 24px; border-radius: 50px; font-weight: 700; font-size: 0.88rem; transition: var(--transition); }
.btn-call-sm:hover { background: var(--primary); color: var(--white); }

.sidebar-related {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.sidebar-related h4 { font-size: 1rem; margin-bottom: 12px; }
.sidebar-related a { display: block; padding: 8px 0; color: var(--gray); font-size: 0.88rem; border-bottom: 1px solid var(--gray-lighter); transition: var(--transition); }
.sidebar-related a:last-child { border: none; }
.sidebar-related a:hover { color: var(--primary); padding-left: 6px; }

.sidebar-stats { background: var(--white); padding: 24px; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.sidebar-stats h4 { font-size: 1rem; margin-bottom: 12px; }
.stat-item { padding: 8px 0; font-size: 0.88rem; color: var(--gray); border-bottom: 1px solid var(--gray-lighter); }
.stat-item strong { color: var(--primary); }

.seo-testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-card p { font-size: 0.92rem; color: #3D4F65; line-height: 1.65; font-style: italic; margin-bottom: 14px; }
.testimonial-card strong { font-size: 0.85rem; color: var(--gray); }

.seo-hero-center { background: linear-gradient(135deg, #1B4965 0%, #0D3B54 100%); }

@media (max-width: 968px) {
    .seo-content-grid { grid-template-columns: 1fr; }
    .seo-benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .seo-age-grid { grid-template-columns: 1fr; }
    .seo-steps { grid-template-columns: repeat(2, 1fr); }
    .seo-related-grid { grid-template-columns: repeat(2, 1fr); }
    .seo-testimonials { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .seo-hero h1 { font-size: 1.8rem; }
    .seo-hero-stats { gap: 20px; }
    .seo-benefits-grid { grid-template-columns: 1fr; }
    .seo-steps { grid-template-columns: 1fr; }
    .seo-related-grid { grid-template-columns: 1fr; }
    .seo-article-hero h1 { font-size: 1.6rem; }
}
