/*
 * Code 2 SEO - Main Stylesheet
 * Modern SEO Agency Website
 * Color Palette: Green theme inspired by reference design
 */

/* ===========================
   CSS Variables / Custom Properties
   =========================== */
:root {
    /* Primary Colors */
    --primary-dark: #1B4D3E;
    --primary: #2D6A4F;
    --primary-light: #40916C;

    /* Secondary Colors */
    --secondary: #52B788;
    --secondary-light: #74C69D;
    --accent: #95D5B2;
    --accent-light: #B7E4C7;
    --accent-lighter: #D8F3DC;

    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F8FAF9;
    --light-bg: #F1F8F4;
    --gray-100: #E9ECEF;
    --gray-200: #DEE2E6;
    --gray-300: #CED4DA;
    --gray-400: #ADB5BD;
    --gray-500: #6C757D;
    --gray-600: #495057;
    --gray-700: #343A40;
    --gray-800: #212529;
    --black: #000000;

    /* Text Colors */
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    --gradient-light: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-lighter) 100%);
    --gradient-hero: linear-gradient(135deg, #E8F5E9 0%, #F1F8F4 50%, #FFFFFF 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Spacing - Compact */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 0.875rem;
    --spacing-lg: 1.25rem;
    --spacing-xl: 1.75rem;
    --spacing-2xl: 2.5rem;
    --spacing-3xl: 3rem;
    --spacing-4xl: 4rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition: 300ms ease;
    --transition-slow: 500ms ease;

    /* Container */
    --container-max: 1280px;
    --container-padding: 1.5rem;
}

/* ===========================
   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: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

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

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: var(--white);
    padding: 8px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* ===========================
   Container
   =========================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

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

.text-accent {
    color: var(--secondary);
}

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

.section-subtitle {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 0.375rem;
}

.section-title {
    margin-bottom: var(--spacing-sm);
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.section-description {
    font-size: 0.9375rem;
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.6;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

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

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

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

.btn-white:hover {
    background: transparent;
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

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

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

/* ===========================
   Header & Navigation
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    transition: all var(--transition);
}

.header .container {
    position: static;
}

.header.scrolled {
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    position: static;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

.nav-link i {
    font-size: 0.625rem;
    transition: transform var(--transition-fast);
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-sm) 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    z-index: 100;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.dropdown-menu li a:hover {
    background: var(--light-bg);
    color: var(--primary);
    padding-left: 1.5rem;
}

.dropdown-menu .dropdown-header {
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--off-white);
}

.dropdown-menu .dropdown-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 0.5rem 0;
}

.dropdown-menu li a i {
    margin-right: 0.5rem;
    opacity: 0.7;
}

/* =====================================================
   MEGA MENU STYLES
   ===================================================== */

.has-mega-menu {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

/* Decorative top gradient line */
.mega-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--primary) 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Show on hover (CSS) or via JavaScript class */
.nav-item.has-mega-menu:hover > .mega-menu,
.nav-item.has-mega-menu.mega-open > .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.mega-menu-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Mega Menu Columns */
.mega-col {
    padding: 0.75rem;
    border-radius: 12px;
    transition: background 0.3s ease;
}

.mega-col:hover {
    background: rgba(37, 99, 235, 0.03);
}

.mega-col-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid transparent;
    background: linear-gradient(90deg, var(--primary), var(--secondary)) padding-box,
                linear-gradient(90deg, var(--primary), var(--secondary)) border-box;
    background-size: 0% 2px, 100% 2px;
    background-position: bottom left;
    background-repeat: no-repeat;
    transition: background-size 0.4s ease;
}

.mega-col:hover .mega-col-header {
    background-size: 100% 2px, 100% 2px;
}

.mega-col-header span {
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
    letter-spacing: -0.02em;
}

/* Animated SVG Icons */
.mega-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.mega-icon svg {
    width: 100%;
    height: 100%;
}

/* Chart Line Animation */
.mega-icon .chart-line {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 0.8s ease-out;
}

.mega-icon .chart-dot {
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease-out;
}

.has-mega-menu:hover .chart-line {
    stroke-dashoffset: 0;
}

.has-mega-menu:hover .chart-dot {
    opacity: 1;
    transform: scale(1);
}

.has-mega-menu:hover .dot-1 { transition-delay: 0.2s; }
.has-mega-menu:hover .dot-2 { transition-delay: 0.3s; }
.has-mega-menu:hover .dot-3 { transition-delay: 0.4s; }
.has-mega-menu:hover .dot-4 { transition-delay: 0.5s; }

/* Sound Wave Animation */
.mega-icon .sound-wave {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;
    transition: all 0.4s ease-out;
}

.has-mega-menu:hover .wave-1 {
    opacity: 0.6;
    transform: scaleX(1);
    transition-delay: 0.2s;
}

.has-mega-menu:hover .wave-2 {
    opacity: 0.4;
    transform: scaleX(1);
    transition-delay: 0.4s;
}

/* Text Lines Animation */
.mega-icon .text-line {
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    transition: stroke-dashoffset 0.5s ease-out;
}

.has-mega-menu:hover .line-1 { stroke-dashoffset: 0; transition-delay: 0.1s; }
.has-mega-menu:hover .line-2 { stroke-dashoffset: 0; transition-delay: 0.2s; }
.has-mega-menu:hover .line-3 { stroke-dashoffset: 0; transition-delay: 0.3s; }

.mega-icon .pencil {
    opacity: 0;
    transform: translate(5px, 5px);
    transition: all 0.3s ease-out 0.4s;
}

.has-mega-menu:hover .pencil {
    opacity: 1;
    transform: translate(0, 0);
}

/* Map Pin Animation */
.mega-icon .map-pin {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 0.6s ease-out;
}

.mega-icon .pin-dot {
    transform: scale(0);
    transition: transform 0.3s ease-out 0.4s;
}

.has-mega-menu:hover .map-pin {
    stroke-dashoffset: 0;
}

.has-mega-menu:hover .pin-dot {
    transform: scale(1);
}

/* Building Animation */
.mega-icon .building {
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.has-mega-menu:hover .b1 { transform: scaleY(1); transition-delay: 0.1s; }
.has-mega-menu:hover .b2 { transform: scaleY(1); transition-delay: 0.2s; }
.has-mega-menu:hover .b3 { transform: scaleY(1); transition-delay: 0.3s; }

/* Globe Animation */
.mega-icon .globe-circle {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 0.6s ease-out;
}

.mega-icon .globe-line {
    opacity: 0;
    transition: opacity 0.3s ease-out 0.4s;
}

.has-mega-menu:hover .globe-circle {
    stroke-dashoffset: 0;
}

.has-mega-menu:hover .globe-line {
    opacity: 1;
}

/* Briefcase Animation */
.mega-icon .briefcase-body,
.mega-icon .briefcase-handle {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 0.5s ease-out;
}

.has-mega-menu:hover .briefcase-body {
    stroke-dashoffset: 0;
}

.has-mega-menu:hover .briefcase-handle {
    stroke-dashoffset: 0;
    transition-delay: 0.2s;
}

/* Cart Animation */
.mega-icon .cart-body,
.mega-icon .cart-basket {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 0.5s ease-out;
}

.mega-icon .cart-wheel {
    transform: scale(0);
    transition: transform 0.3s ease-out;
}

.has-mega-menu:hover .cart-body,
.has-mega-menu:hover .cart-basket {
    stroke-dashoffset: 0;
}

.has-mega-menu:hover .cart-wheel {
    transform: scale(1);
}

.has-mega-menu:hover .w1 { transition-delay: 0.4s; }
.has-mega-menu:hover .w2 { transition-delay: 0.5s; }

/* Hotel Animation */
.mega-icon .hotel-roof {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    transition: stroke-dashoffset 0.4s ease-out;
}

.mega-icon .hotel-body {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 0.5s ease-out 0.2s;
}

.mega-icon .hotel-door {
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease-out 0.5s;
}

.has-mega-menu:hover .hotel-roof {
    stroke-dashoffset: 0;
}

.has-mega-menu:hover .hotel-body {
    stroke-dashoffset: 0;
}

.has-mega-menu:hover .hotel-door {
    transform: scaleY(1);
}

/* Rocket Animation */
.mega-icon .rocket-body {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 0.5s ease-out;
}

.mega-icon .rocket-window {
    transform: scale(0);
    transition: transform 0.3s ease-out 0.3s;
}

.mega-icon .flame {
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease-out 0.5s;
}

.has-mega-menu:hover .rocket-body {
    stroke-dashoffset: 0;
}

.has-mega-menu:hover .rocket-window {
    transform: scale(1);
}

.has-mega-menu:hover .flame {
    opacity: 1;
    transform: translateY(0);
    animation: flicker 0.3s ease-in-out infinite alternate;
}

@keyframes flicker {
    from { transform: translateY(0) scaleY(1); }
    to { transform: translateY(2px) scaleY(0.8); }
}

/* Magnifier Animation */
.mega-icon .magnifier-glass {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    transition: stroke-dashoffset 0.5s ease-out;
}

.mega-icon .magnifier-handle {
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    transition: stroke-dashoffset 0.3s ease-out 0.3s;
}

.has-mega-menu:hover .magnifier-glass {
    stroke-dashoffset: 0;
}

.has-mega-menu:hover .magnifier-handle {
    stroke-dashoffset: 0;
}

/* Instagram Animation */
.mega-icon .ig-border {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 0.5s ease-out;
}

.mega-icon .ig-lens {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    transition: stroke-dashoffset 0.4s ease-out 0.3s;
}

.mega-icon .ig-dot {
    transform: scale(0);
    transition: transform 0.2s ease-out 0.5s;
}

.has-mega-menu:hover .ig-border {
    stroke-dashoffset: 0;
}

.has-mega-menu:hover .ig-lens {
    stroke-dashoffset: 0;
}

.has-mega-menu:hover .ig-dot {
    transform: scale(1);
}

/* Checklist Animation */
.mega-icon .checklist-box {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 0.5s ease-out;
}

.mega-icon .check {
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    transition: stroke-dashoffset 0.3s ease-out 0.3s;
}

.mega-icon .check-line {
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    transition: stroke-dashoffset 0.3s ease-out;
}

.has-mega-menu:hover .checklist-box {
    stroke-dashoffset: 0;
}

.has-mega-menu:hover .check {
    stroke-dashoffset: 0;
}

.has-mega-menu:hover .cl1 { stroke-dashoffset: 0; transition-delay: 0.4s; }
.has-mega-menu:hover .cl2 { stroke-dashoffset: 0; transition-delay: 0.5s; }

/* Book Animation */
.mega-icon .book-cover {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 0.5s ease-out;
}

.mega-icon .book-spine {
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    transition: stroke-dashoffset 0.3s ease-out 0.4s;
}

.has-mega-menu:hover .book-cover {
    stroke-dashoffset: 0;
}

.has-mega-menu:hover .book-spine {
    stroke-dashoffset: 0;
}

/* Mega Menu Links */
.mega-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-links li {
    margin-bottom: 2px;
}

.mega-links li a {
    display: flex;
    align-items: center;
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    position: relative;
}

.mega-links li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 60%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 0 4px 4px 0;
    transition: width 0.25s ease;
}

.mega-links li a::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.6rem;
    margin-left: auto;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.25s ease;
    color: var(--primary);
}

.mega-links li a:hover {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.08);
    padding-left: 1rem;
}

.mega-links li a:hover::before {
    width: 3px;
}

.mega-links li a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.mega-links li a strong {
    color: var(--dark);
    font-weight: 600;
}

.mega-links li a:hover strong {
    color: var(--primary);
}

.mega-links .badge {
    font-size: 0.6rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    margin-left: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

/* Mega Featured Column */
.mega-col.mega-featured {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 50%, #fef3e7 100%);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
}

.mega-col.mega-featured::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.mega-featured-card {
    text-align: center;
    padding: 1.75rem 1.25rem;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.featured-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.featured-icon svg {
    width: 100%;
    height: 100%;
}

.featured-icon .pulse-ring {
    animation: pulse-ring 2s infinite;
}

.featured-icon .pulse-dot {
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

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

.mega-featured-card h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.mega-featured-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.mega-cta-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.mega-cta-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 0.5s ease;
}

.mega-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.mega-cta-btn:hover::before {
    left: 100%;
}

.mega-pricing-link,
.mega-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    background: var(--white);
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mega-pricing-link:hover,
.mega-view-all:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
}

.mega-pricing-link i,
.mega-view-all i {
    transition: transform 0.3s ease;
}

.mega-pricing-link:hover i,
.mega-view-all:hover i {
    transform: scale(1.1);
}

/* Mega Stats Card */
.mega-stats-card {
    display: flex;
    justify-content: space-around;
    padding: 1.25rem;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.mega-stat {
    text-align: center;
    position: relative;
    padding: 0 1rem;
}

.mega-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--gray-200), transparent);
}

.mega-stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.mega-stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Mega Industry CTA */
.mega-industry-cta {
    display: block;
    margin-top: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    text-align: center;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mega-industry-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
}

.mega-industry-cta span {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.mega-industry-cta strong {
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.mega-industry-cta strong::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.mega-industry-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.mega-industry-cta:hover strong::after {
    transform: translateX(4px);
}

/* Mega Tools Menu (Smaller) - positioned from nav item */
.nav-item.mega-sm {
    position: relative;
}

.mega-menu.mega-menu-sm {
    left: auto;
    right: 0;
    width: auto;
    min-width: 520px;
    border-radius: 0 0 16px 16px;
}

.mega-tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.mega-tool-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.mega-tool-card:hover {
    background: var(--white);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.2);
}

.tool-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: var(--white);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mega-tool-card:hover .tool-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.15);
}

.tool-icon svg {
    width: 100%;
    height: 100%;
}

.tool-info {
    flex: 1;
}

.tool-info strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.mega-tool-card:hover .tool-info strong {
    color: var(--primary);
}

.tool-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.tool-badge {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.35rem 0.6rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tool-badge.free {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.1));
    color: #059669;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.mega-resources-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mega-resources-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
}

.mega-resources-link i {
    transition: transform 0.3s ease;
}

.mega-resources-link:hover i {
    transform: rotate(-10deg) scale(1.1);
}

