/*
Theme Name: Yogi SEO
Theme URI: https://yogiseo.com
Author: Yogi SEO
Author URI: https://yogiseo.com
Description: A professional digital marketing & SEO agency theme built for Yogi SEO with full Elementor compatibility. Features modern design, orange & navy color scheme, and comprehensive digital marketing service sections.
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: yogi-seo
Tags: elementor, digital-marketing, seo, agency, business, responsive, custom-menu, featured-images, translation-ready

This theme is designed for digital marketing agencies specializing in SEO services.
*/

/* =========================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ========================================= */
:root {
    --primary-orange: #FF6B00;
    --primary-dark: #FF6B00;
    --secondary-blue: #0A1628;
    --navy-dark: #0D1B34;
    --navy-medium: #112040;
    --text-dark: #1a1a2e;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --white: #ffffff;
    --light-bg: #f8fafc;
    --border-color: #e5e7eb;
    --card-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --card-hover-shadow: 0 8px 40px rgba(0,0,0,0.15);
    --font-primary: 'Inter', 'Segoe UI', Arial, sans-serif;
    --font-heading: 'Poppins', 'Inter', Arial, sans-serif;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    --transition: all 0.3s ease;
}

/* =========================================
   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-primary);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #e55a00;
}

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

ul, ol {
    list-style: none;
}

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

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

p:last-child {
    margin-bottom: 0;
}

/* =========================================
   CONTAINER
   ========================================= */
.container,
.yogi-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   SECTION STYLES
   ========================================= */
.section-padding {
    padding: 80px 0;
}

.section-padding-sm {
    padding: 50px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .section-title {
    margin-bottom: 15px;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn,
.yogi-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary,
.yogi-btn-primary {
    background-color: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
}

.btn-primary:hover,
.yogi-btn-primary:hover {
    background-color: #e55a00;
    border-color: #e55a00;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.btn-secondary,
.yogi-btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border-color: var(--border-color);
}

.btn-secondary:hover,
.yogi-btn-secondary:hover {
    background-color: var(--text-dark);
    color: var(--white);
    border-color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-orange);
    border-color: var(--white);
}

.btn-white:hover {
    background-color: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
}

/* =========================================
   HEADER / NAVIGATION
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
    gap: 20px;
}

/* Site Logo */
.site-branding {
    flex-shrink: 0;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo img {
    height: 45px;
    width: auto;
}

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

.logo-yogi {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary-blue);
    letter-spacing: -0.5px;
}

.logo-seo {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-orange);
    letter-spacing: -0.5px;
}

/* Navigation */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current_page_item > a {
    color: var(--primary-orange);
    background-color: rgba(255, 107, 0, 0.08);
}

/* Dropdown Menu */
.nav-menu .sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    list-style: none;
    padding: 8px 0;
    border-top: 3px solid var(--primary-orange);
    z-index: 1000;
}

.nav-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .sub-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu .sub-menu li a:hover {
    color: var(--primary-orange);
    background-color: rgba(255, 107, 0, 0.05);
    padding-left: 25px;
}

/* Dropdown arrow indicator */
.nav-menu .menu-item-has-children > a::after {
    content: '▾';
    font-size: 10px;
    color: var(--primary-orange);
}

/* Header CTA */
.header-cta {
    flex-shrink: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    padding: 120px 0 80px;
    background: var(--white);
    overflow: hidden;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.08);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 25px;
}

.hero-badge .icon {
    font-size: 16px;
}

.hero-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--primary-orange);
}

.hero-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatars {
    display: flex;
}

.client-avatars img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -10px;
    object-fit: cover;
}

.client-avatars img:first-child {
    margin-left: 0;
}

.client-avatars .avatar-placeholder {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -10px;
    background: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: white;
}

.social-proof-text .clients-count {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
}

.social-proof-text .rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--text-gray);
}

.stars {
    color: #f59e0b;
    font-size: 12px;
}

/* Hero Dashboard */
.hero-dashboard {
    position: relative;
}

.dashboard-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 15px;
    text-align: left;
}

