/*
Theme Name: Serpjolt
Theme URI: https://serpjolt.com
Author: Serpjolt
Author URI: https://serpjolt.com
Description: A bold, professional theme for Serpjolt Local SEO & PPC Agency. Dark theme with orange accents, optimized for lead generation.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: serpjolt
Tags: one-column, custom-menu, custom-logo, featured-images, theme-options, dark-mode
*/

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
    /* Brand Colors */
    --orange-500: #FF5500;
    --orange-400: #FF6600;
    --orange-300: #FF9500;
    
    /* Dark Theme */
    --dark-900: #0D1117;
    --dark-800: #161B22;
    --dark-700: #21262D;
    --dark-600: #30363D;
    
    /* Grays */
    --gray-400: #8B949E;
    --gray-300: #C9D1D9;
    --white: #FFFFFF;
    
    /* Status Colors */
    --success: #22C55E;
    --warning: #FFBD2E;
    --error: #FF5F56;
    
    /* Gradients */
    --gradient-orange: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-300) 100%);
    --gradient-dark: linear-gradient(180deg, var(--dark-900) 0%, var(--dark-800) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-orange: 0 10px 40px rgba(255, 85, 0, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 100px;
    
    /* Z-Index Scale */
    --z-base: 1;
    --z-dropdown: 10;
    --z-sticky: 50;
    --z-fixed: 100;
    --z-modal: 200;
    --z-overlay: 1000;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-900);
    color: var(--gray-300);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: var(--z-overlay);
}

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

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--orange-400);
    outline-offset: 2px;
}

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

ul, ol {
    list-style: none;
}

/* Selection */
::selection {
    background: var(--orange-400);
    color: var(--white);
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
}

h1 { font-size: clamp(3rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

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

.text-gradient {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-orange {
    color: var(--orange-400);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--gradient-orange);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
    color: var(--white);
}

.btn:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.btn:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--orange-400);
    color: var(--orange-400);
}

.btn-outline:hover {
    background: var(--orange-400);
    color: var(--white);
}

.btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    padding: 1.25rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(13, 17, 23, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 102, 0, 0.1);
    transition: padding var(--transition-base), background var(--transition-base);
}

.site-header.scrolled {
    padding: 1rem 4rem;
    background: rgba(13, 17, 23, 0.95);
}

.site-logo {
    height: 44px;
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.site-logo:hover {
    transform: scale(1.02);
}

.site-logo img,
.site-logo svg {
    height: 100%;
    width: auto;
}

.main-navigation {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.main-navigation a {
    color: var(--gray-300);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    position: relative;
    padding: 0.25rem 0;
}

.main-navigation a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-orange);
    transition: width var(--transition-base);
}

.main-navigation a:not(.btn):hover {
    color: var(--white);
}

.main-navigation a:not(.btn):hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: calc(var(--z-fixed) + 1);
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: transform var(--transition-base), opacity var(--transition-base);
    transform-origin: center;
}

.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-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 4rem 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: pulse 8s ease-in-out infinite;
}

.hero-gradient-1 {
    top: -200px;
    right: -200px;
    background: var(--orange-500);
}

.hero-gradient-2 {
    bottom: -300px;
    left: -200px;
    background: var(--orange-300);
    animation-delay: 4s;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 102, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 102, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* Hero Two-Column Layout */
.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    max-width: 800px;
    animation: fadeUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--orange-400);
    margin-bottom: 1.5rem;
    animation: fadeUp 1s ease-out 0.2s both;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-section h1 {
    margin-bottom: 1.5rem;
    animation: fadeUp 1s ease-out 0.3s both;
}

.hero-content > p {
    font-size: 1.25rem;
    color: var(--gray-400);
    max-width: 560px;
    margin-bottom: 2.5rem;
    animation: fadeUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp 1s ease-out 0.5s both;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--dark-600);
    animation: fadeUp 1s ease-out 0.6s both;
}

.stat {
    text-align: left;
}

.stat-value {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.stat-value span {
    color: var(--orange-400);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-top: 0.25rem;
}

/* ==========================================================================
   Hero Visual - Dashboard Mockup
   ========================================================================== */
.hero-visual {
    position: relative;
    animation: fadeUp 1s ease-out 0.3s both;
    z-index: var(--z-base);
}

.dashboard-mockup {
    background: var(--dark-800);
    border: 1px solid var(--dark-600);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 102, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform var(--transition-slow);
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.25rem;
    background: var(--dark-900);
    border-bottom: 1px solid var(--dark-600);
}

.dashboard-dots {
    display: flex;
    gap: 6px;
}

.dashboard-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--dark-600);
}

