/* Global Styles for Alternative 2 - Premium Glassmorphism Theme */
:root {
    --primary-color: #2ECC71;
    /* Vibrant green for lawn maintenance */
    --primary-dark: #27AE60;
    /* Darker green for hover states */
    --accent-color: #F1C40F;
    /* Sunshine yellow/gold accent */
    --dark-bg: #0F1014;
    /* Deeper, richer dark background */
    --dark-surface: rgba(255, 255, 255, 0.03);
    /* Glassmorphism base */
    --surface-border: rgba(255, 255, 255, 0.18);
    /* Translucent borders — meets 3:1 on dark bg */
    --light-text: #FFFFFF;
    --paragraph-text: #B0BAC9;
    /* Softer, slightly cooler grey — meets 4.5:1 on dark bg */
    --outline-color: rgba(255, 255, 255, 0.22);
    --success-color: #2CB67D;
    --warning-color: #FFC107;
    --danger-color: #FF4D4D;
    --border-radius: 12px;
    --card-radius: 20px;
    /* Softer, more modern corners */
    --button-radius: 10px;
    /* Pill-like buttons */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.3);
    --glow-primary: 0 0 20px rgba(46, 204, 113, 0.3);
    /* Premium glow effect */
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    /* Smoother, more natural easing */
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    scroll-behavior: smooth;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Custom Webkit Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--light-text);
    letter-spacing: -0.02em;
    /* Tighter letter spacing for premium tech feel */
}

p {
    color: var(--paragraph-text);
    font-size: 1.05rem;
}

.container {
    max-width: 1200px;
    padding: 0 1.5rem;
}

section {
    padding: 7rem 0;
    /* Slightly more breathing room */
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.section-header p {
    max-width: 650px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    padding: 0.8rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--button-radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn .material-icons {
    font-size: 1.1rem;
    vertical-align: middle;
    margin-left: 4px;
}

/* Button Shine Effect on Hover */
.btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: -2;
}

.btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    z-index: -1;
}

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

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    color: var(--light-text);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--glow-primary);
}

.btn-accent {
    background-color: var(--accent-color);
    border: none;
    color: var(--dark-bg);
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.btn-accent:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(241, 196, 15, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--outline-color);
    color: var(--light-text);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: rgba(46, 204, 113, 0.05);
    transform: translateY(-3px);
}

.btn-light {
    background-color: var(--light-text);
    color: var(--dark-bg);
    font-weight: 600;
    border: none;
}

.btn-light:hover {
    background-color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.btn:focus,
.btn:active {
    outline: none;
    box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.3) !important;
}

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

/* Navigation */
.navbar {
    background-color: transparent;
    /* Changed from semi-transparent */
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(15, 16, 20, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
}

.navbar-brand img {
    transition: height 0.3s ease;
}

.navbar-nav {
    gap: 0.75rem;
}

.nav-link {
    color: var(--paragraph-text);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--light-text);
}

.client-portal {
    color: var(--primary-color);
    font-weight: 600;
}

.client-portal:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    padding: 200px 0 120px;
    position: relative;
    background-color: transparent;
    /* overflow: hidden; Removed to let backgrounds bleed down */
}

/* Dynamic Mesh Background Glows */
.hero-shape {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape::before,
.hero-shape::after {
    content: '';
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.15;
    animation: drift 20s infinite alternate cubic-bezier(0.5, 0, 0.5, 1);
}

.hero-shape::before {
    top: -20%;
    right: -10%;
    background: radial-gradient(circle, var(--primary-color), transparent 70%);
}

.hero-shape::after {
    bottom: -20%;
    left: -10%;
    background: radial-gradient(circle, var(--accent-color), transparent 70%);
    animation-delay: -10s;
}

@keyframes drift {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(10%) scale(1.1);
    }
}

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

.hero-subheading {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: block;
}

.hero h1 {
    font-size: 4.5rem;
    /* Slightly larger */
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(46, 204, 113, 0.2);
    /* Subtle glow on text */
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 580px;
    color: #D1D5DB;
    /* Slightly lighter for hero contrast */
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--paragraph-text);
}