.stat-label {
    font-size: 11px;
    color: var(--text-gray);
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.stat-change {
    font-size: 11px;
    font-weight: 600;
}

.stat-change.up {
    color: #10b981;
}

.stat-change.down {
    color: #ef4444;
}

.chart-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.chart-placeholder {
    background: var(--light-bg);
    border-radius: var(--border-radius-sm);
    padding: 15px;
    min-height: 100px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
}

.chart-bar {
    flex: 1;
    background: var(--primary-orange);
    border-radius: 3px 3px 0 0;
    opacity: 0.7;
    min-height: 10px;
}

.chart-bar:nth-child(2) { height: 40%; opacity: 0.5; }
.chart-bar:nth-child(3) { height: 60%; opacity: 0.6; }
.chart-bar:nth-child(4) { height: 35%; opacity: 0.5; }
.chart-bar:nth-child(5) { height: 80%; opacity: 0.8; }
.chart-bar:nth-child(6) { height: 55%; opacity: 0.65; }
.chart-bar:nth-child(7) { height: 90%; opacity: 1; }

.donut-placeholder {
    background: var(--light-bg);
    border-radius: var(--border-radius-sm);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donut-chart {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: conic-gradient(
        var(--primary-orange) 0% 55%,
        #1e3a5f 55% 75%,
        #22c55e 75% 90%,
        #f59e0b 90% 100%
    );
}

.bottom-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

/* =========================================
   PARTNERS/CERTIFICATIONS SECTION
   ========================================= */
.partners-section {
    padding: 40px 0;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.partners-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    opacity: 0.7;
    transition: var(--transition);
}

.partner-item:hover {
    opacity: 1;
}

.partner-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.partner-label {
    font-size: 10px;
    color: var(--text-gray);
    font-weight: 500;
    text-align: center;
}

.partner-item svg {
    height: 30px;
    width: auto;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-hover-shadow);
    border-color: var(--primary-orange);
}

.service-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
}

.service-card h3 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.service-card p {
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 12px;
}

.service-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.service-link:hover {
    gap: 8px;
}