.dashboard-dots span:first-child { background: var(--error); }
.dashboard-dots span:nth-child(2) { background: var(--warning); }
.dashboard-dots span:last-child { background: var(--success); }

.dashboard-title {
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 500;
}

.dashboard-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Dashboard Stats Row */
.dash-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.dash-stat-card {
    background: var(--dark-900);
    border: 1px solid var(--dark-600);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dash-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dash-stat-icon.green {
    background: rgba(34, 197, 94, 0.15);
}

.dash-stat-icon.green svg {
    color: var(--success);
}

.dash-stat-icon.orange {
    background: rgba(255, 102, 0, 0.15);
}

.dash-stat-icon.orange svg {
    color: var(--orange-400);
}

.dash-stat-icon svg {
    width: 18px;
    height: 18px;
}

.dash-stat-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.dash-stat-value {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.dash-stat-label {
    font-size: 0.7rem;
    color: var(--gray-400);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dash-stat-change {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    flex-shrink: 0;
}

.dash-stat-change.positive {
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
}

/* Dashboard Chart */
.dash-chart-container {
    background: var(--dark-900);
    border: 1px solid var(--dark-600);
    border-radius: 10px;
    padding: 1rem;
}

.dash-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
}

.dash-chart-header span:first-child {
    color: var(--white);
    font-weight: 600;
}

.dash-chart-period {
    color: var(--gray-400);
    font-size: 0.7rem;
}

.dash-chart {
    height: 80px;
}

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

.chart-line {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawLine 2s ease-out forwards 0.5s;
}

.chart-area {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards 1s;
}

.chart-dot {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards 1.5s;
}

/* Dashboard Keywords */
.dash-keywords {
    background: var(--dark-900);
    border: 1px solid var(--dark-600);
    border-radius: 10px;
    padding: 1rem;
}

.dash-keywords-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
}

.dash-keywords-header span:first-child {
    color: var(--white);
    font-weight: 600;
}

.dash-keywords-count {
    color: var(--success);
    font-size: 0.7rem;
    font-weight: 600;
}

.dash-keyword-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--dark-700);
}

.dash-keyword-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.keyword-name {
    font-size: 0.75rem;
    color: var(--gray-300);
}

.keyword-rank {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.keyword-rank.rank-1 {
    background: rgba(255, 102, 0, 0.15);
    color: var(--orange-400);
}

.keyword-rank.rank-2 {
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
}

.keyword-rank.rank-3 {
    background: rgba(59, 130, 246, 0.15);
    color: #3B82F6;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--dark-800);
    border: 1px solid var(--dark-600);
    border-radius: var(--radius-md);
    padding: 0.875rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-md);
    animation: float 6s ease-in-out infinite;
    z-index: var(--z-dropdown);
}

.floating-card.card-reviews {
    top: -20px;
    right: -30px;
}

.floating-card.card-calls {
    bottom: 40px;
    left: -40px;
    animation-delay: 3s;
}

.floating-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 184, 0, 0.15);
}

.floating-icon svg {
    width: 20px;
    height: 20px;
}

.floating-icon.green {
    background: rgba(34, 197, 94, 0.15);
}

.floating-icon.green svg {
    color: var(--success);
}

.floating-content {
    display: flex;
    flex-direction: column;
}

.floating-value {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.floating-label {
    font-size: 0.7rem;
    color: var(--gray-400);
}

/* ==========================================================================
   Section Styles
   ========================================================================== */
.section {
    padding: 8rem 4rem;
    position: relative;
}

.section-dark {
    background: var(--dark-800);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange-400);
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-400);
}

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

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--dark-800);
    border: 1px solid var(--dark-600);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: transform 0.4s ease, border-color var(--transition-base), box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.section-dark .service-card {
    background: var(--dark-900);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 102, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--gradient-orange);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--orange-400);
    transition: color var(--transition-base);
}

.service-card:hover .service-icon svg {
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--gray-400);
    font-size: 1rem;
    line-height: 1.7;
}

/* ==========================================================================
   Results Section
   ========================================================================== */
.results-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange-400), transparent);
}

.results-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.results-text h2 {
    margin-bottom: 1.5rem;
}

.results-text > p {
    color: var(--gray-400);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.results-list {
    margin-bottom: 2rem;
}

.results-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--gray-300);
}

