/* FixWordpress.dev - WordPress Fix Service Styles */

/* WordPress Admin Bar Fix */
body.admin-bar .emergency-banner {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .emergency-banner {
        top: 46px;
    }
}

body.admin-bar .header {
    top: 80px;
}

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

/* WordPress Core Overrides */
.wp-block-group__inner-container {
    max-width: 100%;
}

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

:root {
    /* WordPress Brand Colors */
    --wp-blue: #0073aa;
    --wp-dark: #23282d;
    
    /* Emergency/Urgent Colors */
    --danger-red: #dc2626;
    --danger-red-dark: #991b1b;
    --success-green: #22c55e;
    --warning-yellow: #fbbf24;
    
    /* Neutral Colors */
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0073aa, #005a87);
    --gradient-danger: linear-gradient(135deg, #dc2626, #991b1b);
    --gradient-success: linear-gradient(135deg, #22c55e, #16a34a);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: white;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Emergency Banner */
.emergency-banner {
    background: var(--gradient-danger);
    color: white;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.3s ease;
}

.emergency-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    text-align: center;
}

.emergency-banner .blink {
    animation: blink 1s infinite;
}

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

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.emergency-btn {
    background: white;
    color: var(--danger-red);
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.emergency-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Header */
.header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 48px;
    z-index: 999;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
    color: var(--wp-blue);
}

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

/* WordPress Menu Styles */
.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--wp-blue);
}

.nav-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 10px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,115,170,0.3);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gray-700);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
    overflow: hidden;
}

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

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-success);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--gray-900);
}

.text-danger {
    color: var(--danger-red);
    animation: shake 2s infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
}

.hero-subtitle {
    display: block;
    color: var(--wp-blue);
    margin-top: 10px;
}