/* Service Icon Colors */
.icon-seo { background: rgba(255, 107, 0, 0.1); color: var(--primary-orange); }
.icon-local-seo { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.icon-google-ads { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.icon-social { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.icon-youtube { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.icon-web-dev { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.icon-traffic { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }

/* =========================================
   ABOUT SECTION (Dark Background)
   ========================================= */
.about-section {
    background: var(--navy-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.about-inner {
    display: grid;
    grid-template-columns: 300px 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    text-align: center;
}

.about-founder-img {
    width: 250px;
    height: 300px;
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    object-fit: cover;
    border: 3px solid var(--primary-orange);
}

.about-image-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    line-height: 1.1;
}

.about-image-badge .years {
    font-size: 20px;
    font-weight: 800;
}

.about-image-badge .years-label {
    font-size: 9px;
    text-align: center;
    line-height: 1.2;
}

.about-content .section-tag {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-content p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.media-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
    align-items: center;
}

.media-logo-item {
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
}

.founder-signature {
    margin-top: 20px;
}

.signature-name {
    font-family: 'Dancing Script', cursive;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 5px;
}

.signature-title {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* Why Choose Us Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.why-choose-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: var(--transition);
}

.why-choose-card:hover {
    background: rgba(255, 107, 0, 0.1);
    border-color: rgba(255, 107, 0, 0.3);
}

.why-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 107, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.why-card-content h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.why-card-content p {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin: 0;
    line-height: 1.4;
}

/* =========================================
   PERFORMANCE/STATS SECTION
   ========================================= */
.performance-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.performance-inner {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: center;
}

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

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

.perf-stat .stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 107, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-orange);
}

.perf-stat .stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.perf-stat .stat-label {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
}

.performance-visual {
    position: relative;
}

.performance-visual img {
    width: 100%;
    border-radius: var(--border-radius);
}

/* =========================================
   CLIENTS SECTION
   ========================================= */
.clients-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.clients-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.client-logo-item {
    opacity: 0.6;
    transition: var(--transition);
    text-align: center;
}

.client-logo-item:hover {
    opacity: 1;
}

.client-logo-text {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.client-logo-sub {
    font-size: 9px;
    color: var(--text-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* =========================================
   SERVICES DETAIL GRID (Dark Cards)
   ========================================= */
.services-detail-section {
    padding: 80px 0;
    background: var(--white);
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-detail-card {
    background: var(--navy-dark);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.service-detail-card.orange-bg {
    background: var(--primary-orange);
}

.service-detail-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.service-detail-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-detail-card.orange-bg p {
    color: rgba(255,255,255,0.9);
}

.service-feature-list {
    list-style: none;
    margin-bottom: 20px;
}

.service-feature-list li {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-feature-list li::before {
    content: '●';
    color: var(--primary-orange);
    font-size: 8px;
    flex-shrink: 0;
}

.service-detail-card.orange-bg .service-feature-list li::before {
    color: rgba(255,255,255,0.7);
}

.service-detail-card .service-img {
    border-radius: 8px;
    height: 120px;
    object-fit: cover;
    width: 100%;
    margin-top: 15px;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-orange);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-learn-more:hover {
    background: #e55a00;
    color: var(--white);
    gap: 10px;
}

.service-detail-card.orange-bg .btn-learn-more {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.service-detail-card.orange-bg .btn-learn-more:hover {
    background: rgba(255,255,255,0.35);
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials-section {
    padding: 80px 0;
    background: var(--light-bg);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-hover-shadow);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 16px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.author-info .author-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.author-info .author-company {
    font-size: 12px;
    color: var(--text-gray);
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-contact-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.faq-section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 18px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-orange);
}

.faq-icon {
    width: 24px;
    height: 24px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--primary-orange);
}

.faq-item.active .faq-icon {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 0 18px;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

/* =========================================
   CONTACT FORM SECTION
   ========================================= */
.contact-form-wrapper {
    background: var(--white);
}

.contact-section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.contact-form {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

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

.form-control {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background: var(--white);
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition);
    appearance: none;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.form-control::placeholder {
    color: var(--text-light);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 15px;
    font-size: 16px;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    margin-top: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: rgba(255, 107, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    color: var(--primary-orange);
}

.contact-detail .contact-label {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 3px;
}

.contact-detail .contact-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-detail .contact-value a {
    color: var(--text-dark);
}

.contact-detail .contact-value a:hover {
    color: var(--primary-orange);
}

.social-links-contact {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-link-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
}

.social-link-btn.facebook { background: #1877f2; color: white; }
.social-link-btn.instagram { background: #e4405f; color: white; }
.social-link-btn.linkedin { background: #0a66c2; color: white; }
.social-link-btn.youtube { background: #ff0000; color: white; }

.social-link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: white;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: var(--navy-dark);
    color: var(--white);
}

.footer-top {
    padding: 70px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo .logo-yogi {
    color: var(--white);
}

.footer-logo .logo-seo {
    color: var(--primary-orange);
}

.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-heading {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact-icon {
    color: var(--primary-orange);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-text {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

.footer-contact-text a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.footer-contact-text a:hover {
    color: var(--primary-orange);
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 0;
    margin-top: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 8px 0 0 8px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 14px;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-btn {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 12px 18px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background: #e55a00;
}

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
}

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

.footer-copyright {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

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

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-orange);
}

/* =========================================
   PAGE HERO BANNER
   ========================================= */
.page-hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-medium) 100%);
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
}

.page-hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 25px;
    position: relative;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    position: relative;
}

.breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary-orange);
}

.breadcrumb .separator {
    color: var(--primary-orange);
}

.breadcrumb .current {
    color: var(--white);
}

/* =========================================
   CONTENT PAGES STYLES
   ========================================= */
.content-section {
    padding: 80px 0;
}

.content-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.feature-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-hover-shadow);
    border-color: var(--primary-orange);
}

.feature-card .feature-icon {
    width: 65px;
    height: 65px;
    border-radius: 15px;
    background: rgba(255, 107, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary-orange);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Process Steps */
.process-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-orange), var(--primary-orange));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-orange);
    color: var(--white);
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.4);
}

.process-step h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 13px;
    color: var(--text-gray);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c00 100%);
    padding: 70px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

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

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-hover-shadow);
}

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

.blog-card-content {
    padding: 25px;
}

.blog-category {
    display: inline-block;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary-orange);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.blog-card-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-content p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 12px;
    color: var(--text-light);
}

/* =========================================
   WORK/PORTFOLIO SECTION
   ========================================= */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.portfolio-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    group: true;
}

.portfolio-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-card:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, transparent 60%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 5px;
}

.portfolio-overlay p {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    margin: 0;
}

/* =========================================
   PRICING SECTION
   ========================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary-orange);
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 15px;
    border-radius: 50px;
    white-space: nowrap;
}

.pricing-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 5px;
}

.pricing-price span {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-gray);
}

.pricing-desc {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    font-size: 14px;
    color: var(--text-dark);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-features li.disabled {
    color: var(--text-light);
    text-decoration: line-through;
}

.pricing-features li.disabled::before {
    content: '✕';
    color: #ef4444;
}

/* =========================================
   SCROLL TO TOP
   ========================================= */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.4);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: #e55a00;
    transform: translateY(-3px);
}

