﻿:root {
    --primary-color: #4CAF50;
    --primary-dark: #388E3C;
    --primary-light: #C8E6C9;
    --accent-color: #FFC107;
    --text-dark: #263238;
    --text-light: #ECEFF1;
    --background-light: #FFFFFF;
    --background-dark: #F5F5F5;
    --success-color: #4CAF50;
    --danger-color: #F44336;
    --border-radius: 8px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rubik', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.navbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-wrapper {
    display: flex;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
}

.brand-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 10px;
}

.brand-text {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.contact-wrapper {
    display: flex;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.availability {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-button {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 8px 15px;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

    .contact-button:hover {
        background-color: var(--primary-dark);
        transform: translateY(-2px);
    }

.phone-icon {
    background-color: rgba(255, 255, 255, 0.2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.phone-content {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 12px;
    opacity: 0.9;
}

.phone-number {
    font-size: 16px;
    font-weight: 600;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px 0;
    justify-content: space-around;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 12px;
    padding: 8px 0;
    width: 25%;
    transition: all 0.3s ease;
}

    .mobile-nav-item.active,
    .mobile-nav-item:hover {
        color: var(--primary-color);
    }

.nav-icon-wrapper {
    position: relative;
    margin-bottom: 5px;
}

.mobile-nav-item.active .nav-indicator {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.mobile-nav-item.call-action {
    color: var(--accent-color);
    font-weight: 600;
}

.nav-label {
    font-size: 10px;
}

/* Hero Section */
.hero-section {
    z-index: 1;
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background-color: #f8f9fa;
}

.hero-background {
    background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8));
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

    .hero-background::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at center, transparent 0%, rgba(38, 50, 56, 0.8) 100%);
    }

    .hero-background::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 150px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), transparent);
    }

.hero-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

.highlight-text {
    color: var(--primary-color);
    display: block;
}

.feature-list {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

    .feature-list li {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
}

.modern-cta {
    display: inline-block;
    text-decoration: none;
    margin-top: 20px;
}

.cta-content {
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

    .cta-content:hover {
        background-color: var(--primary-dark);
        transform: translateY(-3px);
    }

.cta-icon {
    position: relative;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}

.ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: ripple 1.5s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.cta-text {
    display: flex;
    flex-direction: column;
}

.cta-label {
    font-size: 14px;
    opacity: 0.9;
}

.cta-number {
    font-size: 16px;
    font-weight: 600;
}

/* Form Section */
.form-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.form-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.form-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
}

.request-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 15px;
    width: 100%;
}

.flex-1 {
    flex: 1;
}

.form-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

    .form-label i {
        margin-right: 8px;
        color: var(--primary-color);
    }

.form-input,
.form-select {
    padding: 16px;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-family: 'Rubik', sans-serif;
    transition: border-color 0.3s;
    font-size: 16px;
    width: 100%;
}

    .form-input:focus,
    .form-select:focus {
        outline: none;
        border-color: var(--primary-color);
    }

.submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border: none;
    background-color: var(--primary-color);
    color: white;
    font-weight: 700;
    font-size: 18px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    width: 100%;
}

    .submit-button i {
        margin-left: 10px;
    }

    .submit-button:hover {
        background-color: var(--primary-dark);
        transform: translateY(-2px);
    }

.form-footer {
    margin-top: 20px;
    text-align: center;
}

.emergency-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
    font-size: 14px;
}

    .emergency-contact i {
        color: var(--primary-color);
    }

    .emergency-contact a {
        color: var(--primary-color);
        font-weight: 600;
        text-decoration: none;
    }

.privacy-notice {
    display: block;
    font-size: 12px;
    color: #757575;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--background-dark);
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

.section-subtitle {
    font-size: 16px;
    text-align: center;
    color: #757575;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    box-shadow: var(--box-shadow);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: var(--primary-color);
}

.service-card h3, .process-step h3, .why-choose-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

.service-features {
    list-style: none;
    padding: 0;
}

    .service-features li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 10px;
    }