.hero-features .feature .material-icons {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quote-card {
    background: var(--dark-surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--surface-border);
    padding: 3rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
    transform: translateY(0);
    transition: var(--transition);
}

.quote-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(46, 204, 113, 0.2);
}

.quote-card h2 {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.quote-card p {
    margin-bottom: 2rem;
    color: var(--paragraph-text);
}

.quote-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.quote-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--paragraph-text);
    font-size: 0.95rem;
}

.quote-features .feature .material-icons {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Services Section */
.services {
    background-color: transparent;
    /* Changed from var(--dark-bg) to allow hero gradient bleed */
    position: relative;
    z-index: 1;
    /* Keep content above blurred background elements */
}

.service-card {
    background: var(--dark-surface);
    backdrop-filter: blur(12px);
    border: 1px solid var(--surface-border);
    border-radius: var(--card-radius);
    padding: 3rem 2.5rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg), var(--glow-primary);
    border-color: rgba(46, 204, 113, 0.4);
}

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

.service-icon {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(46, 204, 113, 0.05));
    border: 1px solid rgba(46, 204, 113, 0.2);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(46, 204, 113, 0.15);
}

.text-center .service-icon,
.service-card.text-center .service-icon {
    margin-left: auto;
    margin-right: auto;
}

.service-icon .material-icons {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.service-link .material-icons {
    font-size: 1.2rem;
    transition: var(--transition);
}

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

.service-link:hover .material-icons {
    transform: translateX(4px);
}

/* Platform Section */
.platform {
    background-color: transparent;
    position: relative;
    z-index: 1;
}

.platform-img {
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.platform-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.platform-feature {
    display: flex;
    gap: 1.5rem;
}

.platform-feature .material-icons {
    background-color: rgba(46, 204, 113, 0.15);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.7rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.platform-feature h3,
.platform-feature h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.platform-feature p {
    margin-bottom: 0;
}

.platform-features .btn {
    margin-top: 1.5rem;
    align-self: flex-start;
}

/* Platform Benefits */
.platform-benefits {
    margin-bottom: 2rem;
}

.benefit-card {
    background: var(--dark-surface);
    backdrop-filter: blur(12px);
    border-radius: var(--card-radius);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: var(--transition);
    border: 1px solid var(--surface-border);
    margin-bottom: 1.5rem;
}

.benefit-card:hover {
    transform: translateX(10px);
    /* Side slide instead of up for list items */
    box-shadow: var(--shadow-md);
    border-color: rgba(46, 204, 113, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background-color: var(--primary-color);
}

.benefit-icon .material-icons {
    font-size: 35px;
    color: #fff;
}

.benefit-card:hover .benefit-icon .material-icons {
    color: var(--light-text);
}

.benefit-content {
    flex: 1;
}

.benefit-content h3,
.benefit-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--light-text);
}

.benefit-content p {
    font-size: 0.95rem;
    color: var(--paragraph-text);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Packages Section */
.packages {
    background-color: transparent;
    position: relative;
    z-index: 1;
}

/* Subtle texture overlay */
.packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}

.package-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.package-filter {
    background-color: transparent;
    border: 1px solid var(--outline-color);
    color: var(--paragraph-text);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.package-filter:hover {
    color: var(--light-text);
    border-color: var(--light-text);
    background: rgba(255, 255, 255, 0.05);
}

.package-filter.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-text);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.package-card {
    background: var(--dark-surface);
    backdrop-filter: blur(12px);
    border: 1px solid var(--surface-border);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.package-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.15);
}

.package-card.featured {
    border: 1px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(241, 196, 15, 0.15);
    background: linear-gradient(to bottom, rgba(241, 196, 15, 0.03), var(--dark-surface));
}

.featured-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    background-color: var(--accent-color);
    color: var(--dark-bg);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 0 var(--card-radius) 0 16px;
    z-index: 10;
    margin: 0;
    box-shadow: 0 4px 10px rgba(241, 196, 15, 0.3);
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.package-header {
    padding: 3rem 2rem 1.5rem;
    border-bottom: 1px solid var(--surface-border);
    text-align: center;
}

.package-card.featured .package-header {
    background-color: transparent;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
}

.package-price-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0 0.5rem;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.package-price-custom .material-icons {
    font-size: 1.1rem;
    opacity: 0.85;
}

.package-price {
    margin-bottom: 1.5rem;
    text-align: center;
    display: block;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--light-text);
    display: block;
    margin-bottom: 0;
    line-height: 1;
}