/* =========================================
   ELEMENTOR COMPATIBILITY
   ========================================= */
.elementor-section {
    position: relative;
}

.elementor-widget-text-editor p:last-child {
    margin-bottom: 0;
}

/* Elementor specific overrides */
.elementor-kit-1 {
    --e-global-color-primary: var(--primary-orange);
    --e-global-color-secondary: var(--navy-dark);
    --e-global-color-accent: var(--primary-orange);
}

/* =========================================
   WOOCOMMERCE COMPATIBILITY
   ========================================= */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    border-top-color: var(--primary-orange);
    border-radius: var(--border-radius-sm);
    padding: 15px 20px;
    font-size: 14px;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero-title {
        font-size: 46px;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-dashboard {
        max-width: 550px;
        margin: 0 auto;
    }

    .about-inner {
        grid-template-columns: 1fr 1fr;
    }

    .about-image-wrapper {
        display: none;
    }

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

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

    .faq-contact-inner {
        grid-template-columns: 1fr;
    }

    .performance-inner {
        grid-template-columns: 1fr;
    }

    .performance-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 36px;
    }

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

    .section-title {
        font-size: 28px;
    }

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

    .about-inner {
        grid-template-columns: 1fr;
    }

    .services-detail-grid {
        grid-template-columns: 1fr;
    }

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

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

    .stats-row,
    .bottom-stats {
        grid-template-columns: 1fr 1fr;
    }

    .chart-row {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .content-grid-3 {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .process-steps::before {
        display: none;
    }

    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }

    .main-navigation {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        transform: translateX(-100%);
        transition: var(--transition);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        max-height: calc(100vh - 75px);
        overflow-y: auto;
    }

    .main-navigation.active {
        transform: translateX(0);
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-menu > li {
        width: 100%;
    }

    .nav-menu > li > a {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
        border-radius: 0;
    }

    .nav-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--light-bg);
        border-radius: var(--border-radius-sm);
        margin: 5px 0 10px;
        padding: 5px;
    }

    .partners-inner {
        gap: 25px;
    }

    .clients-logos {
        gap: 30px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn, .yogi-btn {
        width: 100%;
        justify-content: center;
    }

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

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

    .performance-stats {
        grid-template-columns: 1fr 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   UTILITY CLASSES
   ========================================= */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-orange { color: var(--primary-orange); }
.text-dark { color: var(--text-dark); }
.text-white { color: var(--white); }
.text-gray { color: var(--text-gray); }
.bg-dark { background: var(--navy-dark); }
.bg-light { background: var(--light-bg); }
.bg-orange { background: var(--primary-orange); }
.fw-bold { font-weight: 700; }
.fw-medium { font-weight: 500; }
.mb-0 { margin-bottom: 0; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-50 { margin-bottom: 50px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }

/* WordPress Alignment */
.alignleft { float: left; margin-right: 20px; margin-bottom: 10px; }
.alignright { float: right; margin-left: 20px; margin-bottom: 10px; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; margin-bottom: 10px; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--text-gray); text-align: center; margin-top: 5px; }

/* Screen reader text */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* Sticky post */
.sticky {
    border-left: 3px solid var(--primary-orange);
    padding-left: 20px;
}

/* WordPress Pagination */
.page-numbers {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.page-numbers a,
.page-numbers span {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: var(--transition);
}

.page-numbers a:hover,
.page-numbers .current {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--white);
}