/* Mega Menu Responsive */
@media (max-width: 1200px) {
    .mega-menu-inner {
        padding: 1.5rem;
    }

    .mega-menu-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    /* Mobile mega menu - accordion style */
    .has-mega-menu .mega-menu {
        position: static !important;
        width: 100% !important;
        box-shadow: none;
        border-top: none;
        border-radius: 0;
        background: var(--gray-50);
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    /* Disable hover on mobile */
    .nav-item.has-mega-menu:hover > .mega-menu {
        max-height: 0;
    }

    /* Open on click via mega-open class */
    .nav-item.has-mega-menu.mega-open > .mega-menu {
        max-height: 2000px;
        overflow-y: auto;
    }

    .mega-menu-inner {
        padding: 1rem;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .mega-col.mega-featured {
        display: none;
    }

    .mega-col-header {
        padding-bottom: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .mega-links li a {
        padding: 0.4rem 0;
    }

    .mega-tools-grid {
        grid-template-columns: 1fr;
    }
}

.nav-cta {
    margin-left: var(--spacing-md);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    width: 30px;
    height: 30px;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    position: absolute;
    transition: all var(--transition-fast);
}

.hamburger {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hamburger::before {
    content: '';
    top: -8px;
}

.hamburger::after {
    content: '';
    top: 8px;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    padding: 6.5rem 0 3.5rem;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('../images/hero-pattern.svg') no-repeat right center;
    background-size: contain;
    opacity: 0.5;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.4rem 0.875rem;
    background: var(--accent-lighter);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
}

.hero-badge i {
    color: var(--secondary);
}

.hero h1 {
    margin-bottom: var(--spacing-md);
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
}

.hero h1 span {
    display: block;
    color: var(--secondary);
}

.hero-description {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    max-width: 500px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.hero-stats {
    display: flex;
    gap: var(--spacing-xl);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--gray-200);
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image img {
    width: 100%;
    height: auto;
}

/* Floating Cards in Hero */
.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.floating-card-1 {
    top: 10%;
    left: -30px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 20%;
    right: -30px;
    animation-delay: 1.5s;
}

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

/* ===========================
   Services Section
   =========================== */
.services {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Card Decoration - Top gradient bar */
.card-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10B981, #34D399);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

/* Color variants for card decoration */
.service-card[data-color="green"] .card-decoration { background: linear-gradient(90deg, #10B981, #34D399); }
.service-card[data-color="blue"] .card-decoration { background: linear-gradient(90deg, #3B82F6, #60A5FA); }
.service-card[data-color="orange"] .card-decoration { background: linear-gradient(90deg, #F59E0B, #FBBF24); }
.service-card[data-color="purple"] .card-decoration { background: linear-gradient(90deg, #8B5CF6, #A78BFA); }
.service-card[data-color="teal"] .card-decoration { background: linear-gradient(90deg, #14B8A6, #2DD4BF); }
.service-card[data-color="pink"] .card-decoration { background: linear-gradient(90deg, #EC4899, #F472B6); }

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

/* Service Icon Wrapper */
.service-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: var(--spacing-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    border-radius: 16px;
    font-size: 1.75rem;
    color: #10B981;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

/* Icon color variants */
.service-card[data-color="green"] .service-icon { background: linear-gradient(135deg, #E8F5E9, #C8E6C9); color: #10B981; }
.service-card[data-color="blue"] .service-icon { background: linear-gradient(135deg, #EFF6FF, #DBEAFE); color: #3B82F6; }
.service-card[data-color="orange"] .service-icon { background: linear-gradient(135deg, #FFF7ED, #FFEDD5); color: #F59E0B; }
.service-card[data-color="purple"] .service-icon { background: linear-gradient(135deg, #F5F3FF, #EDE9FE); color: #8B5CF6; }
.service-card[data-color="teal"] .service-icon { background: linear-gradient(135deg, #F0FDFA, #CCFBF1); color: #14B8A6; }
.service-card[data-color="pink"] .service-icon { background: linear-gradient(135deg, #FDF2F8, #FCE7F3); color: #EC4899; }

/* Icon Ring Animation */
.icon-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px dashed rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    opacity: 0;
    transition: all 0.4s ease;
    animation: none;
}

.service-card[data-color="green"] .icon-ring { border-color: rgba(16, 185, 129, 0.3); }
.service-card[data-color="blue"] .icon-ring { border-color: rgba(59, 130, 246, 0.3); }
.service-card[data-color="orange"] .icon-ring { border-color: rgba(245, 158, 11, 0.3); }
.service-card[data-color="purple"] .icon-ring { border-color: rgba(139, 92, 246, 0.3); }
.service-card[data-color="teal"] .icon-ring { border-color: rgba(20, 184, 166, 0.3); }
.service-card[data-color="pink"] .icon-ring { border-color: rgba(236, 72, 153, 0.3); }

.service-card:hover .icon-ring {
    opacity: 1;
    animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card[data-color="green"]:hover .service-icon { background: linear-gradient(135deg, #10B981, #34D399); color: white; }
.service-card[data-color="blue"]:hover .service-icon { background: linear-gradient(135deg, #3B82F6, #60A5FA); color: white; }
.service-card[data-color="orange"]:hover .service-icon { background: linear-gradient(135deg, #F59E0B, #FBBF24); color: white; }
.service-card[data-color="purple"]:hover .service-icon { background: linear-gradient(135deg, #8B5CF6, #A78BFA); color: white; }
.service-card[data-color="teal"]:hover .service-icon { background: linear-gradient(135deg, #14B8A6, #2DD4BF); color: white; }
.service-card[data-color="pink"]:hover .service-icon { background: linear-gradient(135deg, #EC4899, #F472B6); color: white; }

/* Service Content */
.service-content {
    flex: 1;
}

/* Service Badge */
.service-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    color: #10B981;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
}

.service-badge.hot {
    background: linear-gradient(135deg, #FEE2E2, #FECACA);
    color: #EF4444;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* Service Features List */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-md) 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.service-features li i {
    color: #10B981;
    font-size: 0.75rem;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
}

.service-card[data-color="blue"] .service-features li i { color: #3B82F6; background: rgba(59, 130, 246, 0.1); }
.service-card[data-color="orange"] .service-features li i { color: #F59E0B; background: rgba(245, 158, 11, 0.1); }
.service-card[data-color="purple"] .service-features li i { color: #8B5CF6; background: rgba(139, 92, 246, 0.1); }
.service-card[data-color="teal"] .service-features li i { color: #14B8A6; background: rgba(20, 184, 166, 0.1); }
.service-card[data-color="pink"] .service-features li i { color: #EC4899; background: rgba(236, 72, 153, 0.1); }

/* Service Link */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #10B981;
    margin-top: auto;
    padding-top: var(--spacing-sm);
    transition: all 0.3s ease;
}

.service-card[data-color="blue"] .service-link { color: #3B82F6; }
.service-card[data-color="orange"] .service-link { color: #F59E0B; }
.service-card[data-color="purple"] .service-link { color: #8B5CF6; }
.service-card[data-color="teal"] .service-link { color: #14B8A6; }
.service-card[data-color="pink"] .service-link { color: #EC4899; }

.link-arrow {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card[data-color="blue"] .link-arrow { background: rgba(59, 130, 246, 0.1); }
.service-card[data-color="orange"] .link-arrow { background: rgba(245, 158, 11, 0.1); }
.service-card[data-color="purple"] .link-arrow { background: rgba(139, 92, 246, 0.1); }
.service-card[data-color="teal"] .link-arrow { background: rgba(20, 184, 166, 0.1); }
.service-card[data-color="pink"] .link-arrow { background: rgba(236, 72, 153, 0.1); }

.link-arrow i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.service-link:hover .link-arrow {
    background: currentColor;
}

.service-link:hover .link-arrow i {
    transform: translateX(2px);
    color: white;
}

/* Card hover glow effect */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card[data-color="green"]::after { box-shadow: 0 0 40px rgba(16, 185, 129, 0.15); }
.service-card[data-color="blue"]::after { box-shadow: 0 0 40px rgba(59, 130, 246, 0.15); }
.service-card[data-color="orange"]::after { box-shadow: 0 0 40px rgba(245, 158, 11, 0.15); }
.service-card[data-color="purple"]::after { box-shadow: 0 0 40px rgba(139, 92, 246, 0.15); }
.service-card[data-color="teal"]::after { box-shadow: 0 0 40px rgba(20, 184, 166, 0.15); }
.service-card[data-color="pink"]::after { box-shadow: 0 0 40px rgba(236, 72, 153, 0.15); }

.service-card:hover::after {
    opacity: 1;
}

/* Service Tags */
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: var(--spacing-xl);
    justify-content: center;
}

.service-tag {
    padding: 0.4rem 0.875rem;
    background: var(--light-bg);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

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

/* ===========================
   Why Choose Us / Features
   =========================== */
.why-choose {
    padding: var(--spacing-3xl) 0;
    background: var(--light-bg);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.why-choose-content h2 {
    margin-bottom: var(--spacing-sm);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.why-choose-content > p {
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.feature-item {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--white);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.feature-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.feature-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-lighter);
    border-radius: var(--radius);
    color: var(--primary);
    font-size: 1rem;
}

.feature-content h4 {
    margin-bottom: 0.125rem;
    font-size: 0.9375rem;
}

.feature-content p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.8125rem;
    line-height: 1.5;
}

/* Why Choose Visual - Animated Dashboard */
.why-choose-visual {
    position: relative;
}

.visual-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: visible;
}

.dashboard-svg {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 80px rgba(27, 77, 62, 0.3);
}

/* Chart Animations */
.chart-area {
    opacity: 0;
    animation: fadeInChart 1s ease 0.3s forwards;
}

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

@keyframes fadeInChart {
    to { opacity: 1; }
}

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

.data-dot {
    opacity: 0;
    transform: scale(0);
    transform-origin: center;
    animation: popIn 0.4s ease forwards;
}

.data-dot:nth-child(1) { animation-delay: 0.8s; }
.data-dot:nth-child(2) { animation-delay: 1s; }
.data-dot:nth-child(3) { animation-delay: 1.2s; }
.data-dot:nth-child(4) { animation-delay: 1.4s; }
.data-dot:nth-child(5) { animation-delay: 1.6s; }
.data-dot:nth-child(6) { animation-delay: 1.8s; }

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.pulse-dot {
    animation: popIn 0.4s ease 1.8s forwards, pulseDot 2s ease-in-out 2.2s infinite;
}

@keyframes pulseDot {
    0%, 100% {
        filter: drop-shadow(0 0 0 rgba(255, 107, 0, 0));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 8px rgba(255, 107, 0, 0.6));
        transform: scale(1.2);
    }
}

.progress-bar {
    animation: progressFill 1.5s ease 1s forwards;
}

@keyframes progressFill {
    to { width: 98px; }
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.6rem 1rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    animation: floatBadge 3s ease-in-out infinite;
    z-index: 10;
}

.floating-badge .badge-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    color: var(--white);
    font-size: 0.75rem;
}

.floating-badge .badge-icon.orange {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8534 100%);
}

.badge-1 {
    top: -15px;
    right: -20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 60px;
    left: -30px;
    animation-delay: 1.5s;
}

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

/* Hover effects on visual */
.visual-container:hover .dashboard-svg {
    transform: scale(1.02);
    transition: transform 0.4s ease;
}

.visual-container:hover .floating-badge {
    animation-play-state: paused;
}

/* ===========================
   Stats Section
   =========================== */
.stats-section {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-primary);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    text-align: center;
}

.stats-item {
    padding: var(--spacing-md);
    position: relative;
}

.stats-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background: rgba(255,255,255,0.2);
}

.stats-number {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    display: block;
}

.stats-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ===========================
   Process Section - Enhanced
   =========================== */
.process {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% 100%;
    animation: gradientShift 4s ease infinite;
}

.process-timeline {
    position: relative;
    margin-top: var(--spacing-2xl);
}

.timeline-line {
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg,
        rgba(45, 106, 79, 0.1) 0%,
        rgba(45, 106, 79, 0.2) 25%,
        rgba(64, 145, 108, 0.2) 50%,
        rgba(45, 106, 79, 0.2) 75%,
        rgba(45, 106, 79, 0.1) 100%);
    border-radius: 4px;
    z-index: 0;
    overflow: visible;
}

.timeline-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--primary) 0px,
        var(--primary) 8px,
        transparent 8px,
        transparent 16px
    );
    transform: translateY(-50%);
    opacity: 0.4;
    animation: dashMove 20s linear infinite;
}

@keyframes dashMove {
    0% { background-position: 0 0; }
    100% { background-position: 200px 0; }
}

.timeline-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 20px;
    transform: translateY(-50%);
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(45, 106, 79, 0.15) 50%,
        transparent 100%);
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.process:hover .timeline-line::after {
    opacity: 1;
}

.timeline-progress {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% 100%;
    border-radius: 4px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 0 10px rgba(45, 106, 79, 0.4);
}

.timeline-progress::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(64, 145, 108, 0.3), 0 0 15px rgba(64, 145, 108, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease 1s;
}

.process:hover .timeline-progress {
    width: 100%;
    animation: gradientShift 2s ease infinite;
}

.process:hover .timeline-progress::after {
    opacity: 1;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.process-step {
    position: relative;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(45, 106, 79, 0.15);
    border-color: var(--accent);
}

.step-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.3);
    z-index: 2;
}

.step-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-lighter) 0%, var(--accent-light) 100%);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.step-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
    transition: all 0.4s ease;
}

.step-card:hover .step-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    transform: rotate(5deg) scale(1.05);
}

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

.step-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.step-subtitle {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(82, 183, 136, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    padding: 0.35rem 0;
    border-bottom: 1px dashed var(--gray-200);
}

.step-features li:last-child {
    border-bottom: none;
}

.step-features li i {
    color: var(--secondary);
    font-size: 0.65rem;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(82, 183, 136, 0.1);
    border-radius: 50%;
}

.step-connector {
    display: none;
}

/* Process Stats */
.process-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.process-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon-circle {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.25rem;
    box-shadow: 0 8px 20px rgba(45, 106, 79, 0.25);
    transition: all 0.3s ease;
}

.process-stat-item:hover .stat-icon-circle {
    transform: scale(1.1) rotate(10deg);
}

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

.stat-details .stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.stat-details .stat-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Step animations on scroll */
.process-step {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.process-step[data-step="1"] { animation-delay: 0.1s; }
.process-step[data-step="2"] { animation-delay: 0.2s; }
.process-step[data-step="3"] { animation-delay: 0.3s; }
.process-step[data-step="4"] { animation-delay: 0.4s; }

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

/* ===========================
   Testimonials
   =========================== */
.testimonials {
    padding: var(--spacing-3xl) 0;
    background: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.testimonial-quote {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    font-size: 3rem;
    color: var(--accent-light);
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-rating {
    display: flex;
    gap: 0.125rem;
    margin-bottom: var(--spacing-sm);
    color: #FFC107;
    font-size: 0.875rem;
}

.testimonial-text {
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.author-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.author-info p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ===========================
   Blog Section
   =========================== */
.blog-section {
    padding: var(--spacing-3xl) 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

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

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

.blog-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

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

.blog-category {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    padding: 0.25rem 0.625rem;
    background: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--primary);
}

.blog-content {
    padding: var(--spacing-md);
}

.blog-card h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.375rem;
    line-height: 1.4;
}

.blog-card h3 a {
    color: var(--text-primary);
}

.blog-card h3 a:hover {
    color: var(--primary);
}

.blog-excerpt {
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.875rem;
    line-height: 1.5;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* ===========================
   FAQ Section
   =========================== */
.faq-section {
    padding: var(--spacing-3xl) 0;
    background: var(--light-bg);
}

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

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-fast), transform var(--transition-fast);
    border: 1px solid transparent;
}

.faq-item:hover {
    box-shadow: var(--shadow);
    border-color: var(--accent-light);
}

.faq-item.active {
    border-color: var(--secondary);
}

.faq-question {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: all var(--transition-fast);
}

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

.faq-question i {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-lighter);
    border-radius: 50%;
    font-size: 0.625rem;
    transition: all var(--transition-fast);
}

.faq-item.active .faq-question i {
    background: var(--primary);
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--spacing-lg);
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item.active .faq-answer {
    padding-bottom: var(--spacing-md);
    max-height: 300px;
}

.faq-answer p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    padding: var(--spacing-2xl) 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.0625rem;
    max-width: 550px;
    margin: 0 auto var(--spacing-lg);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
}

.footer-cta {
    background: var(--primary);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    content: '';
    position: absolute;
    inset: 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");
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
    font-size: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.footer-main {
    padding: var(--spacing-2xl) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
    gap: var(--spacing-xl);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    margin: var(--spacing-md) 0;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.social-links {
    display: flex;
    gap: 0.375rem;
}

.social-links a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.footer-col h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-fast);
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-contact i {
    color: var(--secondary);
    margin-top: 3px;
    font-size: 0.875rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

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

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    font-size: 0.8125rem;
}

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8125rem;
}

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

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 9998;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

.back-to-top i {
    font-size: 1.25rem;
}

/* ===========================
   Page Header / Banner
   =========================== */
.page-header {
    padding: 7rem 0 3.5rem;
    background: linear-gradient(135deg, #f8fdf9 0%, #ecf7f0 50%, #e8f5ec 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 106, 79, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatSlow 20s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(64, 145, 108, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatSlow 15s ease-in-out infinite reverse;
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.05); }
}

.page-header .container {
    position: relative;
    z-index: 2;
}

/* Decorative grid pattern */
.page-header .container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    height: 150%;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(45, 106, 79, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
    opacity: 0.6;
}

.page-header h1 {
    margin-bottom: var(--spacing-sm);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.page-header p {
    font-size: 1.1rem;
    margin: 1.25rem auto 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Page header with icon badge */
.page-header .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(45, 106, 79, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(45, 106, 79, 0.15);
}

.page-header .header-badge i {
    font-size: 0.9rem;
}

/* CTA buttons in page header */
.page-header .header-actions {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

/* Stats bar below header */
.page-header .header-stats {
    display: flex;
    justify-content: left;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(45, 106, 79, 0.1);
}

.page-header .stat-item {
    text-align: center;
}

.page-header .stat-item .stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.page-header .stat-item .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 2.5rem;
    }

    .page-header h1 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .page-header h1::after {
        width: 50px;
        height: 3px;
    }

    .page-header p {
        font-size: 1rem;
    }

    .page-header .header-actions {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .page-header .header-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .page-header .header-stats {
        gap: var(--spacing-md);
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .page-header .stat-item {
        flex: 0 0 auto;
        min-width: 100px;
    }

    .page-header .stat-item .stat-number {
        font-size: 1.35rem;
    }

    .page-header .stat-item .stat-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 5.5rem 0 2rem;
    }

    .page-header .header-stats {
        gap: var(--spacing-sm);
    }

    .page-header .stat-item {
        min-width: 80px;
    }

    .page-header .stat-item .stat-number {
        font-size: 1.25rem;
    }
}

/* Breadcrumb */
.breadcrumb-nav {
    margin-bottom: var(--spacing-md);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    font-size: 0.9375rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: var(--spacing-sm);
    color: var(--gray-400);
}

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

.breadcrumb-item.active span {
    color: var(--text-muted);
}

/* ===========================
   Service Pages Common Styles
   =========================== */

/* Page Hero - Service Pages */
.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8fdf9 0%, #ecf7f0 50%, #e8f5ec 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(45, 106, 79, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatSlow 18s ease-in-out infinite;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(64, 145, 108, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatSlow 14s ease-in-out infinite reverse;
}

/* Decorative dot pattern for hero */
.page-hero .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(45, 106, 79, 0.04) 1px, transparent 0);
    background-size: 35px 35px;
    pointer-events: none;
    opacity: 0.8;
}

.service-hero {
    min-height: 400px;
    display: flex;
    align-items: center;
}

.service-hero .container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--spacing-xl);
    align-items: center;
}

.service-hero .breadcrumb {
    grid-column: 1 / -1;
    margin-bottom: var(--spacing-md);
}

.service-hero .hero-content {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(45, 106, 79, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(45, 106, 79, 0.2);
}

.hero-tag i {
    font-size: 0.875rem;
}

.service-hero h1 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.service-hero p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--dark);
    color: var(--dark);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition);
}

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

/* Section Tag */
.section-tag {
    display: inline-block;
    background: rgba(45, 106, 79, 0.1);
    color: var(--primary);
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-sm);
}

/* Service Hero Visual/SVG */
.hero-visual {
    width: 100%;
    height: auto;
    z-index: 1;
}

.hero-visual svg {
    width: 100%;
    height: auto;
    max-height: 320px;
}

@media (max-width: 1200px) {
    .service-hero .container {
        grid-template-columns: 1fr 350px;
    }
}

@media (max-width: 992px) {
    .page-hero {
        padding: 7rem 0 3rem;
    }

    .service-hero {
        min-height: auto;
    }

    .service-hero .container {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .service-hero .hero-content {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Service Intro Section */
.service-intro {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.service-intro .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.service-intro .intro-content h2 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
    color: var(--dark);
}

.service-intro .intro-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.service-intro .intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.service-intro .stat-card {
    background: var(--gradient-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--gray-100);
}

.service-intro .stat-card .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.service-intro .stat-card .stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.intro-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: var(--gradient-light);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    border: 2px dashed var(--gray-200);
}

.image-placeholder i {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.5;
}

.image-placeholder span {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Check List */
.check-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.check-list li i {
    color: var(--secondary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Services Detailed Section */
.services-detailed {
    padding: var(--spacing-2xl) 0;
    background: var(--light-bg);
}

.services-detailed .section-header {
    margin-bottom: var(--spacing-xl);
}

/* Pricing Section */
.pricing-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.pricing-section .section-header {
    margin-bottom: var(--spacing-xl);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    border: 1px solid var(--gray-200);
    text-align: center;
    position: relative;
    transition: all var(--transition);
}

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

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-card .badge,
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--dark);
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-header {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--gray-100);
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.pricing-card ul,
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-lg) 0;
    text-align: left;
}

.pricing-card ul li,
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.pricing-card ul li i,
.pricing-features li i {
    color: var(--secondary);
    font-size: 0.875rem;
}

.pricing-card .btn {
    width: 100%;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-block;
    text-decoration: none;
}

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

.btn-block {
    width: 100%;
    display: block;
    text-align: center;
}

/* Stats Section */
.stats-section {
    padding: var(--spacing-2xl) 0;
    background: var(--gradient-primary);
}

.stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.stats-section .stat-card {
    text-align: center;
    color: var(--white);
}

.stats-section .stat-card .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stats-section .stat-card .stat-label {
    font-size: 0.9375rem;
    opacity: 0.9;
}

/* Link Types Section (Off-Page SEO) */
.link-types-section {
    padding: var(--spacing-2xl) 0;
    background: var(--light-bg);
}

.link-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.link-type-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}

.link-type-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.link-type-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.link-type-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-sm);
}

.quality-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--gradient-light);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid var(--accent-light);
}

/* Checklist Grid (for categories) */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.checklist-category {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
}

.checklist-category h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary);
    color: var(--dark);
}

.checklist-category h4 i {
    color: var(--primary);
}

.checklist-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist-category ul li {
    padding: 0.375rem 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1rem;
}

.checklist-category ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary);
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-2xl) 0;
    background: var(--gradient-primary);
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.cta-section p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition);
}

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition);
}

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

/* Service CTA - alternate styling */
.service-cta {
    padding: var(--spacing-2xl) 0;
    background: var(--gradient-primary);
    text-align: center;
    color: var(--white);
}

.service-cta .cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.service-cta h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.service-cta p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
}

/* Intro Features List */
.intro-features {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.intro-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.intro-features li i {
    color: var(--secondary);
    flex-shrink: 0;
}

/* Service Offerings Section */
.service-offerings {
    padding: var(--spacing-2xl) 0;
    background: var(--light-bg);
}

.service-offerings .section-header {
    margin-bottom: var(--spacing-xl);
}

/* On-Page Checklist Section */
.onpage-checklist {
    padding: var(--spacing-2xl) 0;
    background: var(--light-bg);
}

.onpage-checklist .section-header {
    margin-bottom: var(--spacing-xl);
}

/* Link Types Section - alternate naming */
.link-types {
    padding: var(--spacing-2xl) 0;
    background: var(--light-bg);
}

/* Service Page Responsive */
@media (max-width: 992px) {
    .service-intro .intro-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

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

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

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

@media (max-width: 576px) {
    .service-intro .intro-stats {
        grid-template-columns: 1fr;
    }

    .link-types-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

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

/* ===========================
   Contact Page
   =========================== */
.contact-section {
    padding: var(--spacing-4xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-3xl);
}

.contact-info-card {
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
}

.contact-info-card h3 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.contact-info-card > p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
}

.contact-info-list {
    display: grid;
    gap: var(--spacing-lg);
}

.contact-info-item {
    display: flex;
    gap: var(--spacing-md);
}

.contact-info-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    flex-shrink: 0;
}

.contact-info-item h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-info-item p,
.contact-info-item a {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: grid;
    gap: var(--spacing-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.form-group label {
    font-weight: 500;
    color: var(--text-primary);
}

.form-group label span {
    color: #EF4444;
}

.form-control {
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

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

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

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

/* ===========================
   Blog Page
   =========================== */
.blog-page {
    padding: var(--spacing-4xl) 0;
}

.blog-page-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: var(--spacing-2xl);
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow);
}

.sidebar-widget h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--accent-light);
}

/* Search Widget */
.search-form {
    display: flex;
}

.search-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius) 0 0 var(--radius);
}

.search-form button {
    padding: 0 1rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 0 var(--radius) var(--radius) 0;
}

/* Category Widget */
.category-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
}

.category-list a:hover {
    color: var(--primary);
}

.category-count {
    background: var(--light-bg);
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
}

/* Recent Posts Widget */
.recent-posts li {
    display: flex;
    gap: var(--spacing-md);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.recent-posts li:last-child {
    border-bottom: none;
}

.recent-post-image {
    width: 80px;
    height: 60px;
    border-radius: var(--radius);
    object-fit: cover;
}

.recent-post-content h5 {
    font-size: 0.9375rem;
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.recent-post-content h5 a {
    color: var(--text-primary);
}

.recent-post-content h5 a:hover {
    color: var(--primary);
}

.recent-post-date {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Single Post */
.single-post {
    padding: var(--spacing-4xl) 0;
}

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

.post-header {
    margin-bottom: var(--spacing-2xl);
}

.post-category {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--accent-lighter);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.post-header h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: var(--spacing-lg);
}

.post-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    color: var(--text-muted);
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-featured-image {
    margin-bottom: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-content {
    font-size: 1.125rem;
    line-height: 1.8;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-md);
}

.post-content p {
    margin-bottom: var(--spacing-lg);
}

.post-content ul,
.post-content ol {
    margin: var(--spacing-lg) 0;
    padding-left: var(--spacing-xl);
}

.post-content li {
    margin-bottom: var(--spacing-sm);
    list-style: disc;
}

.post-content ol li {
    list-style: decimal;
}

.post-content blockquote {
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg) var(--spacing-xl);
    background: var(--light-bg);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.post-content blockquote p {
    font-style: italic;
    margin-bottom: 0;
}

/* Post Tags */
.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--gray-200);
}

.post-tags a {
    padding: 0.375rem 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.post-tags a:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===========================
   About Page
   =========================== */
.about-intro {
    padding: var(--spacing-4xl) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.about-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about-content h2 {
    margin-bottom: var(--spacing-lg);
}

.about-content p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

/* Team Section */
.team-section {
    padding: var(--spacing-4xl) 0;
    background: var(--light-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    text-align: center;
    transition: all var(--transition);
}

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

.team-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-md);
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition);
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    color: var(--primary);
}

.team-info {
    padding: var(--spacing-lg);
}

.team-info h4 {
    margin-bottom: 0.25rem;
}

.team-info p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ===========================
   Service Detail Page
   =========================== */
.service-detail {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--spacing-2xl);
    align-items: start;
}

.service-content {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

.service-content > p:first-of-type {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.8;
}

.service-content h2 {
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-sm);
    font-size: 1.35rem;
    color: var(--primary-dark);
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid var(--accent-light);
    display: inline-block;
}

.service-content h2:first-of-type {
    margin-top: 0;
}

.service-content h3 {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-content h3::before {
    content: '';
    width: 4px;
    height: 1.1rem;
    background: var(--secondary);
    border-radius: 2px;
}

.service-content p {
    margin-bottom: var(--spacing-md);
}

.service-content ul {
    margin: var(--spacing-md) 0;
    padding-left: 0;
    list-style: none;
}

.service-content li {
    margin-bottom: var(--spacing-xs);
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.service-content li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 0.75rem;
    transition: transform var(--transition-fast);
}

.service-content li:hover::before {
    transform: scale(1.2);
}

.service-content li:hover {
    color: var(--text-primary);
}

.service-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Highlight box for important content */
.service-content .highlight-box {
    background: var(--accent-lighter);
    border-left: 4px solid var(--secondary);
    padding: var(--spacing-md);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: var(--spacing-lg) 0;
}

/* Service Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    position: sticky;
    top: 100px;
}

.sidebar-services {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.sidebar-services h4 {
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.service-nav li {
    border-bottom: 1px solid var(--gray-200);
}

.service-nav li:last-child {
    border-bottom: none;
}

.service-nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.service-nav a:hover,
.service-nav a.active {
    color: var(--primary);
    padding-left: 0.375rem;
}

.service-nav a.active {
    font-weight: 600;
}

.service-nav a i {
    opacity: 0;
    font-size: 0.7rem;
    transition: opacity var(--transition-fast);
}

.service-nav a:hover i,
.service-nav a.active i {
    opacity: 1;
}

.sidebar-cta {
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.sidebar-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.sidebar-cta h4 {
    color: var(--white);
    margin-bottom: var(--spacing-xs);
    font-size: 1rem;
    position: relative;
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
    font-size: 0.85rem;
    line-height: 1.5;
    position: relative;
}

.sidebar-cta .btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
    position: relative;
}

/* ===========================
   Location Page
   =========================== */
.location-hero {
    padding: 8rem 0 4rem;
    background: var(--gradient-hero);
}

.location-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.location-content {
    padding: var(--spacing-4xl) 0;
}

.nearby-locations {
    padding: var(--spacing-3xl) 0;
    background: var(--light-bg);
}

.location-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
}

.location-link {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.location-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .hero-grid,
    .why-choose-grid,
    .about-grid,
    .location-hero-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

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

    .hero-description {
        margin: 0 auto var(--spacing-lg);
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .why-choose-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .badge-1 {
        right: 0;
    }

    .badge-2 {
        left: 0;
    }

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

    .features-list {
        grid-template-columns: 1fr;
    }

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

    .stats-item:nth-child(2)::after {
        display: none;
    }

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

    .timeline-line {
        display: none;
    }

    .process-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }

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

    .blog-page-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .blog-sidebar,
    .service-sidebar {
        order: -1;
    }

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

@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 4.5rem var(--spacing-lg) var(--spacing-lg);
        box-shadow: var(--shadow-xl);
        transition: right var(--transition);
        z-index: 100;
    }

    .nav-wrapper.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--gray-100);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: var(--spacing-md);
        max-height: 0;
        overflow: hidden;
    }

    .nav-item.dropdown-open .dropdown-menu {
        max-height: 500px;
    }

    .nav-cta {
        margin: var(--spacing-md) 0 0 0;
        width: 100%;
        text-align: center;
    }

    .hero {
        padding: 5.5rem 0 2.5rem;
    }

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

    .stats-item::after {
        display: none;
    }

    .stats-number {
        font-size: 1.75rem;
    }

    /* Visual Dashboard Mobile */
    .why-choose-visual {
        max-width: 100%;
    }

    .floating-badge {
        padding: 0.5rem 0.75rem;
        font-size: 0.7rem;
    }

    .floating-badge .badge-icon {
        width: 24px;
        height: 24px;
        font-size: 0.65rem;
    }

    .badge-1 {
        top: -10px;
        right: 10px;
    }

    .badge-2 {
        bottom: 40px;
        left: 10px;
    }

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

    .step-card {
        padding: 1.25rem;
    }

    .step-icon-wrapper {
        flex-direction: row;
        justify-content: flex-start;
        gap: 1rem;
    }

    .step-number {
        position: static;
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }

    .step-icon {
        width: 55px;
        height: 55px;
        border-radius: 14px;
    }

    .step-icon svg {
        width: 26px;
        height: 26px;
    }

    .process-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .process-stat-item {
        width: 100%;
        max-width: 280px;
        justify-content: flex-start;
        padding: 1rem;
        background: var(--white);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
    }

    .services-grid,
    .testimonials-grid,
    .blog-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

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

    .social-links {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

    h2 {
        font-size: 1.5rem;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--spacing-md);
        justify-content: center;
    }

    .stat-item {
        flex: 0 0 auto;
    }

    .stat-number {
        font-size: 1.5rem;
    }

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

    .hero-buttons .btn {
        width: 100%;
    }

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

/* ===========================
   Utility Classes
   =========================== */
.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: var(--spacing-sm) !important; }
.mb-2 { margin-bottom: var(--spacing-md) !important; }
.mb-3 { margin-bottom: var(--spacing-lg) !important; }
.mb-4 { margin-bottom: var(--spacing-xl) !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: var(--spacing-sm) !important; }
.mt-2 { margin-top: var(--spacing-md) !important; }
.mt-3 { margin-top: var(--spacing-lg) !important; }
.mt-4 { margin-top: var(--spacing-xl) !important; }

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   SEO Audit Tool Styles
   =========================== */

/* Audit Page Header */
.audit-header {
    background: var(--gradient-hero);
    padding: 6rem 0 3rem;
    text-align: center;
}

.audit-header h1 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.audit-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.audit-section {
    padding: 3rem 0;
}

/* Audit Form */
.audit-form-wrapper {
    margin: 0 auto;
}

.audit-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 2.5rem;
    border: 1px solid var(--gray-100);
}

.audit-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.audit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.audit-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.audit-form-header h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.audit-form-header p {
    color: var(--text-muted);
}

.url-input-wrapper {
    position: relative;
}

.url-input-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.1rem;
    z-index: 1;
    pointer-events: none;
    width: 1.5rem;
    text-align: center;
}

.url-input-wrapper input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: var(--transition);
}

.url-input-wrapper input::placeholder {
    color: var(--gray-400);
    opacity: 1;
}

.url-input-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

.audit-form .btn-block {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.audit-form .btn i {
    margin-right: 0.5rem;
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.form-note i {
    margin-right: 0.3rem;
    color: var(--secondary);
}

/* What We Check Grid */
.audit-checks {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-100);
}

.audit-checks h4 {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.check-item i {
    color: var(--secondary);
    font-size: 0.75rem;
}

/* Loading State */
.audit-loading {
    max-width: 500px;
    margin: 0 auto;
}

.loading-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 3rem;
    text-align: center;
}

.loading-animation {
    margin-bottom: 2rem;
}

.scanner {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    position: relative;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--gray-200);
}

.scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    animation: scan 1.5s ease-in-out infinite;
}

@keyframes scan {
    0%, 100% { top: 0; }
    50% { top: calc(100% - 3px); }
}

.loading-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.loading-card #loadingStatus {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.progress-bar {
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: width 0.3s ease;
    width: 0%;
}

.loading-checks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    text-align: left;
}

.loading-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.loading-check i {
    font-size: 0.6rem;
}

.loading-check.active {
    color: var(--primary);
    background: var(--light-bg);
}

.loading-check.active i {
    animation: pulse 1s infinite;
}

.loading-check.completed {
    color: var(--secondary);
}

.loading-check.completed i {
    color: var(--secondary);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Results Section */
.audit-results {
    max-width: 900px;
    margin: 0 auto;
}

.results-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 2rem;
    margin-bottom: 2rem;
    align-items: center;
}

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

.score-circle {
    width: 140px;
    height: 140px;
    position: relative;
}

.score-circle svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.score-bg {
    fill: none;
    stroke: var(--gray-200);
    stroke-width: 8;
}

.score-fill {
    fill: none;
    stroke: var(--secondary);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 1.5s ease;
}

.score-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.score-value span {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.score-value small {
    font-size: 1rem;
    color: var(--text-muted);
}

.score-label {
    margin-top: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
}

.score-label.excellent { background: #dcfce7; color: #166534; }
.score-label.good { background: #fef3c7; color: #92400e; }
.score-label.needs-work { background: #ffedd5; color: #c2410c; }
.score-label.poor { background: #fee2e2; color: #991b1b; }

.results-summary h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.analyzed-url {
    color: var(--primary);
    font-size: 0.9rem;
    word-break: break-all;
    text-decoration: none;
}

.analyzed-url:hover {
    text-decoration: underline;
}

.summary-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.summary-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.summary-stat i {
    font-size: 1rem;
}

.summary-stat.passed { color: #22c55e; }
.summary-stat.warnings { color: #f59e0b; }
.summary-stat.failed { color: #ef4444; }

/* Category Scores */
.category-scores {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-score-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid;
    transition: var(--transition);
}

.category-score-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.category-score-card.excellent { border-color: #22c55e; }
.category-score-card.good { border-color: #f59e0b; }
.category-score-card.needs-work { border-color: #f97316; }
.category-score-card.poor { border-color: #ef4444; }

.category-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    color: var(--primary);
}

.category-info {
    flex: 1;
}

.category-info h4 {
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.category-bar {
    height: 4px;
    background: var(--gray-200);
    border-radius: 2px;
    overflow: hidden;
}

.category-bar-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 1s ease;
}

.category-score {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Detailed Results */
.results-category {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 1rem;
    overflow: hidden;
}

.results-category .category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    cursor: pointer;
    background: var(--light-bg);
    transition: var(--transition);
}

.results-category .category-header:hover {
    background: var(--accent-lighter);
}

.results-category .category-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.results-category .category-title i {
    color: var(--primary);
    font-size: 1.1rem;
}

.results-category .category-title h3 {
    font-size: 1rem;
    color: var(--text-primary);
    margin: 0;
}

.category-badge {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.category-badge.excellent { background: #dcfce7; color: #166534; }
.category-badge.good { background: #fef3c7; color: #92400e; }
.category-badge.needs-work { background: #ffedd5; color: #c2410c; }
.category-badge.poor { background: #fee2e2; color: #991b1b; }

.category-toggle {
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.results-category.collapsed .category-toggle {
    transform: rotate(-90deg);
}

.results-category.collapsed .category-checks {
    display: none;
}

.category-checks {
    padding: 0.5rem;
}

.result-check {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.result-check:hover {
    background: var(--light-bg);
}

.result-check .check-icon {
    width: 24px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.result-check.passed .check-icon { color: #22c55e; }
.result-check.warning .check-icon { color: #f59e0b; }
.result-check.failed .check-icon { color: #ef4444; }
.result-check.info .check-icon { color: #6b7280; }

.check-content {
    flex: 1;
}

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

.check-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.check-status-badge {
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    font-weight: 600;
}

.check-status-badge.passed { background: #dcfce7; color: #166534; }
.check-status-badge.warning { background: #fef3c7; color: #92400e; }
.check-status-badge.failed { background: #fee2e2; color: #991b1b; }
.check-status-badge.info { background: var(--gray-100); color: var(--gray-600); }

.check-message {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

.check-value {
    display: inline-block;
    background: var(--gray-100);
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    word-break: break-all;
    max-width: 100%;
}

/* Lead Capture Card */
.lead-capture-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin: 2rem 0;
}

.lead-content {
    text-align: center;
    color: var(--white);
}

.lead-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.lead-content h3 i {
    margin-right: 0.5rem;
}

.lead-content > p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.lead-form {
    max-width: 500px;
    margin: 0 auto;
}

.lead-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.lead-form input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.lead-form .btn {
    width: 100%;
    background: var(--white);
    color: var(--primary-dark);
    border: none;
    padding: 0.9rem 2rem;
}

.lead-form .btn:hover {
    background: var(--accent-lighter);
    transform: translateY(-2px);
}

.lead-success {
    text-align: center;
    padding: 2rem;
}

.lead-success i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.lead-success h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Audit CTA */
.audit-cta {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: var(--radius-xl);
}

.audit-cta h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.audit-cta p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

/* Error State */
.audit-error {
    max-width: 500px;
    margin: 0 auto;
}

.error-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 3rem;
    text-align: center;
}

.error-card > i {
    font-size: 3rem;
    color: #ef4444;
    margin-bottom: 1rem;
}

.error-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.error-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* How It Works Section */
.how-it-works {
    padding: 3rem 0;
    background: var(--light-bg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem auto 1rem;
}

.step-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.step-card h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Styles for Audit Tool */
@media (max-width: 768px) {
    .audit-header h1 {
        font-size: 1.8rem;
    }

    .audit-form-card {
        padding: 1.5rem;
    }

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

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

    .results-header {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .score-circle {
        margin: 0 auto;
    }

    .summary-stats {
        justify-content: center;
    }

    .category-scores {
        grid-template-columns: 1fr;
    }

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

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

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

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

    .loading-checks {
        grid-template-columns: 1fr;
    }

    .check-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
}

/* ===========================
   Instagram Audit Tool Styles
   =========================== */

/* Instagram Brand Colors */
.instagram-audit .audit-icon,
.instagram-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram-audit .audit-header {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 50%, #fbcfe8 100%);
}

.instagram-lead {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram-scanner {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #E4405F;
}

.instagram-scanner .scanner-line {
    background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
}

/* Form Sections */
.form-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
}

.form-section h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.form-section h4 i {
    color: #E4405F;
}

.form-section-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.375rem;
}

.form-group input {
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: #E4405F;
    box-shadow: 0 0 0 3px rgba(228, 64, 95, 0.1);
}

.form-group input[type="number"] {
    -moz-appearance: textfield;
}

.form-group input[type="number"]::-webkit-outer-spin-button,
.form-group input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Input with prefix */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-prefix {
    position: absolute;
    left: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.input-wrapper input {
    padding-left: 2rem;
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.checkbox-item:hover {
    background: var(--gray-100);
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkbox-item .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.checkbox-item .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: white;
    opacity: 0;
    transition: var(--transition);
}

.checkbox-item input:checked + .checkmark {
    background: #E4405F;
    border-color: #E4405F;
}

.checkbox-item input:checked + .checkmark::after {
    opacity: 1;
}

.checkbox-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Engagement Highlight */
.engagement-highlight {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #fdf2f8, #fce7f3);
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.engagement-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.engagement-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #E4405F;
}

/* Analyzed Username */
.analyzed-username {
    color: #E4405F;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Category Header Right */
.category-header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Responsive for Instagram Form */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

/* ===========================
   Blog Page Styles
   =========================== */

/* Blog Page Layout */
.blog-page {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.blog-page-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--spacing-2xl);
    align-items: start;
}

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

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

/* Blog Card */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-light);
}

.blog-image {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
}

.blog-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

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

.blog-category {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: var(--spacing-md);
}

.blog-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.blog-card h3 a {
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.blog-card h3 a:hover {
    color: var(--primary);
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: var(--spacing-sm);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-meta {
    display: flex;
    gap: var(--spacing-md);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--accent-light);
}

/* Search Form */
.search-form {
    display: flex;
    gap: 0.5rem;
}

.search-form input {
    flex: 1;
    padding: 0.6rem 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.875rem;
    transition: border-color var(--transition-fast);
}

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

.search-form button {
    padding: 0 0.75rem;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    transition: background var(--transition-fast);
}

.search-form button:hover {
    background: var(--primary-dark);
}

/* Category List */
.category-list {
    list-style: none;
}

.category-list li {
    border-bottom: 1px solid var(--gray-100);
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.category-list a:hover,
.category-list a.active {
    color: var(--primary);
    padding-left: 0.5rem;
}

.category-count {
    background: var(--gray-100);
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: var(--light-bg);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    transition: all var(--transition-fast);
}

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

/* Recent Posts */
.recent-posts-list {
    list-style: none;
}

.recent-posts-list li {
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--gray-100);
}

.recent-posts-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-posts-list a {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.recent-posts-list img {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.recent-post-placeholder {
    width: 60px;
    height: 45px;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    flex-shrink: 0;
}

.recent-post-info {
    flex: 1;
    min-width: 0;
}

.recent-post-title {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-post-date {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: var(--spacing-2xl);
}

.pagination-numbers {
    display: flex;
    gap: 0.25rem;
}

.pagination-numbers a,
.pagination-numbers span {
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
}

.pagination-numbers a {
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.pagination-numbers a:hover,
.pagination-numbers a.active {
    background: var(--primary);
    color: var(--white);
}

.pagination-numbers .dots {
    color: var(--text-muted);
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
}

.no-posts i {
    font-size: 3rem;
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.no-posts h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.no-posts p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* ===========================
   Single Blog Post Styles
   =========================== */

.blog-post-page .post-header {
    padding: 6rem 0 2rem;
    background: var(--gradient-hero);
    border-bottom: 1px solid var(--accent-light);
}

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

.post-meta-top .post-category {
    position: static;
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.post-meta-top .post-category:hover {
    background: var(--primary-dark);
}

.blog-post-page h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.post-excerpt {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    display: block;
}

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

/* Featured Image */
.post-featured-image {
    margin-bottom: var(--spacing-2xl);
}

.post-featured-image figure {
    margin: 0;
}

.post-featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* Post Content Layout */
.post-content-wrapper {
    padding: var(--spacing-2xl) 0;
}

.post-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--spacing-2xl);
    align-items: start;
}

.post-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.post-content h2 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin: 2rem 0 1rem;
}

.post-content h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: 1.5rem 0 0.75rem;
}

.post-content p {
    margin-bottom: 1rem;
}

.post-content ul,
.post-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content ul li {
    list-style-type: disc;
}

.post-content ol li {
    list-style-type: decimal;
}

.post-content a {
    color: var(--primary);
    text-decoration: underline;
}

.post-content img {
    max-width: 100%;
    border-radius: var(--radius);
    margin: 1.5rem 0;
}

/* Post Tags */
.post-tags {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--gray-200);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.tags-label {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-right: 0.5rem;
}

/* Share Buttons */
.post-share {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--light-bg);
    border-radius: var(--radius-lg);
}

.share-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform var(--transition-fast);
}

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

.share-btn.twitter { background: #1DA1F2; }
.share-btn.facebook { background: #1877F2; }
.share-btn.linkedin { background: #0A66C2; }
.share-btn.whatsapp { background: #25D366; }
.share-btn.copy-link { background: var(--gray-500); }

/* Author Box */
.author-box {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.author-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-box-content h4 {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.author-box-content h5 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.author-box-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Post Navigation */
.post-navigation {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--gray-200);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.post-nav-link {
    padding: var(--spacing-md);
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.post-nav-link:hover {
    background: var(--accent-lighter);
}

.post-nav-link.next {
    text-align: right;
}

.nav-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.nav-title {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

/* Post Sidebar */
.post-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    position: sticky;
    top: 100px;
}

/* Table of Contents */
.toc-widget nav ul {
    list-style: none;
    padding: 0;
}

.toc-widget nav li {
    margin-bottom: 0.5rem;
}

.toc-widget nav li a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    display: block;
    padding: 0.25rem 0;
    transition: color var(--transition-fast);
}

.toc-widget nav li a:hover {
    color: var(--primary);
}

.toc-widget nav li.toc-sub {
    padding-left: 1rem;
}

.toc-widget nav li.toc-sub a {
    font-size: 0.8rem;
}

/* Related Posts */
.related-posts {
    padding: var(--spacing-2xl) 0;
    background: var(--light-bg);
}

.related-posts .section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

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

/* Responsive */
@media (max-width: 992px) {
    .blog-page-grid,
    .post-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar,
    .post-sidebar {
        position: static;
        order: -1;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sidebar-widget {
        flex: 1;
        min-width: 250px;
    }

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

@media (max-width: 768px) {
    .blog-grid,
    .related-posts .blog-grid {
        grid-template-columns: 1fr;
    }

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

    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .blog-sidebar,
    .post-sidebar {
        flex-direction: column;
    }

    .sidebar-widget {
        min-width: 100%;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .back-to-top,
    .sidebar,
    .post-sidebar,
    .blog-sidebar,
    .share-buttons,
    .post-navigation {
        display: none;
    }

    body {
        font-size: 12pt;
    }

    a {
        text-decoration: underline;
    }

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

/* ===========================
   LOCATION PAGES STYLES
   =========================== */

/* Location Index Page */
.locations-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4rem 0;
}

.locations-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.locations-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.locations-intro {
    padding: 4rem 0;
    background: var(--off-white);
}

.locations-intro h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.locations-intro p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.stat-item .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Location Cards Grid */
.locations-section {
    padding: 4rem 0;
}

.locations-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.locations-section .section-tag {
    display: inline-block;
    background: var(--accent-lighter);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.locations-section h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

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

.location-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.location-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.location-card .location-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-lighter);
    border-radius: 10px;
    color: var(--primary);
    font-size: 1.25rem;
}

.location-card .location-info h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.location-card .location-tagline {
    display: block;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.location-card .location-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.location-card .location-arrow {
    margin-left: auto;
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.location-card:hover .location-arrow {
    color: var(--primary);
    transform: translateX(3px);
}

.metro-section {
    background: var(--off-white);
}

.metro-card .location-icon {
    background: var(--primary);
    color: var(--white);
}

/* Local SEO Services Grid */
.local-seo-services {
    padding: 4rem 0;
    background: var(--white);
}

.local-seo-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.local-seo-services .service-item {
    text-align: center;
    padding: 2rem 1.5rem;
}

.local-seo-services .service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-lighter);
    border-radius: 16px;
    font-size: 1.75rem;
    color: var(--primary);
}

.local-seo-services h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.local-seo-services p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Location CTA */
.location-cta {
    padding: 4rem 0;
    background: var(--gradient-primary);
    text-align: center;
}

.location-cta h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.location-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

/* ===========================
   INDIVIDUAL CITY PAGE STYLES
   =========================== */

/* City Hero */
.city-hero {
    background: var(--gradient-primary);
    padding: 4rem 0;
    color: var(--white);
}

.city-hero .hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.city-hero .hero-tag i {
    margin-right: 0.5rem;
}

.city-hero h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.city-hero .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin-bottom: 2rem;
}

.city-hero .hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.city-hero .hero-stats .stat {
    text-align: center;
}

.city-hero .hero-stats .stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-light);
}

.city-hero .hero-stats .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.city-hero .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* City Intro Section */
.city-intro {
    padding: 4rem 0;
}

.city-intro .intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.city-intro h2 {
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.city-intro p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--text-secondary);
}

.check-list li i {
    color: var(--primary);
    margin-top: 0.25rem;
}

.city-intro .intro-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1;
    background: var(--gradient-light);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.image-placeholder span {
    font-size: 1rem;
    font-weight: 600;
}

/* City Services */
.city-services {
    padding: 4rem 0;
    background: var(--off-white);
}

.city-services .section-header.center {
    text-align: center;
    margin-bottom: 3rem;
}

.city-services h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.city-services > .container > p {
    color: var(--text-muted);
}

.city-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.city-services .service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.city-services .service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.city-services .service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-lighter);
    border-radius: 12px;
    font-size: 1.5rem;
    color: var(--primary);
}

.city-services .service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.city-services .service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Areas Served */
.areas-served {
    padding: 4rem 0;
}

.areas-served .section-header.center {
    text-align: center;
    margin-bottom: 3rem;
}

.areas-served h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.area-category {
    background: var(--off-white);
    padding: 1.5rem;
    border-radius: 12px;
}

.area-category h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent-lighter);
}

.area-category h4 i {
    margin-right: 0.5rem;
}

.area-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-category ul li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--gray-200);
}

.area-category ul li:last-child {
    border-bottom: none;
}

/* Industries Section */
.industries-section {
    padding: 4rem 0;
    background: var(--off-white);
}

.industries-section .section-header.center {
    text-align: center;
    margin-bottom: 2rem;
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.industry-tag {
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.industry-tag:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--accent-lighter);
}

/* Why Choose Us / Reasons Grid */
.why-choose-us {
    padding: 4rem 0;
}

.why-choose-us .section-header.center {
    text-align: center;
    margin-bottom: 3rem;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.reason-card {
    padding: 2rem;
    background: var(--off-white);
    border-radius: 12px;
    position: relative;
}

.reason-card .reason-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-lighter);
    line-height: 1;
    margin-bottom: 1rem;
}

.reason-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.reason-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

/* Testimonials */
.testimonials-section {
    padding: 4rem 0;
    background: var(--off-white);
}

.testimonials-section .section-header.center {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.testimonial-rating {
    color: #F59E0B;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    margin-right: 2px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 1rem;
    color: var(--text-primary);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

.faq-section .section-header.center {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--off-white);
}

.faq-question i {
    color: var(--gray-400);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.25rem 1.5rem;
    background: var(--off-white);
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* City CTA */
.city-cta {
    padding: 4rem 0;
    background: var(--gradient-primary);
    text-align: center;
}

.city-cta h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.city-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.city-cta .cta-contact {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 2rem;
    font-size: 0.95rem;
}

.city-cta .cta-contact a {
    color: var(--white);
}

/* Special Sections */
.seasonal-seo,
.textile-seo,
.silk-seo,
.saas-seo,
.bengali-seo,
.gopalpur-tourism {
    padding: 4rem 0;
    background: var(--off-white);
}

.seasons-grid,
.hubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.season-card,
.hub-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.season-card .season-icon,
.hub-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.season-card h3,
.hub-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.season-card p,
.hub-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.textile-content,
.silk-content,
.saas-content,
.bengali-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.textile-icon,
.silk-icon,
.saas-icon,
.bengali-icon {
    text-align: center;
}

.textile-icon i,
.silk-icon i,
.saas-icon i,
.bengali-icon i {
    font-size: 6rem;
    color: var(--accent);
    opacity: 0.6;
}

.ncr-coverage,
.mumbai-advantage,
.regional-advantage,
.tech-hubs {
    padding: 4rem 0;
    background: var(--off-white);
}

.ncr-grid,
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.ncr-card,
.adv-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.ncr-card h3,
.adv-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.ncr-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.adv-item .adv-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-lighter);
    border-radius: 12px;
    font-size: 1.5rem;
    color: var(--primary);
}

.tourism-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.tourism-services {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

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

.t-service i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}

.t-service span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Responsive for Location Pages */
@media (max-width: 992px) {
    .city-intro .intro-grid {
        grid-template-columns: 1fr;
    }

    .city-intro .intro-image {
        order: -1;
    }

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

    .textile-content,
    .silk-content,
    .saas-content,
    .bengali-content {
        grid-template-columns: 1fr;
    }

    .textile-icon,
    .silk-icon,
    .saas-icon,
    .bengali-icon {
        display: none;
    }
}

@media (max-width: 768px) {
    .city-hero h1 {
        font-size: 1.8rem;
    }

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

    .city-hero .hero-buttons {
        flex-direction: column;
    }

    .city-hero .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

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

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

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

    .tourism-services {
        gap: 1rem;
    }
}

/* ==========================================================================
   Newsletter Section Styles
   ========================================================================== */

.footer-newsletter {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 3rem 0;
    color: white;
}

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

.newsletter-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.newsletter-form {
    flex-shrink: 0;
}

.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input-group input[type="email"] {
    padding: 0.875rem 1.25rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    width: 280px;
    outline: none;
}

.newsletter-input-group input[type="email"]:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-input-group .btn {
    white-space: nowrap;
}

.newsletter-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    text-align: right;
}

.newsletter-success {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: white;
}

.newsletter-success i {
    color: var(--secondary);
    font-size: 1.5rem;
}

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

    .newsletter-text {
        margin-bottom: 1rem;
    }

    .newsletter-input-group {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-input-group input[type="email"] {
        width: 100%;
    }

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

/* Newsletter Section Enhancements */
.footer-newsletter {
    position: relative;
    overflow: hidden;
}

.footer-newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.footer-newsletter::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.newsletter-content {
    position: relative;
    z-index: 1;
}

.newsletter-input-group input[type="email"] {
    background: white;
    color: var(--text-primary);
}

.newsletter-input-group input[type="email"]::placeholder {
    color: var(--text-muted);
}

/* Body scroll lock when popup is open */
body.popup-open {
    overflow: hidden !important;
}

/* Exit Popup Enhancements */
.exit-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.exit-popup-form .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    font-weight: 600;
}

.exit-popup-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.3);
}

/* ==========================================================================
   Resources Page Styles
   ========================================================================== */

.resources-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.resources-hero h1 {
    color: white;
    margin-bottom: 1rem;
}

.resources-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.resources-intro {
    padding: 4rem 0 2rem;
}

.resources-intro .center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.resources-grid-section {
    padding: 2rem 0 4rem;
}

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

.resource-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.resource-card.coming-soon {
    opacity: 0.7;
}

.resource-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-popular {
    background: var(--secondary);
    color: var(--text-primary);
}

.badge-coming {
    background: var(--off-white);
    color: var(--text-secondary);
}

.resource-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-lighter);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.resource-icon i {
    font-size: 1.75rem;
    color: var(--primary);
}

.resource-content {
    flex: 1;
}

.resource-type {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.resource-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.resource-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.resource-action {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.resource-action .btn {
    width: 100%;
    justify-content: center;
}

.resources-request {
    background: var(--off-white);
    padding: 4rem 0;
}

.request-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.request-content h2 {
    margin-bottom: 1rem;
}

.request-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.resources-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.resources-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.resources-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

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

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

    .resources-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .resources-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ==========================================================================
   WhatsApp Floating Widget
   ========================================================================== */

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9997;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 2rem;
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px;
        right: 16px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float i {
        font-size: 1.5rem;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* ==========================================================================
   Exit Intent Popup
   ========================================================================== */

.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.exit-popup-overlay.active {
    display: flex;
}

.exit-popup {
    background: white;
    border-radius: 16px;
    max-width: 420px;
    width: 100%;
    position: relative;
    transform: scale(0.95);
    animation: popupIn 0.3s ease forwards;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@keyframes popupIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.exit-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: var(--off-white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
    z-index: 1;
}

.exit-popup-close:hover {
    background: var(--primary);
    color: white;
}

.exit-popup-content {
    padding: 2.5rem 2rem;
    text-align: center;
}

.exit-popup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.exit-popup-icon i {
    font-size: 2.5rem;
    color: white;
}

.exit-popup-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.exit-popup-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.exit-popup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.exit-popup-form input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.exit-popup-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary);
}

.exit-popup-form .btn-block {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
}

.exit-popup-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
    margin-bottom: 0;
}

@media (max-width: 480px) {
    .exit-popup-content {
        padding: 2rem 1.5rem;
    }

    .exit-popup-content h3 {
        font-size: 1.25rem;
    }

    .exit-popup-icon {
        width: 60px;
        height: 60px;
    }

    .exit-popup-icon i {
        font-size: 1.75rem;
    }
}

/* ==========================================================================
   Hero Slider Styles
   ========================================================================== */

.hero-slider {
    position: relative;
    padding: 6.5rem 0 3.5rem;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(82, 183, 136, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-slides {
    position: relative;
    min-height: 500px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.hero-slide .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.hero-slide .hero-content {
    position: relative;
    z-index: 1;
}

.hero-slide .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.4rem 0.875rem;
    background: var(--accent-lighter);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
}

.hero-slide .hero-badge i {
    color: var(--secondary);
}

.hero-slide h1 {
    margin-bottom: var(--spacing-md);
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
}

.hero-slide h1 span {
    display: block;
    color: var(--secondary);
}

.hero-slide .hero-description {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    max-width: 500px;
    line-height: 1.7;
}

.hero-slide .hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.hero-slide .hero-stats {
    display: flex;
    gap: var(--spacing-xl);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--gray-200);
}

.hero-slide .hero-image {
    position: relative;
    z-index: 1;
}

.hero-slide .hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-slide .hero-image img {
    width: 100%;
    height: auto;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    background: var(--secondary);
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Slider Arrows */
.slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
    z-index: 10;
}

.slider-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    color: var(--primary);
}

.slider-arrow:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.slider-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Floating cards animations */
.hero-slide .floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 3s ease-in-out infinite;
}

.hero-slide .floating-card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.hero-slide .floating-card-2 {
    bottom: 15%;
    left: -5%;
    animation-delay: 1.5s;
}

.hero-slide .floating-card-3 {
    top: 50%;
    right: -15%;
    animation-delay: 0.75s;
}

/* =====================================================
   ANIMATED CHART VISUALS FOR HERO SLIDER
   ===================================================== */

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.chart-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
}

/* Main Chart Card */
.chart-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.chart-card.main-chart {
    max-width: 320px;
    margin: 0 auto;
}

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

.chart-title {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.chart-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.chart-badge.positive {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.chart-badge.positive i {
    font-size: 0.65rem;
}

/* Bar Chart */
.bar-chart {
    height: 160px;
    display: flex;
    align-items: flex-end;
}

.bar-group {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    width: 100%;
    height: 100%;
    padding-bottom: 25px;
    position: relative;
}

.bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 6px 6px 0 0;
    position: relative;
    height: 0;
    transition: height 1s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 30px;
}

.hero-slide.active .bar {
    height: calc(var(--bar-height, 50) * 1.5px);
}

.bar:nth-child(1) { --bar-height: 30; animation-delay: 0.1s; }
.bar:nth-child(2) { --bar-height: 45; animation-delay: 0.2s; }
.bar:nth-child(3) { --bar-height: 40; animation-delay: 0.3s; }
.bar:nth-child(4) { --bar-height: 60; animation-delay: 0.4s; }
.bar:nth-child(5) { --bar-height: 75; animation-delay: 0.5s; }
.bar:nth-child(6) { --bar-height: 95; animation-delay: 0.6s; background: linear-gradient(180deg, var(--secondary) 0%, #e65100 100%); }

.bar-label {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: var(--gray);
    font-weight: 500;
}

/* Floating Stats */
.floating-stat {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.hero-slide.active .floating-stat {
    opacity: 1;
    transform: translateY(0);
}

.floating-stat.stat-1 {
    top: 10px;
    right: 20px;
    transition-delay: 0.3s;
}

.floating-stat.stat-2 {
    bottom: 60px;
    left: 0;
    flex-direction: row;
    gap: 0.75rem;
    transition-delay: 0.5s;
}

.floating-stat.stat-3 {
    bottom: 10px;
    right: 40px;
    transition-delay: 0.7s;
}

.floating-stat .stat-label {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 500;
    text-align: center;
}

/* Progress Ring */
.progress-ring {
    width: 70px;
    height: 70px;
    position: relative;
}

.progress-ring svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.ring-bg {
    fill: none;
    stroke: #e5e7eb;
    stroke-width: 8;
}

.ring-progress {
    fill: none;
    stroke: var(--primary);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active .ring-progress {
    stroke-dashoffset: 6;
}

.ring-progress.local {
    stroke: #4285F4;
}

.hero-slide.active .ring-progress.local {
    stroke-dashoffset: 0;
}

.ring-progress.roi {
    stroke: var(--secondary);
}

.hero-slide.active .ring-progress.roi {
    stroke-dashoffset: 14;
}

.ring-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}

/* Stat Icon */
.stat-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.stat-icon.maps {
    background: linear-gradient(135deg, #4285F4 0%, #1a73e8 100%);
}

.stat-icon.roi {
    background: linear-gradient(135deg, var(--secondary) 0%, #e65100 100%);
}

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

.stat-content .stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.stat-content .stat-text {
    font-size: 0.75rem;
    color: var(--gray);
}

/* Mini Line Chart */
.mini-line-chart {
    width: 80px;
    height: 35px;
}

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

.line-chart-path {
    fill: none;
    stroke: var(--primary);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active .line-chart-path {
    stroke-dashoffset: 0;
}

.text-success {
    color: #10b981;
}

/* =====================================================
   SLIDE 2: LOCAL SEO VISUALS
   ===================================================== */

.map-card {
    max-width: 300px;
    margin: 0 auto;
}

.map-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1rem;
}

.map-header i {
    font-size: 1.25rem;
    color: #4285F4;
}

.map-header span {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.map-rankings {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rank-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 10px;
    background: #f9fafb;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active .rank-item {
    opacity: 1;
    transform: translateX(0);
}

.hero-slide.active .rank-item.rank-1 { transition-delay: 0.3s; }
.hero-slide.active .rank-item.rank-2 { transition-delay: 0.5s; }
.hero-slide.active .rank-item.rank-3 { transition-delay: 0.7s; }

.rank-item.rank-1 {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.rank-position {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 28px;
}

.rank-info {
    flex: 1;
}

.rank-business {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    display: block;
    margin-bottom: 0.25rem;
}

.rank-stars {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    font-size: 0.7rem;
}

.rank-stars i {
    color: #fbbf24;
}

.rank-stars span {
    margin-left: 0.25rem;
    color: var(--gray);
    font-weight: 500;
}

.rank-stars.dim i {
    opacity: 0.5;
}

.rank-badge {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
}

.rank-badge.you {
    background: var(--primary);
    color: var(--white);
}

/* Calls Chart */
.calls-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 35px;
}

.calls-bar {
    width: 8px;
    background: linear-gradient(180deg, #4285F4 0%, #1a73e8 100%);
    border-radius: 3px;
    height: 0;
    transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active .calls-bar {
    height: var(--height);
}

.hero-slide.active .calls-bar:nth-child(1) { transition-delay: 0.8s; }
.hero-slide.active .calls-bar:nth-child(2) { transition-delay: 0.9s; }
.hero-slide.active .calls-bar:nth-child(3) { transition-delay: 1s; }
.hero-slide.active .calls-bar:nth-child(4) { transition-delay: 1.1s; }
.hero-slide.active .calls-bar:nth-child(5) { transition-delay: 1.2s; }

/* =====================================================
   SLIDE 3: DIGITAL MARKETING VISUALS
   ===================================================== */

.roi-card {
    max-width: 280px;
    margin: 0 auto;
}

.donut-chart-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
}

.donut-chart {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.donut-bg {
    fill: none;
    stroke: #e5e7eb;
    stroke-width: 15;
}

.donut-segment {
    fill: none;
    stroke-width: 15;
    stroke-linecap: round;
    stroke-dasharray: 0 251.2;
    transition: stroke-dasharray 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.donut-segment.seg-1 { stroke: var(--primary); }
.donut-segment.seg-2 { stroke: var(--secondary); }
.donut-segment.seg-3 { stroke: #10b981; }
.donut-segment.seg-4 { stroke: #8b5cf6; }

.hero-slide.active .donut-segment.seg-1 {
    stroke-dasharray: 88 251.2;
    stroke-dashoffset: 0;
}
.hero-slide.active .donut-segment.seg-2 {
    stroke-dasharray: 63 251.2;
    stroke-dashoffset: -88;
}
.hero-slide.active .donut-segment.seg-3 {
    stroke-dasharray: 50 251.2;
    stroke-dashoffset: -151;
}
.hero-slide.active .donut-segment.seg-4 {
    stroke-dasharray: 50 251.2;
    stroke-dashoffset: -201;
}

.donut-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.donut-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.donut-label {
    font-size: 0.75rem;
    color: var(--gray);
}

.donut-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.legend-item {
    font-size: 0.75rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.legend-item i {
    font-size: 0.5rem;
}

.legend-item i.seg-1 { color: var(--primary); }
.legend-item i.seg-2 { color: var(--secondary); }
.legend-item i.seg-3 { color: #10b981; }
.legend-item i.seg-4 { color: #8b5cf6; }

/* Channel Icons */
.channel-icons {
    display: flex;
    gap: 0.5rem;
}

.channel-icons i {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--white);
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active .channel-icons i {
    opacity: 1;
    transform: scale(1);
}

.hero-slide.active .channel-icons i:nth-child(1) { transition-delay: 0.8s; }
.hero-slide.active .channel-icons i:nth-child(2) { transition-delay: 0.9s; }
.hero-slide.active .channel-icons i:nth-child(3) { transition-delay: 1s; }
.hero-slide.active .channel-icons i:nth-child(4) { transition-delay: 1.1s; }

.channel-icons i.fa-google { background: #4285F4; }
.channel-icons i.fa-facebook-f { background: #1877f2; }
.channel-icons i.fa-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.channel-icons i.fa-linkedin-in { background: #0a66c2; }

/* =====================================================
   ENHANCED DASHBOARD CARD STYLES (Slide 1)
   ===================================================== */

.dashboard-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(229, 231, 235, 0.5);
    overflow: hidden;
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #2563eb, var(--secondary), #ff6b00);
    background-size: 300% 100%;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(229, 231, 235, 0.6);
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.title-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.title-icon svg {
    width: 22px;
    height: 22px;
    color: white;
}

.dashboard-title .chart-title {
    display: block;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.3;
}

.chart-subtitle {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 0.15rem;
}

/* Area Chart Styles */
.area-chart-wrapper {
    position: relative;
    height: 120px;
    margin-bottom: 1rem;
}

.area-chart {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.area-fill {
    opacity: 0;
    animation: fadeInArea 1s ease 0.3s forwards;
}

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

.hero-slide.active .area-fill {
    opacity: 1;
}

.hero-slide.active .area-line {
    stroke-dashoffset: 0;
}

@keyframes fadeInArea {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.data-point {
    opacity: 0;
    transform-origin: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active .data-point {
    opacity: 1;
}

.hero-slide.active .data-point:nth-child(1) { transition-delay: 0.6s; }
.hero-slide.active .data-point:nth-child(2) { transition-delay: 0.8s; }
.hero-slide.active .data-point:nth-child(3) { transition-delay: 1s; }
.hero-slide.active .data-point:nth-child(4) { transition-delay: 1.2s; }
.hero-slide.active .data-point:nth-child(5) { transition-delay: 1.4s; }
.hero-slide.active .data-point:nth-child(6) { transition-delay: 1.6s; }

.data-point:hover {
    transform: scale(1.4);
    filter: drop-shadow(0 0 8px rgba(37, 99, 235, 0.5));
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    padding: 0 0.25rem;
}

.chart-labels span {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Dashboard Stats Row */
.dashboard-stats {
    display: flex;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(229, 231, 235, 0.6);
}

.dash-stat {
    flex: 1;
    text-align: center;
    padding: 0.75rem 0.5rem;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.dash-stat:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.dash-stat.highlight {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.dash-stat-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.dash-stat.highlight .dash-stat-value {
    color: #2563eb;
}

.dash-stat-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* =====================================================
   GLASS CARD EFFECT
   ===================================================== */

.glass-card {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

/* =====================================================
   ADVANCED PROGRESS RING
   ===================================================== */

.progress-ring-advanced {
    position: relative;
    width: 80px;
    height: 80px;
}

.progress-ring-advanced svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ring-bg-advanced {
    fill: none;
    stroke: #e5e7eb;
    stroke-width: 8;
}

.ring-progress-advanced {
    fill: none;
    stroke: url(#ringGrad1);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active .ring-progress-advanced {
    stroke-dashoffset: 6;
}

.ring-glow {
    fill: none;
    stroke: url(#ringGrad1);
    stroke-width: 12;
    stroke-linecap: round;
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    opacity: 0.3;
    filter: blur(4px);
    transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active .ring-glow {
    stroke-dashoffset: 6;
}

.ring-content {
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    text-align: center;
    width: 70%;
    height: 70%;
}

.ring-content .ring-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    white-space: nowrap;
}

.ring-content .ring-label {
    font-size: 0.5rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
    margin-top: 3px;
    position: relative;
    top:12px;
    white-space: nowrap;
}

/* =====================================================
   FANCY STAT ICON
   ===================================================== */

.stat-icon-fancy {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
}

.stat-icon-fancy svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(251, 191, 36, 0.4));
}

/* =====================================================
   MINI SPARKLINE CHART
   ===================================================== */

.mini-sparkline {
    width: 80px;
    height: 35px;
    margin-bottom: 0.25rem;
}

.mini-sparkline svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.spark-line {
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
    transition: stroke-dashoffset 1.5s ease 0.5s;
}

.hero-slide.active .spark-line {
    stroke-dashoffset: 0;
}

.spark-dot {
    opacity: 0;
    transform: scale(0);
    transform-origin: center;
    transition: all 0.4s ease 2s;
}

.hero-slide.active .spark-dot {
    opacity: 1;
    transform: scale(1);
}

/* =====================================================
   STAT INFO & CHANGE
   ===================================================== */

.stat-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-info .stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.stat-change {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.15rem 0.4rem;
    border-radius: 20px;
}

.stat-change.positive {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.stat-change.positive i {
    font-size: 0.55rem;
}

/* =====================================================
   HERO DECORATIONS
   ===================================================== */

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-decoration.dec-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    animation: float 6s ease-in-out infinite;
}

.hero-decoration.dec-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
    bottom: -30px;
    left: -30px;
    animation: float 6s ease-in-out infinite 3s;
}

/* Floating animation for decorations */
@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

/* Pulse animation for data points */
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(37, 99, 235, 0); }
}

.data-point:last-child {
    animation: pulse 2s infinite 2s;
}

/* =====================================================
   SLIDE 2 & 3 ENHANCED STYLES
   ===================================================== */

/* Google Icon Variant */
.title-icon.google-icon {
    background: linear-gradient(135deg, #4285F4 0%, #1a73e8 100%);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.title-icon.google-icon i {
    color: white;
    font-size: 1.1rem;
}

/* ROI Icon Variant */
.title-icon.roi-icon {
    background: linear-gradient(135deg, var(--secondary) 0%, #ff6b00 100%);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.title-icon.roi-icon i {
    color: white;
    font-size: 1.1rem;
}

/* Progress Ring Variants */
.ring-progress-advanced.local {
    stroke: url(#ringGrad2);
}

.hero-slide.active .ring-progress-advanced.local {
    stroke-dashoffset: 0;
}

.ring-progress-advanced.roi {
    stroke: url(#ringGrad3);
}

.hero-slide.active .ring-progress-advanced.roi {
    stroke-dashoffset: 15;
}

/* Calls Chart Wrapper */
.calls-chart-wrapper {
    width: 80px;
    height: 40px;
    margin-bottom: 0.25rem;
}

.calls-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.call-bar {
    transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1), y 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active .call-bar:nth-child(2) { height: 12px; y: 28; transition-delay: 0.3s; }
.hero-slide.active .call-bar:nth-child(3) { height: 20px; y: 20; transition-delay: 0.4s; }
.hero-slide.active .call-bar:nth-child(4) { height: 22px; y: 18; transition-delay: 0.5s; }
.hero-slide.active .call-bar:nth-child(5) { height: 30px; y: 10; transition-delay: 0.6s; }
.hero-slide.active .call-bar:nth-child(6) { height: 35px; y: 5; transition-delay: 0.7s; }

.call-bar.highlight-bar {
    filter: drop-shadow(0 0 4px rgba(52, 168, 83, 0.5));
}

/* Channel Icons Fancy */
.channel-icons-fancy {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
}

.channel-icon-item {
    width: 28px;
    height: 28px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.channel-icon-item svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.hero-slide.active .channel-icon-item {
    opacity: 1;
    transform: scale(1);
}

.hero-slide.active .channel-icon-item:nth-child(1) { transition-delay: 0.8s; }
.hero-slide.active .channel-icon-item:nth-child(2) { transition-delay: 0.9s; }
.hero-slide.active .channel-icon-item:nth-child(3) { transition-delay: 1s; }
.hero-slide.active .channel-icon-item:nth-child(4) { transition-delay: 1.1s; }

.channel-icon-item:hover {
    transform: scale(1.15);
}

/* Enhanced Donut Chart */
.donut-chart-container.enhanced {
    margin: 1.25rem auto;
}

.donut-legend.enhanced {
    background: #f8fafc;
    padding: 0.75rem;
    border-radius: 10px;
    margin-top: 0.5rem;
}

.donut-legend.enhanced .legend-item {
    font-weight: 500;
}

/* Map Rankings Enhanced */
.map-card.dashboard-card .map-rankings {
    margin-top: 0;
}

.map-card.dashboard-card .dashboard-header {
    border-bottom: none;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
}

/* Hero slider responsive */
@media (max-width: 992px) {
    .hero-slide .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-slide .hero-content {
        order: 1;
    }

    .hero-slide .hero-image,
    .hero-slide .hero-visual {
        order: 2;
        margin-top: 2rem;
    }

    .hero-slide .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-slide .hero-buttons {
        justify-content: center;
    }

    .hero-slide .hero-stats {
        justify-content: center;
    }

    .slider-arrows {
        display: none;
    }

    .hero-visual {
        min-height: 380px;
    }

    .chart-container {
        height: 350px;
    }

    .floating-stat.stat-1 {
        top: 0;
        right: 0;
    }

    .floating-stat.stat-2 {
        bottom: 40px;
        left: auto;
        right: 0;
    }

    .floating-stat.stat-3 {
        bottom: 0;
        right: auto;
        left: 0;
    }

    /* Enhanced dashboard card responsive */
    .dashboard-card {
        max-width: 300px;
    }

    .dashboard-stats {
        gap: 0.5rem;
    }

    .dash-stat {
        padding: 0.5rem 0.25rem;
    }

    .progress-ring-advanced {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        padding: 5.5rem 0 3rem;
    }

    .hero-slides {
        min-height: 400px;
    }

    .hero-slide .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-slide .floating-card {
        display: none;
    }

    .hero-visual {
        min-height: 320px;
    }

    .chart-container {
        height: 300px;
        max-width: 100%;
    }

    .chart-card {
        padding: 1rem;
    }

    .chart-card.main-chart,
    .map-card,
    .roi-card {
        max-width: 280px;
    }

    .bar-chart {
        height: 120px;
    }

    .floating-stat {
        padding: 0.75rem;
        border-radius: 12px;
    }

    .progress-ring {
        width: 55px;
        height: 55px;
    }

    .ring-value {
        font-size: 0.85rem;
    }

    .stat-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .stat-content .stat-number {
        font-size: 1rem;
    }

    .donut-chart-container {
        width: 120px;
        height: 120px;
    }

    .donut-value {
        font-size: 1.25rem;
    }

    /* Enhanced dashboard card 768px */
    .dashboard-card {
        max-width: 260px;
        padding: 1rem;
    }

    .dashboard-header {
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }

    .title-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

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

    .dashboard-title .chart-title {
        font-size: 0.875rem;
    }

    .chart-subtitle {
        font-size: 0.65rem;
    }

    .area-chart-wrapper {
        height: 100px;
    }

    .dashboard-stats {
        padding-top: 0.75rem;
    }

    .dash-stat-value {
        font-size: 0.95rem;
    }

    .dash-stat-label {
        font-size: 0.55rem;
    }

    .progress-ring-advanced {
        width: 60px;
        height: 60px;
    }

    .ring-content .ring-value {
        font-size: 0.95rem;
    }

    .ring-label {
        font-size: 0.5rem;
    }

    .stat-icon-fancy {
        width: 38px;
        height: 38px;
    }

    .mini-sparkline {
        width: 65px;
        height: 28px;
    }

    .hero-decoration {
        display: none;
    }
}

@media (max-width: 576px) {
    .floating-stat.stat-1,
    .floating-stat.stat-2,
    .floating-stat.stat-3 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }

    .chart-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        height: auto;
    }

    .hero-visual {
        min-height: auto;
    }

    .chart-card {
        width: 100%;
        max-width: 100%;
    }

    .chart-card.main-chart,
    .map-card,
    .roi-card {
        max-width: 100%;
    }

    /* Enhanced dashboard card 576px */
    .dashboard-card {
        max-width: 100%;
    }

    .floating-stat.glass-card {
        padding: 0.75rem 1rem;
        flex-direction: row;
        gap: 0.75rem;
    }

    .floating-stat.stat-1 .progress-ring-advanced {
        width: 55px;
        height: 55px;
    }

    .floating-stat.stat-3 {
        flex-direction: column;
    }

    .dashboard-stats {
        flex-wrap: wrap;
    }

    .dash-stat {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 80px;
    }
}

/* ===========================
   Industry Pages
   =========================== */
.industry-header {
    padding: 7rem 0 3rem;
    background: linear-gradient(135deg, #f8fdf9 0%, #ecf7f0 50%, #e8f5ec 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.industry-header::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45, 106, 79, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatSlow 18s ease-in-out infinite;
}

.industry-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(64, 145, 108, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatSlow 14s ease-in-out infinite reverse;
}

.industry-header .container {
    position: relative;
    z-index: 2;
}

.industry-header .industry-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.25);
}

.industry-header .industry-icon i {
    font-size: 1.75rem;
    color: white;
}

.industry-header h1 {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

.industry-header p {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
    color: var(--text-secondary);
    line-height: 1.6;
}

.industry-header .header-actions {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.industry-header .industry-features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.industry-header .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.industry-header .feature-item i {
    color: var(--primary);
    font-size: 1rem;
}

/* Industry Services Grid */
.industry-services {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.industry-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.industry-service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}

.industry-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-light);
}

.industry-service-card .service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.1), rgba(64, 145, 108, 0.1));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.industry-service-card .service-icon i {
    font-size: 1.25rem;
    color: var(--primary);
}

.industry-service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--dark);
}

.industry-service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Industry Stats */
.industry-stats {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, #1B4D3E 0%, #164034 100%);
}

.industry-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.industry-stats .stat-box {
    text-align: center;
    color: #ffffff;
}

.industry-stats .stat-box i {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: #74c69d;
    display: block;
}

.industry-stats .stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.industry-stats .stat-box .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* Industry Content - Smaller Headings */
.industry-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--spacing-md);
}

.industry-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.industry-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.industry-content ul {
    margin-bottom: var(--spacing-md);
}

.industry-content ul li {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.industry-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.75rem;
}

/* Responsive Industry Pages */
@media (max-width: 992px) {
    .industry-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .industry-header {
        padding: 6rem 0 2.5rem;
    }

    .industry-header .industry-icon {
        width: 60px;
        height: 60px;
    }

    .industry-header .industry-icon i {
        font-size: 1.5rem;
    }

    .industry-header h1 {
        font-size: 1.5rem;
    }

    .industry-header .industry-features {
        gap: var(--spacing-md);
    }

    .industry-header .feature-item {
        font-size: 0.85rem;
    }

    .industry-stats .stat-box .stat-number {
        font-size: 2rem;
    }

    .industry-stats .stat-box i {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .industry-header .header-actions {
        flex-direction: column;
    }

    .industry-header .header-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .industry-stats .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-md);
    }

    .industry-stats .stat-box .stat-number {
        font-size: 1.75rem;
    }

    .industry-stats .stat-box .stat-label {
        font-size: 0.8rem;
    }

    .industry-stats .stat-box i {
        font-size: 1.5rem;
    }
}

/* ===========================
   Hero Section SVG Visuals
   =========================== */

/* Page Header with SVG Visual */
.page-header.with-visual {
    text-align: left;
}

.page-header.with-visual .container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--spacing-2xl);
    align-items: center;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header.with-visual .breadcrumb {
    justify-content: flex-start;
}

.page-header.with-visual .header-actions {
    justify-content: flex-start;
}

.page-header.with-visual .header-stats {
    justify-content: flex-start;
    border-top: none;
    padding-top: 0;
    margin-top: var(--spacing-lg);
}

.page-header.with-visual .stat-item {
    text-align: left;
    padding: var(--spacing-md) var(--spacing-lg);
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-100);
}

/* Position badge above SVG visual */
.page-header.with-visual .container {
    position: relative;
}

.page-header.with-visual .header-badge {
    position: absolute;
    top: 0rem;
    right: -224px;
    transform: translateX(50%);
    z-index: 10;
    white-space: nowrap;
}
.process-section h2, .services-detailed h2, .pricing-section h2, .process h2{ font-size:32px;}
.process-section{ padding:32px 0px;}
.page-hero-visual {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    border-radius: var(--radius-lg);
    margin-top: 2rem;
}

.page-hero-visual svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 30px rgba(45, 106, 79, 0.15));
    overflow: visible;
}

/* Industry Header with SVG Visual */
.industry-header.with-visual {
    text-align: left;
    padding: 6rem 0 3rem;
}

.industry-header.with-visual .container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: center;
}

.industry-header-content {
    position: relative;
    z-index: 2;
}

.industry-header.with-visual .breadcrumb {
    justify-content: flex-start;
    margin-bottom: 1rem;
}

.industry-header.with-visual .industry-icon {
    margin: 0 0 1rem;
}

.industry-header.with-visual h1 {
    text-align: left;
    margin-bottom: 1rem;
}

.industry-header.with-visual p {
    text-align: left;
    margin: 0 0 1.5rem;
    max-width: 100%;
}

.industry-header.with-visual .header-actions {
    justify-content: flex-start;
    margin-bottom: 1.5rem;
}

.industry-header.with-visual .industry-features {
    justify-content: flex-start;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.industry-header.with-visual .feature-item {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 0.85rem;
}

.industry-hero-visual {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    padding: 1rem;
}

.industry-hero-visual svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 25px rgba(45, 106, 79, 0.15));
    overflow: visible;
}

/* SVG Animation Keyframes */
@keyframes svgFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes svgPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes svgRotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes svgDash {
    to { stroke-dashoffset: -100; }
}

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

/* SVG Element Animations */
.svg-float {
    animation: svgFloat 4s ease-in-out infinite;
}

.svg-pulse {
    animation: svgPulse 2s ease-in-out infinite;
}

.svg-rotate {
    animation: svgRotateSlow 20s linear infinite;
    transform-origin: center;
}

.svg-dash {
    stroke-dasharray: 10 5;
    animation: svgDash 2s linear infinite;
}

.svg-grow {
    animation: svgGrow 3s ease-in-out infinite;
}

/* Responsive Hero Visual */
@media (max-width: 1100px) {
    .page-header.with-visual .container {
        grid-template-columns: 1fr 320px;
        gap: var(--spacing-xl);
    }

    .page-header.with-visual .header-badge {
        right: 160px;
    }

    .industry-header.with-visual .container {
        grid-template-columns: 1fr 300px;
        gap: var(--spacing-xl);
    }

    .page-hero-visual {
        max-width: 320px;
        height: 280px;
    }

    .industry-hero-visual {
        max-width: 300px;
        height: 260px;
    }
}

@media (max-width: 992px) {
    .page-header.with-visual .container,
    .industry-header.with-visual .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .page-header.with-visual,
    .industry-header.with-visual {
        text-align: center;
    }

    .industry-header.with-visual h1,
    .industry-header.with-visual p {
        text-align: center;
    }

    /* Reset badge to normal flow on mobile */
    .page-header.with-visual .header-badge {
        position: static;
        transform: none;
        margin-bottom: var(--spacing-sm);
    }

    .page-header.with-visual .breadcrumb,
    .page-header.with-visual .header-actions,
    .page-header.with-visual .header-stats,
    .industry-header.with-visual .breadcrumb,
    .industry-header.with-visual .header-actions,
    .industry-header.with-visual .industry-features {
        justify-content: center;
    }

    .page-header.with-visual .stat-item {
        text-align: center;
    }

    .industry-header.with-visual .industry-icon {
        margin: 0 auto var(--spacing-md);
    }

    .page-hero-visual,
    .industry-hero-visual {
        max-width: 350px;
        height: 280px;
        margin: var(--spacing-lg) auto 0;
        order: 2;
    }
}

@media (max-width: 768px) {
    .page-hero-visual,
    .industry-hero-visual {
        max-width: 300px;
        height: 240px;
    }
}

@media (max-width: 576px) {
    .page-hero-visual,
    .industry-hero-visual {
        max-width: 260px;
        height: 200px;
    }
}

/* ===========================
   Inner Pages Mobile Fixes
   =========================== */

/* Fix: Services Grid Icons on Mobile for Inner Pages */
@media (max-width: 768px) {
    .services-grid .service-card {
        padding: var(--spacing-lg);
    }

    .services-grid .service-card .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.35rem;
        border-radius: 12px;
        margin-bottom: var(--spacing-md);
    }

    .services-grid .service-card h3 {
        font-size: 1.1rem;
    }

    .services-grid .service-card p {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .services-grid .service-card {
        padding: var(--spacing-md);
        text-align: center;
    }

    .services-grid .service-card .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        border-radius: 10px;
        margin: 0 auto var(--spacing-sm);
    }

    .services-grid .service-card h3 {
        font-size: 1rem;
        margin-bottom: 0.375rem;
    }

    .services-grid .service-card p {
        font-size: 0.8125rem;
        line-height: 1.5;
    }

    .service-icon-wrapper {
        width: 50px;
        height: 50px;
        margin: 0 auto var(--spacing-sm);
    }
}

/* Fix: Stats Section Font Contrast on Inner Pages */
.stats-section,
.stats-section * {
    color: var(--white);
}

.stats-section .stat-card,
.stats-section .stat-item {
    color: var(--white);
}

.stats-section .stat-number,
.stats-section .stat-card .stat-number,
.stats-section .stat-item .stat-number {
    color: var(--white);
    font-weight: 700;
}

.stats-section .stat-label,
.stats-section .stat-card .stat-label,
.stats-section .stat-item .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

.stats-section h2,
.stats-section h3,
.stats-section p {
    color: var(--white);
}

/* Fix: Process Section on Inner Pages */

/* Inner Page Process Section - Simple Style (without step-card) */
.process-steps .process-step {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
    position: relative;
}

.process-steps .process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(45, 106, 79, 0.12);
    border-color: var(--primary-light);
}

.process-steps .process-step > .step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
    position: relative;
}

.process-steps .process-step > .step-number::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px dashed var(--primary-light);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.process-steps .process-step:hover > .step-number::after {
    opacity: 1;
    animation: spinRing 8s linear infinite;
}

@keyframes spinRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.process-steps .process-step > h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.process-steps .process-step:hover > h3 {
    color: var(--primary);
}

.process-steps .process-step > p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Inner Page Process Responsive */
@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .process-steps .process-step {
        padding: 1.5rem 1.25rem;
    }

    .process-steps .process-step > .step-number {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .process-steps .process-step > h3 {
        font-size: 1.1rem;
    }

    .process-steps .process-step > p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .process-steps .process-step {
        padding: 1.25rem 1rem;
    }

    .process-steps .process-step > .step-number {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
        margin-bottom: 0.875rem;
    }

    .process-steps .process-step > h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .process-steps .process-step > p {
        font-size: 0.8125rem;
        line-height: 1.5;
    }
}

/* Homepage Process Section - with step-card */
@media (max-width: 768px) {
    .process {
        padding: var(--spacing-2xl) 0;
    }

    .step-card {
        padding: var(--spacing-lg);
        text-align: center;
    }

    .step-icon-wrapper {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }

    .step-card .step-number {
        position: static;
        margin-bottom: var(--spacing-xs);
    }

    .step-icon {
        margin: 0 auto;
    }

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

    .step-content h3 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.875rem;
    }

    .timeline-line,
    .timeline-progress {
        display: none;
    }
}

@media (max-width: 480px) {
    .process {
        padding: var(--spacing-xl) 0;
    }

    .process .section-header h2 {
        font-size: 1.5rem;
    }

    .step-card {
        padding: var(--spacing-md);
    }

    .step-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }

    .step-icon svg {
        width: 24px;
        height: 24px;
    }

    .step-card .step-number {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .step-content h3 {
        font-size: 1rem;
        margin-bottom: 0.375rem;
    }

    .step-content p {
        font-size: 0.8125rem;
        line-height: 1.5;
    }

    .process-stats {
        gap: var(--spacing-md);
        margin-top: var(--spacing-lg);
        padding-top: var(--spacing-lg);
    }

    .process-stat-item {
        padding: 0.75rem;
    }

    .stat-icon-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .stat-value {
        font-size: 1.25rem;
    }

    .stat-text {
        font-size: 0.75rem;
    }
}

/* ============================================
   GOOGLE REVIEWS CAROUSEL SECTION
   ============================================ */
.google-reviews-section {
    padding: var(--spacing-section) 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.google-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.google-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.google-logo {
    flex-shrink: 0;
}

.google-rating-info h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 0.25rem 0;
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.overall-rating .rating-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
}

.overall-rating .stars {
    display: flex;
    gap: 2px;
}

.overall-rating .stars i {
    color: #FBBC05;
    font-size: 1.25rem;
}

.overall-rating .review-count {
    color: var(--gray);
    font-size: 0.9rem;
}

.btn-google {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #4285F4;
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-google:hover {
    background: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
    color: white;
}

/* Carousel Container */
.google-reviews-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviews-track-wrapper {
    overflow: hidden;
    flex: 1;
    border-radius: var(--radius-lg);
}

.reviews-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Review Card */
.google-review-card {
    flex: 0 0 calc(33.333% - 1rem);
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.google-review-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    margin-bottom: 1rem;
    position: relative;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
}

.reviewer-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 0.25rem 0;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.review-meta .stars {
    display: flex;
    gap: 1px;
}

.review-meta .stars i {
    color: #FBBC05;
    font-size: 0.875rem;
}

.review-date {
    color: var(--gray);
    font-size: 0.8rem;
}

.google-g {
    position: absolute;
    right: 0;
    top: 0;
    flex-shrink: 0;
}

.review-text {
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Carousel Navigation */
.carousel-nav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    color: var(--dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: scale(1.05);
}

.carousel-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-nav i {
    font-size: 1rem;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d0d0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dots .dot:hover {
    background: #a0a0a0;
}

.carousel-dots .dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .google-review-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 768px) {
    .google-reviews-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .google-brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .google-rating-info h2 {
        font-size: 1.5rem;
    }

    .overall-rating .rating-number {
        font-size: 1.5rem;
    }

    .google-review-card {
        flex: 0 0 calc(100% - 0rem);
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .carousel-nav.prev {
        position: absolute;
        left: 0;
        z-index: 10;
    }

    .carousel-nav.next {
        position: absolute;
        right: 0;
        z-index: 10;
    }

    .google-reviews-carousel {
        padding: 0 50px;
    }
}

@media (max-width: 480px) {
    .google-reviews-section {
        padding: var(--spacing-lg) 0;
    }

    .google-review-card {
        padding: 1.25rem;
    }

    .review-text {
        font-size: 0.9rem;
        -webkit-line-clamp: 5;
    }

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

/* ===========================
   Custom Pages Styles
   =========================== */
.custom-page-content {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.page-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.page-content-wrapper.full-width {
    max-width: 100%;
}

/* Typography within custom pages */
.page-content-wrapper h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.page-content-wrapper h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 2rem 0 1rem;
    line-height: 1.3;
}

.page-content-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.5rem 0 0.75rem;
}

.page-content-wrapper h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin: 1.25rem 0 0.5rem;
}

.page-content-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.page-content-wrapper ul,
.page-content-wrapper ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.page-content-wrapper li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.page-content-wrapper ul li {
    list-style-type: disc;
}

.page-content-wrapper ol li {
    list-style-type: decimal;
}

.page-content-wrapper a {
    color: var(--primary);
    text-decoration: underline;
    transition: var(--transition-fast);
}

.page-content-wrapper a:hover {
    color: var(--primary-dark);
}

.page-content-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
}

.page-content-wrapper blockquote {
    border-left: 4px solid var(--primary);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--light-bg);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--text-secondary);
}

.page-content-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.page-content-wrapper th,
.page-content-wrapper td {
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-200);
    text-align: left;
}

.page-content-wrapper th {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--primary-dark);
}

.page-content-wrapper tr:nth-child(even) {
    background: var(--off-white);
}

.page-content-wrapper code {
    background: var(--gray-100);
    padding: 0.2rem 0.4rem;
    border-radius: var(--radius-sm);
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.page-content-wrapper pre {
    background: var(--gray-800);
    color: var(--accent-light);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin: 1.5rem 0;
}

.page-content-wrapper pre code {
    background: transparent;
    padding: 0;
    color: inherit;
}

.page-content-wrapper hr {
    border: none;
    border-top: 2px solid var(--gray-200);
    margin: 2rem 0;
}

/* Reviewer company display */
.reviewer-company {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* Responsive custom pages */
@media (max-width: 768px) {
    .page-content-wrapper h1 {
        font-size: 2rem;
    }

    .page-content-wrapper h2 {
        font-size: 1.5rem;
    }

    .page-content-wrapper h3 {
        font-size: 1.25rem;
    }

    .page-content-wrapper p,
    .page-content-wrapper li {
        font-size: 1rem;
    }
}

/* ===========================
   SEO Glossary Page
   =========================== */
.glossary-hero {
    background: linear-gradient(135deg, #1B4D3E 0%, #2D6A4F 50%, #40916C 100%);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.glossary-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 20s ease-in-out infinite;
}

.glossary-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 15s ease-in-out infinite reverse;
}

.glossary-hero .container {
    position: relative;
    z-index: 2;
}

.glossary-hero .breadcrumb {
    margin-bottom: var(--spacing-md);
}

.glossary-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.glossary-hero .breadcrumb a:hover {
    color: var(--white);
}

.glossary-hero .breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.glossary-hero .hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.glossary-hero .hero-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.glossary-hero .hero-tag i {
    color: var(--white);
}

.glossary-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.glossary-hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Alphabet Navigation */
.glossary-nav-section {
    background: var(--white);
    padding: var(--spacing-lg) 0;
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--gray-100);
}

.alphabet-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.letter-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.letter-link:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 77, 62, 0.2);
}

/* Glossary Content */
.glossary-content {
    padding: var(--spacing-3xl) 0;
    background: var(--light-bg);
}

.glossary-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.glossary-section {
    margin-bottom: var(--spacing-2xl);
    scroll-margin-top: 150px;
}

.letter-header {
    margin-bottom: var(--spacing-lg);
}

.letter-header .letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(27, 77, 62, 0.3);
}

.terms-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.term-item {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.term-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.term-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.term-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Glossary CTA */
.glossary-cta {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: var(--white);
}

.glossary-cta .cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.glossary-cta h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.glossary-cta p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
}

/* Glossary Responsive */
@media (max-width: 768px) {
    .glossary-hero {
        padding: 6rem 0 3rem;
    }

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

    .glossary-nav-section {
        top: 60px;
        padding: var(--spacing-md) 0;
    }

    .letter-link {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }

    .letter-header .letter {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .term-item {
        padding: var(--spacing-md);
    }

    .term-item h3 {
        font-size: 1.1rem;
    }

    .term-item p {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .letter-link {
        width: 32px;
        height: 32px;
        font-size: 0.8125rem;
    }

    .alphabet-nav {
        gap: 0.375rem;
    }
}

/* ===========================
   SEO Checklist Page
   =========================== */
.checklist-hero {
    background: linear-gradient(135deg, #1B4D3E 0%, #2D6A4F 50%, #40916C 100%);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.checklist-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 20s ease-in-out infinite;
}

.checklist-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 15s ease-in-out infinite reverse;
}

.checklist-hero .container {
    position: relative;
    z-index: 2;
}

.checklist-hero .breadcrumb {
    margin-bottom: var(--spacing-md);
}

.checklist-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.checklist-hero .breadcrumb a:hover {
    color: var(--white);
}

.checklist-hero .breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.checklist-hero .hero-content {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.checklist-hero .hero-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.checklist-hero .hero-tag i {
    color: var(--white);
}

.checklist-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.checklist-hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.checklist-hero .hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Checklist Intro Section */
.checklist-intro {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.checklist-intro .intro-content.center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.checklist-intro h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--spacing-md);
}

.checklist-intro p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
}

.checklist-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
}

.checklist-stats .stat {
    text-align: center;
}

.checklist-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.checklist-stats .stat-label {
    display: block;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Checklist Main Section */
.checklist-main {
    padding: var(--spacing-3xl) 0;
    background: var(--light-bg);
}

.checklist-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

/* Checklist Category Card - Override for full page */
.checklist-main .checklist-category {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: all 0.3s ease;
}

.checklist-main .checklist-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.category-header {
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(27, 77, 62, 0.05) 0%, rgba(45, 106, 79, 0.03) 100%);
    border-bottom: 1px solid var(--gray-100);
}

.category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 12px rgba(27, 77, 62, 0.25);
}

.category-icon i {
    color: var(--white);
    font-size: 1.25rem;
}

.category-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.375rem;
}

.category-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.checklist-items {
    padding: var(--spacing-lg);
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.checklist-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.checklist-item:first-child {
    padding-top: 0;
}

.checklist-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--primary);
    cursor: pointer;
}

.checklist-item label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.5;
    cursor: pointer;
    transition: color 0.2s ease;
}

.checklist-item input[type="checkbox"]:checked + label {
    color: var(--text-muted);
    text-decoration: line-through;
}

.checklist-item:hover label {
    color: var(--dark);
}

/* Progress Box */
.checklist-progress {
    display: flex;
    justify-content: center;
}

.progress-box {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 400px;
    width: 100%;
    border: 2px solid var(--primary-light);
}

.progress-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--spacing-md);
}

.progress-bar {
    height: 12px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--spacing-sm);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius-full);
    transition: width 0.5s ease;
}

.progress-box p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.progress-box .btn-outline-primary {
    font-size: 0.875rem;
}

/* Checklist CTA */
.checklist-cta {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: var(--white);
}

.checklist-cta .cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.checklist-cta h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.checklist-cta p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
}

/* Checklist Responsive */
@media (max-width: 992px) {
    .checklist-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .checklist-hero {
        padding: 6rem 0 3rem;
    }

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

    .checklist-intro h2 {
        font-size: 1.5rem;
    }

    .checklist-stats {
        gap: var(--spacing-xl);
    }

    .checklist-stats .stat-number {
        font-size: 2rem;
    }

    .category-header {
        padding: var(--spacing-md);
    }

    .category-icon {
        width: 45px;
        height: 45px;
    }

    .category-icon i {
        font-size: 1.1rem;
    }

    .category-header h2 {
        font-size: 1.125rem;
    }

    .checklist-items {
        padding: var(--spacing-md);
    }

    .checklist-item label {
        font-size: 0.875rem;
    }

    .progress-box {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .checklist-hero .hero-buttons {
        flex-direction: column;
    }

    .checklist-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .checklist-stats .stat {
        padding: var(--spacing-sm) 0;
    }

    .checklist-cta .cta-buttons {
        flex-direction: column;
    }
}

/* ===========================
   Software Development Pages
   =========================== */

/* Common Hero Styles for Software/Mobile/Ecommerce */
.software-hero,
.mobile-hero,
.ecommerce-hero {
    background: linear-gradient(135deg, #1B4D3E 0%, #2D6A4F 50%, #40916C 100%);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.software-hero::before,
.mobile-hero::before,
.ecommerce-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 20s ease-in-out infinite;
}

.software-hero::after,
.mobile-hero::after,
.ecommerce-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 15s ease-in-out infinite reverse;
}

.software-hero .container,
.mobile-hero .container,
.ecommerce-hero .container {
    position: relative;
    z-index: 2;
}

.software-hero .breadcrumb a,
.mobile-hero .breadcrumb a,
.ecommerce-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.software-hero .breadcrumb a:hover,
.mobile-hero .breadcrumb a:hover,
.ecommerce-hero .breadcrumb a:hover {
    color: var(--white);
}

.software-hero .breadcrumb span,
.mobile-hero .breadcrumb span,
.ecommerce-hero .breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.software-hero .hero-content,
.mobile-hero .hero-content,
.ecommerce-hero .hero-content {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.software-hero .hero-tag,
.mobile-hero .hero-tag,
.ecommerce-hero .hero-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.software-hero h1,
.mobile-hero h1,
.ecommerce-hero h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.software-hero p,
.mobile-hero p,
.ecommerce-hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.software-hero .hero-buttons,
.mobile-hero .hero-buttons,
.ecommerce-hero .hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
}

/* Hero Stats Row */
.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.hero-stat .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.hero-stat .label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
}

/* Intro Visual - SVG Container */
.intro-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-visual svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Tech Stack Categories */
.tech-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.tech-category {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-100);
    text-align: center;
}

.tech-category h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary-light);
}

.tech-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: var(--spacing-sm);
    border-radius: var(--radius);
    background: var(--light-bg);
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.tech-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.tech-item span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Industries Grid */
.industries-served {
    padding: var(--spacing-3xl) 0;
    background: var(--light-bg);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: var(--spacing-md);
}

.industry-item {
    background: var(--white);
    padding: var(--spacing-lg) var(--spacing-sm);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.industry-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(27, 77, 62, 0.1);
}

.industry-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    display: block;
}

.industry-item span {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Service Features within Cards */
.service-card .service-features {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0 0;
    font-size: 0.875rem;
}

.service-card .service-features li {
    padding: 0.375rem 0;
    color: var(--text-secondary);
}

.service-card .service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: var(--spacing-md);
    color: var(--primary);
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.service-card .service-link:hover {
    gap: 0.75rem;
}

/* Software Stats Section */
.software-stats {
    background: linear-gradient(135deg, #1B4D3E 0%, #164034 100%);
}

/* App Types Section */
.app-types {
    padding: var(--spacing-3xl) 0;
    background: var(--light-bg);
}

.app-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.app-type-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
    position: relative;
}

.app-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.app-type-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 8px 30px rgba(27, 77, 62, 0.15);
}

.app-type-card .featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.app-type-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-type-icon i {
    font-size: 2rem;
    color: var(--white);
}

.app-type-icon.native-ios {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.app-type-icon.native-android {
    background: linear-gradient(135deg, #3DDC84 0%, #0C9D58 100%);
}

.app-type-icon.cross-platform {
    background: linear-gradient(135deg, #61DAFB 0%, #0088CC 100%);
}

.app-type-icon.pwa {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.app-type-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--spacing-sm);
}

.app-type-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.app-type-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: var(--spacing-md);
}

.app-type-features span {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.app-type-features span i {
    color: var(--secondary);
    margin-right: 0.5rem;
    font-size: 0.75rem;
}

.app-type-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
}

/* App Features Grid */
.app-features {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--spacing-md);
}

.feature-item {
    background: var(--light-bg);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(27, 77, 62, 0.1);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    display: block;
}

.feature-item span {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* E-commerce Platforms Grid */
.ecommerce-platforms {
    padding: var(--spacing-3xl) 0;
    background: var(--light-bg);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.platform-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
    position: relative;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.platform-card.featured {
    border: 2px solid var(--primary);
}

.platform-card .featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.platform-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}

.platform-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--spacing-sm);
}

.platform-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.platform-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: var(--spacing-lg);
}

.platform-features span {
    background: var(--light-bg);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.platform-features span i {
    color: var(--secondary);
    margin-right: 0.375rem;
}

.platform-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
}

/* E-commerce Features Categories */
.ecommerce-features {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.features-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.feature-category {
    background: var(--light-bg);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
}

.feature-category h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-category h4 i {
    font-size: 1rem;
}

.feature-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-category ul li {
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    border-bottom: 1px dashed var(--gray-100);
}

.feature-category ul li:last-child {
    border-bottom: none;
}

/* Software Pages Responsive */
@media (max-width: 1200px) {
    .tech-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .software-hero,
    .mobile-hero,
    .ecommerce-hero {
        padding: 7rem 0 3rem;
    }

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

    .intro-visual {
        order: -1;
    }

    .intro-visual svg {
        max-width: 300px;
    }

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

    .platforms-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .software-hero h1,
    .mobile-hero h1,
    .ecommerce-hero h1 {
        font-size: 1.75rem;
    }

    .hero-stats-row {
        gap: var(--spacing-lg);
    }

    .hero-stat .number {
        font-size: 1.5rem;
    }

    .tech-categories {
        grid-template-columns: 1fr;
    }

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

    .app-types-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .features-categories {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-stats-row {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .software-hero .hero-buttons,
    .mobile-hero .hero-buttons,
    .ecommerce-hero .hero-buttons {
        flex-direction: column;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

    .industry-item {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .industry-item i {
        font-size: 1.5rem;
    }

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