.results-list svg {
    width: 24px;
    height: 24px;
    color: var(--orange-400);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Chart Styles */
.chart-container {
    background: var(--dark-900);
    border: 1px solid var(--dark-600);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    position: relative;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.chart-title {
    font-weight: 600;
    color: var(--white);
}

.chart-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    background: rgba(34, 197, 94, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--success);
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 200px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--dark-600);
}

.chart-bar {
    flex: 1;
    background: var(--gradient-orange);
    border-radius: 6px 6px 0 0;
    position: relative;
    animation: growUp 1.5s ease-out forwards;
    transform-origin: bottom;
}

.chart-bar:nth-child(1) { height: 25%; animation-delay: 0.1s; }
.chart-bar:nth-child(2) { height: 35%; animation-delay: 0.2s; }
.chart-bar:nth-child(3) { height: 30%; animation-delay: 0.3s; }
.chart-bar:nth-child(4) { height: 50%; animation-delay: 0.4s; }
.chart-bar:nth-child(5) { height: 45%; animation-delay: 0.5s; }
.chart-bar:nth-child(6) { height: 65%; animation-delay: 0.6s; }
.chart-bar:nth-child(7) { height: 60%; animation-delay: 0.7s; }
.chart-bar:nth-child(8) { height: 80%; animation-delay: 0.8s; }
.chart-bar:nth-child(9) { height: 75%; animation-delay: 0.9s; }
.chart-bar:nth-child(10) { height: 95%; animation-delay: 1s; }
.chart-bar:nth-child(11) { height: 90%; animation-delay: 1.1s; }
.chart-bar:nth-child(12) { height: 100%; animation-delay: 1.2s; }

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* ==========================================================================
   Process Section
   ========================================================================== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--dark-600);
}

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

.step-number {
    width: 80px;
    height: 80px;
    background: var(--dark-800);
    border: 2px solid var(--dark-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Syne', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--orange-400);
    position: relative;
    z-index: var(--z-base);
    transition: all var(--transition-base);
}

.process-step:hover .step-number {
    background: var(--gradient-orange);
    border-color: var(--orange-400);
    color: var(--white);
    transform: scale(1.1);
}

.process-step h3 {
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--gray-400);
    font-size: 0.95rem;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: var(--orange-500);
    filter: blur(150px);
    opacity: 0.08;
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: var(--z-base);
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--gray-400);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    padding: 4rem;
    border-top: 1px solid var(--dark-600);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    height: 36px;
}

.footer-logo img,
.footer-logo svg {
    height: 100%;
    width: auto;
}

.footer-navigation ul {
    display: flex;
    gap: 2rem;
}

.footer-navigation a {
    color: var(--gray-400);
    font-size: 0.95rem;
}

.footer-navigation a:hover {
    color: var(--orange-400);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--dark-700);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: background var(--transition-base), color var(--transition-base);
}

.footer-social a:hover {
    background: var(--orange-400);
    color: var(--white);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-700);
    text-align: center;
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact-hero {
    padding: 10rem 4rem 4rem;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.contact-hero-content {
    position: relative;
    z-index: var(--z-base);
    max-width: 700px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--gray-400);
}

.contact-section {
    padding: 4rem;
    background: var(--dark-800);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info {
    padding: 2rem 0;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--gray-400);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-icon svg {
    width: 24px;
    height: 24px;
    color: var(--orange-400);
}

.contact-method-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-method-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-method-info a,
.contact-method-info span {
    font-size: 1.1rem;
    color: var(--white);
}

.contact-method-info a:hover {
    color: var(--orange-400);
}

.contact-hours {
    padding-top: 2rem;
    border-top: 1px solid var(--dark-600);
}

.contact-hours h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    color: var(--gray-300);
    font-size: 0.95rem;
}

.contact-hours li span {
    color: var(--gray-400);
}

/* Contact Form */
.contact-form-wrapper {
    display: flex;
    align-items: flex-start;
}

.contact-form-card {
    background: var(--dark-900);
    border: 1px solid var(--dark-600);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    width: 100%;
}

.contact-form-card h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* ==========================================================================
   Form Styles (Universal)
   ========================================================================== */
.serpjolt-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.serpjolt-contact-form .form-group {
    margin-bottom: 1.25rem;
}

.serpjolt-contact-form label,
.contact-form-card .wpcf7-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray-300);
    font-weight: 500;
    font-size: 0.95rem;
}

