/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brand-primary: #5da645;
    --brand-secondary: #4a8a3a;
    --brand-accent: #f59e0b;
    --neutral-900: #111827;
    --neutral-700: #374151;
    --neutral-500: #6b7280;
    --neutral-200: #e5e7eb;
    --neutral-50: #f9fafb;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: var(--neutral-900);
    background-color: #fff;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    gap: 0.0rem;
}

.nav-brand .logo-icon {
    margin-right: 0.5rem;
}

.nav-brand span {
    margin-left: 0;
    gap: 0;
}

.logo-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

/* General link styling - black on white backgrounds */
a {
    color: var(--neutral-900);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--brand-primary);
    text-decoration: underline;
}

/* Navigation links remain as they were */
.nav-menu a {
    text-decoration: none;
    color: var(--neutral-700);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--brand-primary);
}

/* CTA and brand links keep their original styling */
.cta-primary,
.cta-secondary,
.nav-button,
.plan-cta,
.emergency-button,
.contact-item a,
.footer-column a {
    color: inherit;
}

.contact-item a {
    color: var(--brand-primary);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer links */
.footer-column a {
    color: var(--neutral-200);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.nav-cta {
    margin-left: 2rem;
}

.nav-button {
    background: var(--brand-primary);
    color: white;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: var(--brand-secondary);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(93, 166, 69, 0.8), rgba(74, 138, 58, 0.8)), 
                url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(93, 166, 69, 0.7) 0%, rgba(74, 138, 58, 0.7) 100%);
    z-index: 1;
}

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

.eyebrow {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-sub {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-primary {
    background: var(--brand-accent);
    color: white;
    padding: 0.875rem 1.875rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.cta-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.plans-cta .cta-secondary {
    background: var(--brand-primary);
    color: white;
    border: 2px solid var(--brand-primary);
}

.plans-cta .cta-secondary:hover {
    background: var(--brand-secondary);
    border-color: var(--brand-secondary);
    color: white;
}

.trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
    flex-wrap: wrap;
}

.stars {
    color: var(--brand-accent);
    font-size: 1rem;
}

/* Problem → Outcome Strip */
.problem-outcome {
    padding: 3rem 0;
    background: var(--neutral-50);
    text-align: center;
}

.problem-outcome-content h2 {
    font-size: 2.5rem;
    color: var(--neutral-900);
    margin-bottom: 1rem;
    font-weight: 600;
}

.problem-outcome-content p {
    font-size: 1.1rem;
    color: var(--neutral-700);
    margin-bottom: 1.5rem;
}

.outcome-benefits {
    max-width: 800px;
    margin: 0 auto;
}

.outcome-benefits p {
    font-size: 1.1rem;
    color: var(--neutral-700);
}

.highlight {
    color: var(--brand-primary);
    font-weight: 600;
}

/* Social Proof */
.social-proof {
    padding: 3rem 0;
    background: white;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.logo-item {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--neutral-700);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

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

.testimonial-quote {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--neutral-700);
    margin-bottom: 0.5rem;
}

.testimonial-quote cite {
    color: var(--neutral-500);
    font-size: 0.9rem;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: linear-gradient(rgba(249, 250, 251, 0.9), rgba(249, 250, 251, 0.9)), 
                url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--neutral-900);
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--neutral-200);
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neutral-900);
    font-weight: 600;
}

.service-card p {
    color: var(--neutral-700);
    line-height: 1.6;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--brand-primary);
    display: block;
}

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

/* Proof & Numbers */
.proof-numbers {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.proof-numbers h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--neutral-900);
    font-weight: 600;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    padding: 2rem;
    background: var(--neutral-50);
    border-radius: 12px;
    border: 1px solid var(--neutral-200);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--neutral-700);
    font-size: 1rem;
}

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

/* Plans Section */
.plans {
    padding: 4rem 0;
    background: var(--neutral-50);
}

.plans h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--neutral-900);
    font-weight: 600;
}

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