.hero-description {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.checkmark {
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,115,170,0.3);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-xl {
    padding: 20px 40px;
    font-size: 20px;
}

.hero-stats {
    display: flex;
    gap: 30px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat strong {
    font-size: 24px;
    color: var(--wp-blue);
}

.stat span {
    font-size: 14px;
    color: var(--gray-600);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.broken-site-demo {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

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

.browser-window {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    overflow: hidden;
}

.browser-header {
    background: var(--gray-100);
    padding: 12px;
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #fbbf24; }
.dot.green { background: #22c55e; }

.browser-content {
    padding: 40px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

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

.error-message {
    animation: errorPulse 2s infinite;
}

@keyframes errorPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.95); opacity: 0.8; }
}

.error-icon {
    font-size: 48px;
    margin-bottom: 10px;
    display: block;
}

.error-message h3 {
    color: var(--danger-red);
    font-size: 20px;
}

.success-message {
    text-align: center;
    animation: successBounce 1s ease;
}

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

.success-icon {
    font-size: 48px;
    margin-bottom: 10px;
    display: block;
}

.success-message h3 {
    color: var(--success-green);
    font-size: 24px;
    margin-bottom: 10px;
}

.fix-animation {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.magic-wand {
    font-size: 32px;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Trust Section */
.trust-section {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid var(--gray-200);
}

.trust-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item img {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.trust-item:hover img {
    opacity: 1;
}

/* Problems Section */
.problems-section {
    padding: 80px 0;
    background: var(--gray-50);
}

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

.section-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.section-header p {
    font-size: 18px;
    color: var(--gray-600);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.problem-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    border: 2px solid transparent;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--wp-blue);
}

.problem-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.problem-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--gray-900);
}

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

.problem-urgent {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-danger);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.problem-common {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.problem-preventive {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background: white;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    overflow: hidden;
}

.form-header {
    background: var(--gradient-primary);
    color: white;
    padding: 40px;
    text-align: center;
}

.form-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.form-header p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.form-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
}

/* Form Progress */
.form-progress {
    display: flex;
    justify-content: space-between;
    padding: 30px 40px;
    border-bottom: 1px solid var(--gray-200);
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.progress-step.active {
    opacity: 1;
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s;
}

.progress-step.active .step-number {
    background: var(--gradient-primary);
    color: white;
}

.step-label {
    font-size: 14px;
    font-weight: 500;
}

/* Form Steps */
.form-step {
    display: none;
    padding: 40px;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.form-step h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--gray-900);
}

/* Issue Selector */
.issue-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.issue-option {
    cursor: pointer;
}

.issue-option input {
    display: none;
}

.issue-content {
    background: white;
    border: 2px solid #999;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    cursor: pointer;
}

.issue-content:hover {
    border-color: #666;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    background: #f8fbff;
}

.issue-option input:checked + .issue-content {
    background: var(--wp-blue);
    border-color: var(--wp-blue);
    color: white;
}

.issue-icon {
    font-size: 32px;
}

/* Form Groups */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--wp-blue);
    box-shadow: 0 0 0 3px rgba(0,115,170,0.1);
}

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

/* Urgency Selector */
.urgency-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.urgency-option input {
    display: none;
}

.urgency-content {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.urgency-content:hover {
    background: #f8fbff;
}

.urgency-option input:checked + .urgency-content {
    border: 2px solid var(--wp-blue);
    background: white;
    box-shadow: 0 4px 12px rgba(0,115,170,0.15);
}

.urgency-content.emergency .urgency-label {
    color: #ff0000;
    text-transform: uppercase;
    font-weight: 700;
}

.urgency-content.emergency {
    border-color: #e5e5e5;
}

.urgency-option input:checked + .urgency-content.emergency {
    background: rgba(220,38,38,0.05);
}

.urgency-content strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

.urgency-content span {
    font-size: 12px;
    color: var(--gray-600);
}

/* Service Selection */
.service-options {
    display: grid;
    gap: 15px;
}

.service-option input {
    display: none;
}

.service-content {
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.service-option input:checked + .service-content {
    border-color: var(--wp-blue);
    background: rgba(0,115,170,0.05);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.service-header strong {
    font-size: 18px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--wp-blue);
}

.service-content ul {
    list-style: none;
}

.service-content li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--gray-600);
}

/* Service Options Grid - Compact 3-column layout */
.service-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.service-option-compact {
    cursor: pointer;
    position: relative;
}

.service-option-compact input {
    display: none;
}

.service-content-compact {
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 120px;
    justify-content: center;
}

.service-content-compact:hover {
    border-color: #666;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.service-option-compact input:checked + .service-content-compact {
    border-color: #0073aa;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    box-shadow: 0 6px 20px rgba(0,115,170,0.15);
}

.service-content-compact strong {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.service-content-compact .price {
    font-size: 24px;
    font-weight: 700;
    color: #0073aa;
}

.service-content-compact .timeframe {
    font-size: 13px;
    color: #666;
    padding: 4px 8px;
    background: #f5f5f5;
    border-radius: 20px;
}

.service-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 600;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 12px 24px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--gray-200);
}

.btn-next,
.btn-submit {
    flex: 1;
    max-width: 300px;
    margin-left: auto;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.form-footer p {
    color: var(--gray-600);
    font-size: 14px;
    margin: 5px 0;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s;
    border: 2px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 600px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: var(--wp-blue);
}

.pricing-card.featured {
    border-color: var(--wp-blue);
    box-shadow: 0 10px 40px rgba(0,115,170,0.15);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 10px;
}

.currency {
    font-size: 20px;
    margin-top: 10px;
    margin-right: 2px;
}

.amount {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.price-description {
    color: var(--gray-600);
    font-size: 14px;
}

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

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--gray-100);
}

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

.check {
    flex-shrink: 0;
}

.btn-outline {
    width: 100%;
    background: transparent;
    color: var(--wp-blue);
    padding: 12px 24px;
    border: 2px solid var(--wp-blue);
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.pricing-footer {
    text-align: center;
    color: var(--gray-600);
    font-size: 14px;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: white;
}

.process-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.step-icon {
    font-size: 48px;
    margin: 20px 0;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

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

.process-arrow {
    font-size: 32px;
    color: var(--gray-300);
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stars {
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 20px;
}

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

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    margin-bottom: 2px;
}

.testimonial-author span {
    color: var(--gray-600);
    font-size: 14px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--gray-50);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--wp-blue);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.faq-item p {
    color: var(--gray-600);
    line-height: 1.6;
}

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

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-timer {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.timer-item {
    display: flex;
    flex-direction: column;
}

.timer-item strong {
    font-size: 48px;
    font-weight: 800;
}

.timer-item span {
    font-size: 14px;
    opacity: 0.8;
}

.timer-label {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    opacity: 0.9;
}

.cta-guarantee {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.cta-guarantee span {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-brand .logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--gray-400);
    margin-bottom: 20px;
}

.footer-badges {
    display: flex;
    gap: 10px;
}

.footer-badges img {
    height: 30px;
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-links a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.3s;
}

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

.footer-contact h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-contact p {
    color: var(--gray-400);
    margin-bottom: 15px;
}

.footer-email {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.footer-email:hover {
    transform: translateX(5px);
}

.footer-cta {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 10px;
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,115,170,0.3);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--gray-400);
}

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

.footer-legal a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: white;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-button {
    background: var(--gradient-primary);
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.chat-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.chat-icon {
    font-size: 20px;
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

.chat-status.online {
    color: #22c55e;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-stats {
        justify-content: space-around;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .process-grid {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .urgency-options {
        grid-template-columns: 1fr;
    }
    
    .issue-selector {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-timer {
        gap: 15px;
    }
    
    .timer-item strong {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .emergency-banner .container {
        font-size: 14px;
    }
    
    .chat-button {
        padding: 12px 20px;
    }
    
    .chat-text {
        display: none;
    }
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
}

.loading::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid var(--gray-300);
    border-top-color: var(--wp-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

@keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.p-20 { padding: 20px; }
.hidden { display: none; }

/* WordPress Specific Fixes */
.site-main {
    padding: 40px 0;
}

.content-area {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.site-main {
    flex: 1;
}

.sidebar {
    width: 300px;
    flex-shrink: 0;
}

.widget {
    background: var(--gray-50);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--gray-900);
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-200);
}

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

.widget a {
    color: var(--gray-700);
    text-decoration: none;
    transition: color 0.3s;
}

.widget a:hover {
    color: var(--wp-blue);
}

.emergency-widget {
    text-align: center;
    padding: 20px;
    background: var(--gradient-danger);
    color: white;
    border-radius: 8px;
}

.emergency-phone {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.post-content {
    padding: 25px;
}

.entry-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.entry-title a {
    color: var(--gray-900);
    text-decoration: none;
    transition: color 0.3s;
}

.entry-title a:hover {
    color: var(--wp-blue);
}

.entry-meta {
    display: flex;
    gap: 15px;
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 15px;
}

.entry-summary {
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: var(--wp-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.read-more:hover {
    transform: translateX(5px);
    display: inline-block;
}

/* Pagination */
.pagination {
    text-align: center;
    margin: 40px 0;
}

.page-numbers {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background: var(--gray-100);
    color: var(--gray-700);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.page-numbers:hover {
    background: var(--wp-blue);
    color: white;
}

.page-numbers.current {
    background: var(--gradient-primary);
    color: white;
}

/* Archive Pages */
.page-header {
    text-align: center;
    padding: 60px 0;
    background: var(--gradient-primary);
    color: white;
    margin-bottom: 40px;
}

.page-title {
    font-size: 36px;
    margin-bottom: 10px;
}

.archive-description {
    font-size: 18px;
    opacity: 0.9;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
}

.no-results h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--gray-900);
}

/* WordPress Menu Container Fix */
.menu-main-menu-container ul,
.nav-menu-list {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Fix for WordPress blocks */
.wp-block-button__link {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,115,170,0.3);
}

/* Form Success Styles */
.form-success {
    padding: 60px 40px;
    text-align: center;
}

.success-icon-large {
    font-size: 72px;
    margin-bottom: 20px;
    animation: successBounce 0.5s ease;
}

/* Loading Button Styles */
.btn-submit.loading {
    position: relative;
    color: transparent !important;
}

.btn-submit.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.8s linear infinite;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

/* Additional responsive fixes */
@media (max-width: 768px) {
    .content-area {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
}