.icon-wrapper {
    margin-right: 10px;
    color: var(--primary-color);
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background-color: white;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-choose-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

.why-choose-line {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-choose-card {
    padding: 20px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

    .why-choose-card:hover {
        background-color: #f8f9fa;
    }

.why-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.why-icon-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.why-icon-background {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.why-icon-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 80px;
    height: 80px;
    border: 2px dashed var(--primary-color);
    border-radius: 50%;
    opacity: 0.5;
}

.why-choose-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.why-choose-card p {
    margin-bottom: 15px;
    color: #757575;
}

.why-feature-list {
    list-style: none;
    padding: 0;
    text-align: left;
    width: 100%;
}

    .why-feature-list li {
        display: flex;
        align-items: center;
        margin-bottom: 8px;
    }

        .why-feature-list li i {
            margin-right: 10px;
            color: var(--success-color);
        }

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: white;
}

.cta-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button-modern {
    display: inline-block;
    text-decoration: none;
}

.button-content {
    display: flex;
    align-items: center;
    background-color: white;
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

    .button-content:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

.button-icon {
    position: relative;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 20px;
}

.icon-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(76, 175, 80, 0.5);
    animation: ripple 1.5s infinite;
}

.button-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.button-label {
    font-size: 14px;
    color: #757575;
}

.button-action {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Footer */
.footer-section {
    background-color: #263238;
    color: white;
    padding: 30px 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
}

    .footer-brand i {
        margin-right: 10px;
        color: var(--primary-color);
    }

.footer-contact {
    display: flex;
}

.footer-phone {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    padding: 8px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

    .footer-phone:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

    .footer-phone i {
        margin-right: 10px;
    }

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
}

.credentials {
    opacity: 0.7;
}

.copyright {
    opacity: 0.7;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 30px;
    }

    .hero-title {
        font-size: 32px;
        text-align: center;
    }

    .feature-list {
        margin: 20px auto;
        max-width: 90%;
    }

    .price-badge {
        display: block;
        text-align: center;
        margin: 20px auto;
        max-width: 85%;
    }

    .modern-cta {
        display: block;
        margin: 20px auto;
        width: 100%;
        max-width: 300px;
    }

    .cta-content {
        justify-content: center;
    }

    .form-wrapper {
        margin-top: 20px;
        max-width: 100%;
    }

    .form-card {
        padding: 20px 15px;
        border-radius: 10px;
    }

    .form-title {
        font-size: 22px;
    }

    .process-step {
        min-width: 100%;
        margin-bottom: 30px;
    }

    .why-choose-section, .services-section {
        padding: 50px 0;
    }

    .section-title, .why-choose-title {
        font-size: 28px;
    }

    .mobile-nav {
        display: flex;
        padding: 10px 0;
        background-color: rgba(255, 255, 255, 0.95);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
        z-index: 1001;
    }

    .mobile-nav-item {
        padding: 8px 0;
    }

        .mobile-nav-item.call-action {
            background-color: var(--primary-color);
            color: white;
            border-radius: 8px;
            margin: -5px 5px 0;
            padding: 12px 0 8px;
        }

            .mobile-nav-item.call-action .nav-label {
                color: white;
            }

    .cta-section {
        padding: 50px 0 80px;
    }

    .cta-button-modern {
        display: block;
        width: 90%;
        max-width: 300px;
        margin: 0 auto;
    }

    .button-content {
        justify-content: center;
    }

    /* Sticky quote section for mobile */
    .mobile-sticky-cta {
        display: block;
        position: fixed;
        bottom: 70px;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0);
        box-shadow: none;
        border:none;
        padding: 10px;
        z-index: 1000;
        text-align: center;
    }

        .mobile-sticky-cta .quick-quote-button {
            background-color: var(--accent-color);
            color: var(--text-dark);
            font-weight: 700;
            padding: 12px 20px;
            border-radius: 8px;
            display: inline-block;
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
            width: 90%;
            max-width: 300px;
        }
}

@media (min-width: 769px) {
    .mobile-sticky-cta {
        display: none;
    }
}

/* Added for junk cars specific styling */
.cash-tag {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: var(--border-radius);
    font-weight: 700;
    margin-left: 10px;
    transform: rotate(-2deg);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.price-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
    margin: 15px 0;
    position: relative;
    box-shadow: var(--box-shadow);
    letter-spacing: 0.5px;
}

    .price-badge::before {
        content: '';
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        border: 2px dashed var(--accent-color);
        border-radius: 50px;
        animation: rotate 15s linear infinite;
    }

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.process-step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.testimonial-card {
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin: 20px 0;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
}

.testimonial-rating {
    color: var(--accent-color);
    margin-bottom: 5px;
}

/* CSS for form status styles */
.error-message {
    color: #F44336;
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

.form-status-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    display: none;
}

    .form-status-message.success {
        background-color: #E8F5E9;
        color: #2E7D32;
        border: 1px solid #C8E6C9;
        display: block;
    }

    .form-status-message.error {
        background-color: #FFEBEE;
        color: #C62828;
        border: 1px solid #FFCDD2;
        display: block;
    }

    .form-status-message.waiting {
        background-color: #E3F2FD;
        color: #1565C0;
        border: 1px solid #BBDEFB;
        display: block;
    }

.form-input.error, .form-select.error {
    border-color: #F44336;
}

/* Spinner for loading state */
.spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* When form is submitting */
.form-submitting .spinner {
    display: inline-block;
}

.form-submitting .fa-dollar-sign {
    display: none;
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.mobile-sticky-cta .quick-quote-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 50px;
  background: linear-gradient(135deg, #4CAF50, #388E3C);
  color: white;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
  transition: all 0.3s ease, transform 0.15s ease;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.mobile-sticky-cta .quick-quote-button:active {
  transform: scale(0.95);
}

.mobile-sticky-cta .quick-quote-button i {
  background: rgba(255, 255, 255, 0.25);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  position: relative;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.mobile-sticky-cta .quick-quote-button::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

/* Interactive Mobile Nav */
.mobile-nav {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-nav-item {
  position: relative;
  transition: transform 0.2s ease;
}

.mobile-nav-item:active {
  transform: scale(0.9);
}

.mobile-nav-item.call-action {
  animation: attention 2s infinite;
  overflow: hidden;
  background: linear-gradient(135deg, #4CAF50, #388E3C);
}

@keyframes attention {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.mobile-nav-item.call-action::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: sweep 2s infinite;
}

@keyframes sweep {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.nav-icon-wrapper {
  position: relative;
}

.mobile-nav-item.call-action .nav-icon-wrapper::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  transform: scale(0);
  animation: ripple 2s infinite;
}

@keyframes ripple {
  0% { transform: scale(0); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* Enhance the active state with a bounce effect */
.mobile-nav-item.active .nav-indicator {
  animation: bounce 1s ease;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
  60% { transform: translateY(-2px); }
}

/* Add subtle hover effect for all nav items */
.mobile-nav-item:hover .nav-icon-wrapper i {
  transform: translateY(-3px);
  transition: transform 0.2s ease;
}