.plan-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid var(--neutral-200);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.plan-card.featured {
    border: 2px solid var(--brand-primary);
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--neutral-900);
    font-weight: 600;
}

.plan-desc {
    color: var(--neutral-700);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.5rem 0;
    color: var(--neutral-700);
    position: relative;
    padding-left: 1.5rem;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.plan-cta {
    background: var(--brand-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
}

.plan-cta:hover {
    background: var(--brand-secondary);
    transform: translateY(-1px);
}

.plans-note {
    text-align: center;
    color: var(--neutral-700);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

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

/* Outcomes */
.outcomes {
    padding: 4rem 0;
    background: white;
}

.outcomes h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--neutral-900);
    font-weight: 600;
}

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

.outcome-item {
    text-align: center;
    padding: 2rem;
}

.outcome-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--neutral-900);
    font-weight: 600;
}

.outcome-item p {
    color: var(--neutral-700);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background: var(--neutral-50);
}

.testimonials h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--neutral-900);
    font-weight: 600;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid var(--neutral-200);
    text-align: center;
}

.testimonial-card .stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--neutral-700);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-card cite {
    color: var(--neutral-500);
    font-size: 0.9rem;
}

/* Industries */
.industries {
    padding: 4rem 0;
    background: white;
}

.industries h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--neutral-900);
    font-weight: 600;
}

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

.industry-card {
    background: var(--neutral-50);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--neutral-200);
    text-align: center;
}

.industry-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--neutral-900);
    font-weight: 600;
}

.industry-card p {
    color: var(--neutral-700);
    line-height: 1.6;
}

/* Website Care */
.website-care {
    padding: 4rem 0;
    background: var(--neutral-50);
}

.website-care h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--neutral-900);
    font-weight: 600;
}

.website-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.website-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neutral-900);
    font-weight: 600;
}

.website-text p {
    color: var(--neutral-700);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Conversion Band */
.conversion-band {
    padding: 4rem 0;
    background: var(--brand-primary);
    color: white;
    text-align: center;
}

.conversion-band h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.conversion-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.conversion-reassurance {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: white;
}

.contact h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--neutral-900);
    font-weight: 600;
}

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

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neutral-900);
    font-weight: 600;
}

.contact-info p {
    color: var(--neutral-700);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1rem;
    color: var(--neutral-700);
}

.contact .contact-item a {
    color: var(--brand-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact .contact-item a:hover {
    color: var(--brand-secondary);
    text-decoration: underline;
}

.opening-hours h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--neutral-900);
    font-weight: 600;
}

.opening-hours p {
    color: var(--neutral-700);
    line-height: 1.6;
}

.contact-form {
    background: var(--neutral-50);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--neutral-200);
}

.form-group {
    margin-bottom: 1.5rem;
}

/* Remove browser default validation styling */
input:invalid, textarea:invalid, select:invalid {
    box-shadow: none !important;
    border-color: var(--neutral-200) !important;
    outline: none !important;
}

input:focus:invalid, textarea:focus:invalid, select:focus:invalid {
    box-shadow: 0 0 0 3px rgba(93, 166, 69, 0.1) !important;
    border-color: var(--brand-primary) !important;
    outline: none !important;
}

/* Completely disable browser validation styling */
input, textarea, select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Remove any validation tooltips */
input::-webkit-validation-bubble-message,
input::-webkit-validation-bubble-icon {
    display: none !important;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--neutral-200);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
}

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

/* Footer */
.footer {
    background: var(--neutral-900);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0rem;
    color: var(--brand-primary);
}

.footer-logo .logo-icon {
    margin-right: 0.5rem;
}

.footer-logo span {
    margin-left: 0;
    gap: 0;
}

.footer-brand p {
    color: var(--neutral-200);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--neutral-200);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.footer-badges span {
    background: var(--neutral-700);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--neutral-200);
}

/* Additional Styles for New Pages */