.price-details {
    display: block;
    text-align: center;
}

.price-period {
    color: var(--paragraph-text);
    display: block;
    margin-top: 0.25rem;
}

.package-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.button-wrapper {
    margin-top: auto;
    padding-top: 1rem;
}

.button-wrapper .btn {
    width: 100%;
    display: block;
}

.package-features {
    list-style-type: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.package-features li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
    color: var(--paragraph-text);
}

.package-features li .material-icons {
    color: var(--success-color);
    font-size: 1.2rem;
}

/* Vertical Tabs Layout for Packages Page */
.packages-wrapper {
    position: relative;
    z-index: 1;
}

.vertical-tabs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: sticky;
    top: 100px;
}

.vertical-tabs .nav-link {
    text-align: left;
    padding: 1rem 1.5rem;
    border-radius: var(--card-radius);
    color: var(--paragraph-text);
    font-weight: 600;
    transition: var(--transition);
    background: transparent;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vertical-tabs .nav-link:hover {
    color: var(--light-text);
    background: rgba(255, 255, 255, 0.05);
}

.vertical-tabs .nav-link.active {
    background: var(--dark-surface);
    backdrop-filter: blur(12px);
    border: 1px solid var(--primary-color);
    color: var(--light-text);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.15);
}

.vertical-tabs .nav-link .material-icons {
    color: var(--primary-color);
    transition: var(--transition);
}

.vertical-tabs .nav-link.active .material-icons {
    transform: scale(1.1);
    text-shadow: var(--glow-primary);
}

/* Light Theme overrides for Vertical Tabs */
[data-theme="light"] .vertical-tabs .nav-link:hover {
    background: rgba(0, 0, 0, 0.03);
    color: var(--light-text);
}

[data-theme="light"] .vertical-tabs .nav-link.active {
    background: #ffffff;
    color: var(--light-text);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.2);
}

/* Responsive adjustment for Mobile Tabs */
@media (max-width: 991.98px) {
    .vertical-tabs {
        flex-direction: row;
        overflow-x: auto;
        position: relative;
        top: 0;
        margin-bottom: 2rem;
        padding-bottom: 0.5rem;
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE and Edge */
    }

    .vertical-tabs::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari and Opera */
    }

    .vertical-tabs .nav-link {
        white-space: nowrap;
        padding: 0.75rem 1.25rem;
    }
}

/* Process Steps */
.process {
    background-color: transparent;
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--dark-surface);
    backdrop-filter: blur(12px);
    border: 1px solid var(--surface-border);
    border-radius: var(--card-radius);
    position: relative;
    height: 100%;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.15);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    color: var(--dark-bg);
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50%;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.step-icon .material-icons {
    font-size: 2rem;
    color: var(--primary-color);
}

.process-step:hover .step-icon {
    background-color: var(--primary-color);
}

.process-step:hover .step-icon .material-icons {
    color: var(--light-text);
}

.process-step h3,
.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.process-step p {
    margin-bottom: 0;
}

/* Testimonials */
.testimonials {
    background-color: transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Gradient glow to separate section */
.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(241, 196, 15, 0.05), transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
}

.testimonial-card {
    background: var(--dark-surface);
    backdrop-filter: blur(12px);
    border: 1px solid var(--surface-border);
    border-radius: var(--card-radius);
    padding: 2.5rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: rgba(241, 196, 15, 0.3);
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    font-weight: 600;
}

.testimonial-author .testimonial-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    color: var(--paragraph-text);
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    text-align: center;
    padding: 6rem 0;
}

/* --- LIGHT THEME OVERRIDES --- */
[data-theme="light"] {
    --accent-color: #E29302;
    --dark-bg: #F8FAFC;
    --dark-surface: rgba(255, 255, 255, 0.7);
    --surface-border: rgba(0, 0, 0, 0.06);
    --light-text: #0F172A;
    --paragraph-text: #475569;
    --outline-color: rgba(0, 0, 0, 0.15);
    --shadow-sm: 0 4px 6px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 10px 20px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.15);
    --glow-primary: 0 0 20px rgba(46, 204, 113, 0.35);
}