.serpjolt-contact-form input[type="text"],
.serpjolt-contact-form input[type="email"],
.serpjolt-contact-form input[type="tel"],
.serpjolt-contact-form select,
.serpjolt-contact-form textarea,
.contact-form-card .wpcf7-form input[type="text"],
.contact-form-card .wpcf7-form input[type="email"],
.contact-form-card .wpcf7-form input[type="tel"],
.contact-form-card .wpcf7-form select,
.contact-form-card .wpcf7-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--dark-800);
    border: 1px solid var(--dark-600);
    border-radius: 10px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.serpjolt-contact-form input:focus,
.serpjolt-contact-form select:focus,
.serpjolt-contact-form textarea:focus,
.contact-form-card .wpcf7-form input:focus,
.contact-form-card .wpcf7-form select:focus,
.contact-form-card .wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--orange-400);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.serpjolt-contact-form input::placeholder,
.serpjolt-contact-form textarea::placeholder {
    color: var(--gray-400);
}

.serpjolt-contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238B949E' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    padding-right: 3rem;
    cursor: pointer;
}

.serpjolt-contact-form select option {
    background: var(--dark-800);
    color: var(--white);
}

.serpjolt-contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.serpjolt-contact-form .btn,
.contact-form-card .wpcf7-form input[type="submit"] {
    width: 100%;
    padding: 1.1rem 2rem;
    font-size: 1.05rem;
    margin-top: 0.5rem;
    background: var(--gradient-orange);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.serpjolt-contact-form .btn:hover,
.contact-form-card .wpcf7-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

/* Form Messages */
.form-message {
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
}

.form-message.error {
    background: rgba(255, 95, 86, 0.1);
    border: 1px solid var(--error);
    color: var(--error);
}

.contact-form-card .wpcf7-response-output {
    margin: 1rem 0 0 !important;
    padding: 1rem !important;
    border-radius: var(--radius-sm) !important;
}

/* ==========================================================================
   WordPress Specific
   ========================================================================== */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 0.5rem;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.page-content {
    padding: 10rem 4rem 4rem;
    min-height: 60vh;
}

.page-content .container {
    max-width: 800px;
}

.page-content h1 {
    margin-bottom: 2rem;
}

.page-content p {
    color: var(--gray-300);
    font-size: 1.1rem;
}

/* ==========================================================================
   Animations (Single Definitions)
   ========================================================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.15; 
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.2; 
    }
}

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

@keyframes growUp {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

/* Scroll-triggered animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ==========================================================================
   Accessibility: Reduced Motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 1200px) {
    .hero-wrapper {
        gap: 3rem;
    }
    
    .floating-card.card-reviews {
        right: -10px;
    }
    
    .floating-card.card-calls {
        left: -20px;
    }
}

@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .dashboard-mockup {
        transform: none;
    }
    
    .dashboard-mockup:hover {
        transform: none;
    }
    
    .results-content {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps::before {
        display: none;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 1rem 1.5rem;
    }
    
    .site-header.scrolled {
        padding: 0.875rem 1.5rem;
    }

    .main-navigation {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--dark-900);
        padding: 6rem 2rem 2rem;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        z-index: var(--z-sticky);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--transition-base), visibility var(--transition-base);
    }

    .main-navigation.active {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .main-navigation li {
        width: 100%;
        border-bottom: 1px solid var(--dark-600);
    }
    
    .main-navigation a {
        display: block;
        padding: 1.25rem 0;
        font-size: 1.1rem;
    }
    
    .main-navigation a:not(.btn)::after {
        display: none;
    }
    
    .main-navigation .btn {
        margin-top: 1.5rem;
        width: 100%;
    }

    .menu-toggle {
        display: block;
    }
    
    .hero-visual {
        display: none;
    }

    .section,
    .hero-section {
        padding: 4rem 1.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-navigation ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 2rem;
    }

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

    .page-content {
        padding: 8rem 1.5rem 4rem;
    }
    
    .contact-hero {
        padding: 8rem 1.5rem 3rem;
    }
    
    .contact-section {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .serpjolt-contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.75rem; }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .dash-stats-row {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
    body::before,
    .hero-bg,
    .cta-bg,
    .hero-visual,
    .floating-card {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .site-header,
    .site-footer {
        display: none;
    }
    
    .section {
        padding: 2rem 0;
    }
}
/* Form Messages */
.form-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.form-message svg {
    flex-shrink: 0;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid #22C55E;
    color: #22C55E;
}

.form-message.error {
    background: rgba(255, 95, 86, 0.1);
    border: 1px solid #FF5F56;
    color: #FF5F56;
}
/* Hide hero visual on mobile */
@media (max-width: 768px) {
    .hero-visual {
        display: none !important;
    }
}