/* Active Navigation */
.nav-menu a.active {
    color: var(--brand-primary);
    font-weight: 600;
}

/* Services Page Styles */
.services-overview {
    padding: 4rem 0;
    background: white;
}

.services-overview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--neutral-900);
    font-weight: 600;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--neutral-700);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.service-card.detailed {
    text-align: left;
}

.service-summary {
    font-size: 1rem;
    color: var(--neutral-700);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--neutral-700);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.service-benefits {
    background: var(--neutral-50);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--brand-primary);
    font-size: 0.9rem;
    color: var(--neutral-700);
}

.why-choose-us {
    padding: 4rem 0;
    background: var(--neutral-50);
}

.why-choose-us h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--neutral-900);
    font-weight: 600;
}

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

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid var(--neutral-200);
    text-align: center;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--neutral-900);
    font-weight: 600;
}

.benefit-item p {
    color: var(--neutral-700);
    line-height: 1.6;
}

.industries-served {
    padding: 4rem 0;
    background: white;
}

.industries-served h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--neutral-900);
    font-weight: 600;
}

.industries-served .industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.industries-served .industry-card {
    background: var(--neutral-50);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--neutral-200);
}

.industries-served .industry-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--neutral-900);
    font-weight: 600;
}

.industries-served .industry-card p {
    color: var(--neutral-700);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.industries-served .industry-card ul {
    list-style: none;
}

.industries-served .industry-card li {
    padding: 0.25rem 0;
    color: var(--neutral-700);
    position: relative;
    padding-left: 1.5rem;
}

.industries-served .industry-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--brand-primary);
    font-weight: bold;
}

.our-process {
    padding: 4rem 0;
    background: var(--neutral-50);
}

.our-process h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--neutral-900);
    font-weight: 600;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid var(--neutral-200);
    text-align: center;
    position: relative;
}

.step-number {
    background: var(--brand-primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--neutral-900);
    font-weight: 600;
}

.process-step p {
    color: var(--neutral-700);
    line-height: 1.6;
}

.cta-section {
    padding: 4rem 0;
    background: var(--brand-primary);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* Plans Page Styles */
.plans-overview {
    padding: 4rem 0;
    background: white;
}

.plans-overview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--neutral-900);
    font-weight: 600;
}

.plan-price {
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-primary);
}

.period {
    font-size: 1rem;
    color: var(--neutral-500);
}

.plan-limits {
    margin-bottom: 1.5rem;
    padding: 0.5rem;
    background: var(--neutral-50);
    border-radius: 6px;
    text-align: center;
}

.plan-limits small {
    color: var(--neutral-600);
    font-size: 0.8rem;
}

.addon-services {
    padding: 4rem 0;
    background: var(--neutral-50);
}

.addon-services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--neutral-900);
    font-weight: 600;
}

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

.addon-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid var(--neutral-200);
}

.addon-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--neutral-900);
    font-weight: 600;
}

.addon-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--brand-primary);
    margin-bottom: 1rem;
}

.addon-card p {
    color: var(--neutral-700);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.addon-card ul {
    list-style: none;
}

.addon-card li {
    padding: 0.5rem 0;
    color: var(--neutral-700);
    position: relative;
    padding-left: 1.5rem;
}

.addon-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.sla-details {
    padding: 4rem 0;
    background: white;
}

.sla-details h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--neutral-900);
    font-weight: 600;
}

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

.sla-item {
    background: var(--neutral-50);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--neutral-200);
}

.sla-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--neutral-900);
    font-weight: 600;
}

.sla-item ul {
    list-style: none;
}

.sla-item li {
    padding: 0.5rem 0;
    color: var(--neutral-700);
    line-height: 1.5;
}

.faq-section {
    padding: 4rem 0;
    background: var(--neutral-50);
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--neutral-900);
    font-weight: 600;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid var(--neutral-200);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--neutral-900);
    font-weight: 600;
}

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