[data-theme="light"] .navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    /* Light blurred nav */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
}

[data-theme="light"] .navbar-toggler {
    border-color: rgba(15, 23, 42, 0.35);
}

[data-theme="light"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(15, 23, 42, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

[data-theme="light"] .client-portal {
    color: #166534;
}

[data-theme="light"] .client-portal:hover,
[data-theme="light"] .client-portal:focus {
    color: #14532d;
}

[data-theme="light"] .hero p {
    color: var(--paragraph-text);
}

[data-theme="light"] .btn-outline {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

[data-theme="light"] .btn-outline:hover {
    border-color: var(--primary-dark);
    color: var(--light-text);
    background-color: var(--primary-dark);
}

[data-theme="light"] .btn-light {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
}

[data-theme="light"] .packages::before {
    background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px);
}

[data-theme="light"] .package-card:hover,
[data-theme="light"] .process-step:hover {
    border-color: rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .package-card.featured {
    background: linear-gradient(to bottom, rgba(241, 196, 15, 0.05), var(--dark-surface));
}

[data-theme="light"] .featured-badge,
[data-theme="light"] .step-number,
[data-theme="light"] .testimonial-avatar {
    color: #FFFFFF;
}

[data-theme="light"] .benefit-card:hover {
    background: rgba(255, 255, 255, 0.95);
}

[data-theme="light"] .benefit-icon {
    background-color: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .testimonials::before {
    background: radial-gradient(circle, rgba(241, 196, 15, 0.08), transparent 70%);
}

[data-theme="light"] .testimonial-card:hover {
    border-color: rgba(241, 196, 15, 0.4);
}

[data-theme="light"] .testimonial-card p {
    color: var(--paragraph-text);
}

[data-theme="light"] .text-white {
    color: var(--light-text) !important;
}

/* Theme Toggle Button Styles */
#theme-toggle {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    transition: var(--transition);
    border: 1px solid var(--outline-color);
    background: transparent;
    color: var(--light-text);
}

#theme-toggle .material-icons {
    display: block;
    margin: 0;
    font-size: 20px;
    line-height: 1;
}

#theme-toggle:hover {
    background: rgba(46, 204, 113, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
}

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

.cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    font-size: 1.15rem;
}

/* Footer */
footer {
    background-color: transparent;
    /* Allow gradient bleed */
    position: relative;
    padding-top: 6rem;
    color: var(--paragraph-text);
    border-top: 1px solid var(--surface-border);
    z-index: 1;
}

/* Optional glowing top border line effect */
footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--accent-color), transparent);
    opacity: 0.5;
}

.footer-brand p {
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--dark-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--paragraph-text);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-md);
    border-color: rgba(46, 204, 113, 0.3);
}

footer h5 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

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

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

.footer-links a {
    color: var(--paragraph-text);
    text-decoration: none;
    transition: var(--transition);
}

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

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
}

.footer-contact .material-icons {
    color: var(--primary-color);
    font-size: 1.2rem;
    background: rgba(46, 204, 113, 0.1);
    padding: 8px;
    border-radius: 50%;
}

/* Newsletter Input */
.footer-newsletter {
    margin-top: 2rem;
}

.newsletter-form {
    display: flex;
    position: relative;
    max-width: 400px;
}

