:root {
    --brand-lime: #78BE20;
    --brand-lime-hover: #72A642;
    --charcoal-black: #262626;
    --charcoal-dark: #1a1a1a;
    --charcoal-light: #383838;
    --pure-white: #FFFFFF;
    --amber-highlight: #FFC107;
    --text-gray: #383838;
    --text-light: #6c757d;
}

.hero-section {
    background: linear-gradient(135deg, var(--charcoal-black) 0%, var(--charcoal-light) 100%);
    color: var(--pure-white);
    padding: 80px 0;
    border-radius: 0 0 30px 30px;
    margin-bottom: 40px;
    border-bottom: 4px solid var(--brand-lime);
}

    .hero-section h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--pure-white);
    }

    .hero-section .lead {
        color: #e0e0e0;
        font-size: 1.3rem;
    }

.service-card {
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    background: var(--pure-white);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--brand-lime);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-card:hover {
        border-color: var(--brand-lime);
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(120, 190, 32, 0.15);
    }

.service-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

    .service-logo img {
        max-height: 60px;
        max-width: 150px;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

.service-card:hover .service-logo img {
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.badge-available {
    background: var(--brand-lime);
    color: var(--charcoal-black);
}

.badge-coming {
    background: var(--amber-highlight);
    color: var(--charcoal-black);
}

.service-card h4 {
    color: var(--charcoal-black);
    margin-bottom: 0.5rem;
}

.service-card h6 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.option-card {
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: var(--pure-white);
    border-radius: 12px;
}

    .option-card:hover {
        border-color: var(--brand-lime);
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(120, 190, 32, 0.1);
    }

.feature-card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: var(--pure-white);
    border-top: 4px solid var(--brand-lime);
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }

.feature-icon {
    font-size: 3rem;
    color: var(--brand-lime);
    margin-bottom: 1rem;
}

.back-to-services {
    color: var(--brand-lime);
    transition: color 0.3s ease;
}

    .back-to-services:hover {
        color: var(--brand-lime-hover);
    }

.section-title {
    color: var(--charcoal-black);
    border-bottom: 3px solid var(--brand-lime);
    display: inline-block;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

/* Status indicators */
.status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
}

.status-active {
    background: var(--brand-lime);
    box-shadow: 0 0 10px var(--brand-lime);
}

.status-coming {
    background: var(--amber-highlight);
    box-shadow: 0 0 10px var(--amber-highlight);
}

/* Typing effect styles - Fixed for mobile */
.typing-container {
    display: inline-block;
    position: relative;
    max-width: 100%;
}

.typing-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
    font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size */
    border-right: 3px solid var(--brand-lime); /* Single cursor */
    animation: blink-caret 1s step-end infinite;
}

/* Remove the separate cursor element styles */
.typing-cursor {
    display: none; /* Hide the separate cursor */
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent
    }

    50% {
        border-color: var(--brand-lime)
    }
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .typing-text {
        white-space: normal;
        text-align: center;
        border-right: none; /* Remove cursor on mobile */
        animation: none; /* Remove blink animation on mobile */
    }

    .hero-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }

    .typing-text {
        font-size: 1.8rem; /* Smaller font for very small screens */
    }
}

/* Ensure proper spacing on mobile */
.mobile-optimized-title {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (max-width: 768px) {
    .mobile-optimized-title {
        min-height: 60px;
    }
}

/* Color utility classes */
.text-lime {
    color: #78BE20 !important;
}

.bg-lime {
    background-color: #78BE20 !important;
}

.text-charcoal {
    color: #262626 !important;
}

.bg-charcoal {
    background-color: #262626 !important;
}


.option-card {
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    background: white;
    position: relative;
}

.option-card:hover {
    border-color: #78BE20;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(120, 190, 32, 0.15) !important;
}

.coming-soon {
    opacity: 0.7;
    cursor: not-allowed;
}

    .coming-soon:hover {
        border-color: #e9ecef !important;
        transform: none !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    }

.badge {
    font-size: 0.7rem;
    font-weight: 600;
}

.text-lime {
    color: #78BE20 !important;
}

.text-amber {
    color: #FFC107 !important;
}

.bg-lime {
    background-color: #78BE20 !important;
}

.bg-amber {
    background-color: #FFC107 !important;
}