.contact-info {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.contact-info p {
    margin: 0;
    font-size: 1rem;
}

.contact-info a {
    color: white;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Contact Page Styles */
.contact-methods {
    padding: 4rem 0;
    background: white;
}

.contact-methods h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--neutral-900);
    font-weight: 600;
}

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

.contact-method {
    background: var(--neutral-50);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--neutral-200);
    text-align: center;
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-method h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--neutral-900);
    font-weight: 600;
}

.contact-method p {
    color: var(--neutral-700);
    margin-bottom: 0.5rem;
}

.contact-method a {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-method a:hover {
    text-decoration: underline;
}

.method-hours {
    font-size: 0.9rem;
    color: var(--neutral-600);
    margin-top: 1rem;
    line-height: 1.5;
}

.contact-form-section {
    padding: 4rem 0;
    background: var(--neutral-50);
}

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

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

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--neutral-900);
    font-weight: 600;
}

.form-header p {
    font-size: 1.1rem;
    color: var(--neutral-700);
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid var(--neutral-200);
}

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

.form-group {
    margin-bottom: 1.5rem;
}

/* Remove browser default validation styling */
input:invalid, textarea:invalid, select:invalid {
    box-shadow: none !important;
    border-color: var(--neutral-200) !important;
    outline: none !important;
}

input:focus:invalid, textarea:focus:invalid, select:focus:invalid {
    box-shadow: 0 0 0 3px rgba(93, 166, 69, 0.1) !important;
    border-color: var(--brand-primary) !important;
    outline: none !important;
}

/* Completely disable browser validation styling */
input, textarea, select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Remove any validation tooltips */
input::-webkit-validation-bubble-message,
input::-webkit-validation-bubble-icon {
    display: none !important;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--neutral-900);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--neutral-200);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(93, 166, 69, 0.1);
}

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

.checkbox-group {
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--neutral-700);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: var(--brand-primary);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    margin-bottom: 1rem;
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--neutral-600);
    margin: 0;
}

.form-success {
    background: var(--success);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 1rem;
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.form-success p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

.form-error {
    background: var(--error);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 1rem;
}

.form-error h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.form-error p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

.why-choose-contact {
    padding: 4rem 0;
    background: white;
}

.why-choose-contact h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--neutral-900);
    font-weight: 600;
}

.emergency-contact {
    padding: 4rem 0;
    background: var(--brand-primary);
    color: white;
}

.emergency-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.emergency-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.emergency-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.emergency-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.emergency-button {
    background: var(--brand-accent);
    color: white;
    padding: 1.375rem 1.875rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.emergency-button:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.emergency-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.emergency-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.contact-testimonials {
    padding: 4rem 0;
    background: var(--neutral-50);
}

.contact-testimonials h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--neutral-900);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1rem 2.5rem;
        align-items: center;
    }
    
    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0;
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .nav-brand {
        font-size: 1.98rem;
        transform: scale(1.32);
    }
    
    .hero {
        padding: 6rem 0 4rem;
        margin-top: 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-sub {
        font-size: 1.1rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-ctas .cta-primary,
    .hero-ctas .cta-secondary {
        padding: 1.2rem 2.5rem;
        margin: 0.5rem 0;
    }
    
    /* Add 10px margin around buttons for mobile (excluding nav-button) */
    .cta-primary,
    .cta-secondary,
    .plan-cta,
    .emergency-button {
        margin: 0.625rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .addon-grid {
        grid-template-columns: 1fr;
    }
    
    .sla-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons .cta-primary,
    .cta-buttons .cta-secondary {
        padding: 1.2rem 2.5rem;
        margin: 0.5rem 0;
    }
    
    .nav-button {
        padding: 0.75rem 2rem;
    }
    
    .plan-cta {
        padding: 1rem 2rem;
        margin: 1rem 0;
    }
    
    .emergency-button {
        padding: 1.625rem 2.5rem;
        margin: 0.5rem 0;
    }
    
    .emergency-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-form {
        padding: 2rem;
    }
}