.newsletter-form input {
    width: 100%;
    padding: 0.8rem 1.5rem;
    padding-right: 120px;
    background: var(--dark-surface);
    border: 1px solid var(--outline-color);
    border-radius: 50px;
    color: var(--light-text);
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(46, 204, 113, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .newsletter-form input:focus {
    background: rgba(255, 255, 255, 0.9);
}

.newsletter-form .btn {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    padding: 0 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
}

.footer-hours {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: var(--paragraph-text);
}

.footer-hours-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

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

.footer-bottom-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.copyright {
    font-size: 0.85rem;
}

.powered-by {
    font-size: 0.75rem;
    color: var(--paragraph-text);
    opacity: 0.6;
    text-align: center;
}

.powered-by a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.powered-by a:hover {
    color: var(--accent-color);
}

.ordexis-brand {
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.6px;
}

.footer-brand-primary {
    color: var(--primary-color);
}

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

.footer-brand-icon {
    color: var(--accent-color);
    font-size: 0.85rem;
    vertical-align: middle;
    margin-left: 2px;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0.35rem 0.4rem;
    color: var(--paragraph-text);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.85rem;
}

.legal-links a:hover {
    color: var(--primary-color);
}

.wcag-statement {
    font-size: 0.65rem;
    color: var(--paragraph-text);
    opacity: 0.35;
    margin-top: 0.75rem;
    margin-bottom: 0;
    text-align: center;
}

.wcag-statement a {
    color: var(--paragraph-text);
    text-decoration: none;
}

.wcag-statement a:hover {
    color: var(--primary-color);
    opacity: 1;
}

/* Assistance Banner */
.assistance-banner {
    background-color: var(--accent-color);
    padding: 1.5rem 2rem;
    position: relative;
    z-index: 1;
    margin: 0;
    text-align: center;
    width: 100%;
}

.assistance-banner .banner-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.assistance-banner p {
    margin: 0;
    color: var(--dark-bg);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    flex-grow: 1;
}

.assistance-banner .material-icons {
    color: var(--dark-bg);
    font-size: 3rem;
    margin-right: 0.5rem;
}

.assistance-banner .btn-dark {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 1rem;
}

.assistance-banner .btn-dark:hover {
    background-color: var(--dark-surface);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 992px) {
    .assistance-banner {
        padding: 1.5rem 1rem;
    }

    .assistance-banner .banner-content {
        flex-direction: column;
        gap: 1rem;
    }

    .assistance-banner p {
        font-size: 1rem;
    }

    .assistance-banner .btn-dark {
        margin-left: 0;
    }
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero {
        padding: 140px 0 80px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-shape {
        width: 100%;
        background: radial-gradient(circle at top right, var(--primary-dark), transparent 90%);
        opacity: 0.25;
    }

    .quote-card {
        margin-top: 3rem;
    }

    .process-step {
        margin-bottom: 2rem;
    }

    .platform-img {
        margin-bottom: 3rem;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 2.2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .process-step {
        margin-bottom: 3.5rem;
        padding-bottom: 2.5rem;
        position: relative;
    }

    .process-step:last-child {
        margin-bottom: 1.5rem;
    }

    /* Force spacing between process steps on mobile */
    .process .row {
        display: block;
    }

    .process .col-lg-3 {
        margin-bottom: 40px;
        padding-bottom: 20px;
        position: relative;
    }

    .process .col-lg-3::after {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 15%;
        right: 15%;
        height: 1px;
        background-color: rgba(255, 255, 255, 0.1);
    }

    .process .col-lg-3:last-child::after {
        display: none;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

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

    .package-filter {
        width: 100%;
    }

    .testimonial-card,
    .service-card,
    .package-card {
        margin-bottom: 2rem;
    }

    .footer-bottom-row {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .powered-by {
        order: 3;
    }

    .legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.25rem 1rem;
    }

    .legal-links a {
        min-height: 48px;
        padding: 0.5rem 0.65rem;
    }
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Center icons when used in a card with text-align: center */
.text-center .benefit-icon,
.value-card .benefit-icon,
[class*="-card"].text-center .benefit-icon,
.text-center [class*="-icon"],
[class*="-card"].text-center [class*="-icon"] {
    margin-left: auto;
    margin-right: auto;
}

/* Hero animation scenes now in css/hero-animations.css */

/* WCAG 2.1 AA — :focus-visible states */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn:focus-visible,
.nav-link:focus-visible,
.navbar-toggler:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.25);
}

.package-filter:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(241, 196, 15, 0.25);
}

.location-card:focus-visible,
.float-card:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.25);
}

[data-theme="light"] a:focus-visible,
[data-theme="light"] button:focus-visible,
[data-theme="light"] .btn:focus-visible,
[data-theme="light"] .nav-link:focus-visible {
    outline-color: var(--primary-dark);
    box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.2);
}

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