﻿/* Tampa High-Converting Theme - Optimized for Google Ads Performance */
:root {
    /* High-converting primary colors - Blue builds trust and converts well */
    --primary-color: #2196F3;   /* Conversion Blue (high CTR) */
    --primary-dark: #1976D2;    /* Deep Blue */
    --primary-light: #BBDEFB;   /* Light Blue */

    /* High-converting accent - Orange/Red for urgency and action */
    --accent-color: #FF5722;    /* Action Orange-Red (high conversion) */
    --accent-dark: #E64A19;     /* Deep Action Red */

    /* Supporting colors */
    --text-dark: #212121;       /* High contrast black */
    --text-light: #FAFAFA;      /* Clean white */
    --background-light: #FFFFFF;
    --background-dark: #F5F5F5;
    --success-color: #4CAF50;   /* Green for success/trust */
    --danger-color: #F44336;

    /* Conversion-specific colors */
    --cta-primary: #FF5722;     /* Primary CTA - High urgency orange */
    --cta-secondary: #2196F3;   /* Secondary CTA - Trust blue */
    --trust-color: #4CAF50;     /* Trust badges and guarantees */

    --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(--cta-primary);
    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(--cta-primary);
    }

.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;
}

/* ============================================
   TAMPA-SPECIFIC OVERRIDE STYLES
   ============================================ */

/* Tint the hero overlay with conversion-optimized blue gradient */
.hero-background::before {
  background: radial-gradient(circle at center, transparent 0%, rgba(33, 150, 243, 0.5) 100%) !important;
}

/* Footer uses dark professional gradient */
.footer-section {
  background: linear-gradient(135deg, #212121 0%, #424242 100%) !important;
}

/* CTA ripple with high-converting action color */
.icon-ripple {
  border: 2px solid rgba(255, 87, 34, 0.7) !important;
}

/* Mobile sticky CTA - High-converting action orange */
.mobile-sticky-cta .quick-quote-button {
  background: linear-gradient(135deg, var(--cta-primary), var(--accent-dark)) !important;
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.5) !important;
}

.mobile-sticky-cta .quick-quote-button:hover {
  background: linear-gradient(135deg, #FF6F00, var(--accent-dark)) !important;
  box-shadow: 0 6px 20px rgba(255, 87, 34, 0.6) !important;
}

/* Mobile nav redesign - Completely different structure */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, #FFFFFF 0%, #F5F5F5 100%);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  padding: 0;
  border-top: 3px solid var(--primary-color);
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 11px;
  padding: 12px 8px;
  width: 25%;
  transition: all 0.3s ease;
  position: relative;
  background: transparent;
}

.mobile-nav-item:active {
  transform: scale(0.95);
}

.mobile-nav-item.active {
  color: var(--primary-color);
  background: rgba(33, 150, 243, 0.08);
}

.mobile-nav-item.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-color);
}

.mobile-nav-item i {
  font-size: 22px;
  margin-bottom: 4px;
}

/* Completely redesigned call action button in mobile nav */
.mobile-nav-item.call-action {
  background: linear-gradient(135deg, var(--cta-primary), var(--accent-dark)) !important;
  color: white !important;
  border-radius: 12px 12px 0 0;
  margin: -8px 4px 0;
  padding: 16px 8px 12px;
  box-shadow: 0 -4px 15px rgba(255, 87, 34, 0.4);
  animation: mobile-cta-pulse 2s infinite;
}

@keyframes mobile-cta-pulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 -4px 15px rgba(255, 87, 34, 0.4); }
  50% { transform: translateY(-3px); box-shadow: 0 -8px 20px rgba(255, 87, 34, 0.6); }
}

.mobile-nav-item.call-action::before {
  display: none;
}

.mobile-nav-item.call-action .nav-label {
  color: white !important;
  font-weight: 700;
}

/* Header Call Button - High-converting action button */
.header-cta-wrapper {
  display: flex;
  align-items: center;
}

.header-call-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--cta-primary), var(--accent-dark));
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
  transition: all 0.3s ease;
  animation: header-cta-glow 3s infinite;
}

@keyframes header-cta-glow {
  0%, 100% { box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4); }
  50% { box-shadow: 0 4px 20px rgba(255, 87, 34, 0.6); }
}

.header-call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 87, 34, 0.6);
  background: linear-gradient(135deg, #FF6F00, #D84315);
}

.header-call-btn i {
  font-size: 20px;
  background: rgba(255, 255, 255, 0.2);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-call-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.header-call-label {
  font-size: 11px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.header-call-number {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

/* Hide header CTA on mobile - use floating button instead */
@media (max-width: 768px) {
  .header-cta-wrapper {
    display: none;
  }
}

/* Floating Call Button - Conversion-optimized sticky CTA */
.floating-call-btn {
  position: fixed;
  top: 80px;
  right: 15px;
  z-index: 999;
  background: linear-gradient(135deg, var(--cta-primary), var(--accent-dark));
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255, 87, 34, 0.5);
  text-decoration: none;
  color: white;
  font-size: 24px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(-20px) scale(0.8);
  pointer-events: none;
  animation: pulse-ring 2s infinite;
}

.floating-call-btn.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.floating-call-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(255, 87, 34, 0.7);
}

.floating-call-btn::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 3px solid var(--cta-primary);
  border-radius: 50%;
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
  opacity: 0;
}

/* Eye-catching tooltip message - Orange theme matching */
.floating-call-btn::after {
  content: 'Click to Call Now! 💰';
  position: absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: white;
  color: var(--text-dark);
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  font-family: 'Rubik', sans-serif;
  letter-spacing: 0.3px;
  border: 2px solid var(--cta-primary);
}

.floating-call-btn.show::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  animation: tooltip-pulse 2s ease-in-out 0.5s infinite;
}

.floating-call-btn.hide-tooltip::after {
  opacity: 0;
  transform: translateY(-50%) translateX(10px);
}

.floating-call-btn.hide-tooltip .tooltip-arrow {
  opacity: 0;
}

.floating-call-btn:hover::after {
  background: var(--cta-primary);
  color: white;
  box-shadow: 0 8px 30px rgba(255, 87, 34, 0.4);
  transform: translateY(-50%) translateX(-3px) scale(1.05);
}

/* Tooltip arrow - matching orange theme */
.floating-call-btn .tooltip-arrow {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid var(--cta-primary);
  opacity: 0;
  transition: all 0.3s ease;
}

.floating-call-btn.show .tooltip-arrow {
  opacity: 1;
}

.floating-call-btn:hover .tooltip-arrow {
  border-left-color: var(--cta-primary);
}

@keyframes tooltip-pulse {
  0%, 100% {
    transform: translateY(-50%) translateX(0) scale(1);
  }
  50% {
    transform: translateY(-50%) translateX(0) scale(1.03);
  }
}

@keyframes pulse-ring {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(255, 87, 34, 0.5), 0 0 0 0 rgba(255, 87, 34, 0.7);
  }
  50% {
    box-shadow: 0 4px 20px rgba(255, 87, 34, 0.5), 0 0 0 15px rgba(255, 87, 34, 0);
  }
}

@keyframes ping {
  75%, 100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Desktop floating button - positioned differently */
@media (min-width: 769px) {
  .floating-call-btn {
    width: 70px;
    height: 70px;
    font-size: 28px;
    right: 30px;
    top: 50%;
    transform: translateY(-50%) scale(0.8);
  }

  .floating-call-btn.show {
    transform: translateY(-50%) scale(1);
  }

  .floating-call-btn:hover {
    transform: translateY(-50%) scale(1.15);
  }

  /* Desktop tooltip - larger and more prominent */
  .floating-call-btn::after {
    content: 'Tap to Call for Instant Quote! 💰';
    font-size: 15px;
    padding: 14px 22px;
    right: 85px;
  }

  .floating-call-btn.show::after {
    transform: translateY(-50%) translateX(0);
  }

  .floating-call-btn:hover::after {
    transform: translateY(-50%) translateX(-5px) scale(1.05);
  }
}

/* Mobile tooltip - compact on small screens */
@media (max-width: 380px) {
  .floating-call-btn::after {
    content: 'Call Now! 💰';
    font-size: 12px;
    padding: 10px 14px;
    right: 70px;
  }
}

/* CTA sections with conversion-optimized gradient */
.cta-section {
  background: linear-gradient(135deg, #F5F5F5 0%, #EEEEEE 100%) !important;
  color: var(--text-dark) !important;
}

.cta-title {
  color: var(--text-dark) !important;
  font-weight: 800;
}

.cta-description {
  color: #546E7A !important;
  opacity: 1;
}

/* Price badge - High-urgency action color */
.price-badge {
  background: var(--cta-primary) !important;
  color: white !important;
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4) !important;
}

.price-badge::before {
  border-color: var(--accent-dark) !important;
}

/* Footer CTA button - High-converting action orange */
.cta-button-modern .button-content {
  background-color: var(--cta-primary) !important;
  color: white !important;
  font-weight: 700;
}

.cta-button-modern .button-icon {
  background-color: rgba(255, 255, 255, 0.25) !important;
}

.cta-button-modern .button-icon i {
  color: white !important;
}

.cta-button-modern .button-label {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 13px;
}

.cta-button-modern .button-action {
  color: white !important;
  font-weight: 700;
  font-size: 20px;
}

.cta-button-modern:hover .button-content {
  background-color: var(--accent-dark) !important;
  transform: scale(1.02);
}

/* Hero CTA button (legacy) */
.cta-content {
  background: linear-gradient(135deg, var(--cta-primary), var(--accent-dark)) !important;
}

.cta-content:hover {
  background: linear-gradient(135deg, #FF6F00, #D84315) !important;
}

/* ============================================
   MIAMI-SPECIFIC LAYOUT STYLES
   Complete structural redesign for differentiation
   ============================================ */

/* Miami Hero Section - MOBILE FIRST - Conversion-optimized layout */
.miami-hero-section {
  position: relative;
  padding: 40px 0 40px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 50%, #EEEEEE 100%);
  overflow: hidden;
}

/* Desktop enhancement */
@media (min-width: 769px) {
  .miami-hero-section {
    padding: 100px 0 80px;
  }
}

.miami-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%232196F3" fill-opacity="0.08" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom center;
  background-size: cover;
  opacity: 0.5;
  z-index: 0;
}

.miami-hero-center {
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 15px;
}

/* Desktop enhancement */
@media (min-width: 769px) {
  .miami-hero-center {
    max-width: 900px;
    padding: 0;
  }
}

.miami-badge {
  display: inline-block;
  background: var(--cta-primary);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
  animation: badge-glow 3s infinite;
}

@keyframes badge-glow {
  0%, 100% { box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4); }
  50% { box-shadow: 0 4px 20px rgba(255, 87, 34, 0.6); }
}

.miami-badge i {
  margin-right: 8px;
  font-size: 14px;
}

/* Desktop enhancement */
@media (min-width: 769px) {
  .miami-badge {
    padding: 8px 20px;
    font-size: 14px;
  }
}

.miami-hero-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
}

/* Desktop enhancement */
@media (min-width: 769px) {
  .miami-hero-title {
    font-size: 52px;
    margin-bottom: 20px;
  }
}

.miami-highlight {
  color: var(--cta-primary);
  background: rgba(255, 255, 255, 0.9);
  padding: 2px 8px;
  border-radius: 4px;
  text-shadow: 2px 2px 4px rgba(255, 87, 34, 0.2);
  font-weight: 800;
}

/* High-contrast highlight for better visibility on any background */
.miami-highlight-contrast {
  color: var(--cta-primary);
  background: rgba(255, 255, 255, 0.95);
  padding: 4px 12px;
  border-radius: 6px;
  text-shadow: 2px 2px 8px rgba(255, 87, 34, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  font-weight: 800;
  display: inline-block;
}

.miami-hero-subtitle {
  font-size: 16px;
  color: #37474F;
  margin-bottom: 25px;
  padding: 0 10px;
}

/* Desktop enhancement */
@media (min-width: 769px) {
  .miami-hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    padding: 0;
  }
}

/* Miami Benefits Row - MOBILE FIRST */
.miami-benefits-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 30px 0;
  padding: 0 10px;
}

.miami-benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 15px 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.miami-benefit-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--cta-primary);
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.miami-benefit-item span {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 13px;
  text-align: center;
}

/* Desktop enhancement */
@media (min-width: 769px) {
  .miami-benefits-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    padding: 0;
  }

  .miami-benefit-item {
    padding: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .miami-benefit-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .miami-benefit-item span {
    font-size: 16px;
  }
}

/* Miami CTA Phone Button - MOBILE FIRST */
.miami-cta-wrapper {
  margin-top: 30px;
  padding: 0 10px;
}

.miami-phone-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: linear-gradient(135deg, var(--cta-primary), var(--accent-dark));
  color: white;
  padding: 18px 30px;
  border-radius: 60px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(255, 87, 34, 0.5);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}

.miami-phone-cta:active {
  transform: scale(0.98);
}

.miami-phone-cta i {
  font-size: 20px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

/* Desktop enhancement */
@media (min-width: 769px) {
  .miami-cta-wrapper {
    margin-top: 40px;
    padding: 0;
  }

  .miami-phone-cta {
    display: inline-flex;
    gap: 20px;
    background: linear-gradient(135deg, var(--cta-primary), var(--accent-dark));
    padding: 20px 40px;
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.5);
    width: auto;
  }

  .miami-phone-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 87, 34, 0.6);
  }

  .miami-phone-cta i {
    font-size: 22px;
    width: 54px;
    height: 54px;
  }
}

.miami-cta-pulse {
  display: none;
}

.miami-cta-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.miami-cta-label {
  font-size: 12px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.miami-cta-number {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

/* Desktop enhancement */
@media (min-width: 769px) {
  .miami-cta-label {
    font-size: 14px;
  }

  .miami-cta-number {
    font-size: 24px;
  }
}

/* Miami Form Section - MOBILE FIRST - Separate from Hero */
.miami-form-section {
  padding: 40px 0;
  background: white;
  border-top: 3px solid var(--cta-primary);
}

.miami-form-container {
  max-width: 100%;
  margin: 0 15px;
  background: #F5F5F5;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Desktop enhancement */
@media (min-width: 769px) {
  .miami-form-section {
    padding: 60px 0;
  }

  .miami-form-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  }
}

.miami-form-header {
  text-align: center;
  margin-bottom: 25px;
}

.miami-form-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.miami-form-title i {
  color: var(--cta-primary);
  margin-right: 8px;
  font-size: 20px;
}

.miami-form-subtitle {
  font-size: 14px;
  color: #546E7A;
  line-height: 1.4;
}

/* Desktop enhancement */
@media (min-width: 769px) {
  .miami-form-header {
    margin-bottom: 30px;
  }

  .miami-form-title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .miami-form-title i {
    font-size: 28px;
    margin-right: 10px;
  }

  .miami-form-subtitle {
    font-size: 16px;
  }
}

.miami-quote-form {
  background: white;
  padding: 20px;
  border-radius: 8px;
}

.miami-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 20px;
}

/* Desktop enhancement */
@media (min-width: 769px) {
  .miami-quote-form {
    padding: 30px;
  }

  .miami-form-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
  }
}

.miami-form-group {
  display: flex;
  flex-direction: column;
}

.miami-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.miami-label i {
  color: #757575;
  margin-right: 6px;
}

.miami-input {
  padding: 16px;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s;
  -webkit-appearance: none;
  width: 100%;
}

/* Desktop enhancement */
@media (min-width: 769px) {
  .miami-label {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .miami-input {
    padding: 14px;
  }
}

.miami-input:focus {
  outline: none;
  border-color: var(--cta-primary);
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
}

.miami-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--cta-primary), var(--accent-dark));
  color: white;
  padding: 20px;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
  -webkit-tap-highlight-color: transparent;
  min-height: 56px;
}

.miami-submit-btn:active {
  transform: scale(0.98);
  box-shadow: 0 2px 10px rgba(255, 87, 34, 0.5);
}

.miami-submit-btn i {
  font-size: 20px;
}

/* Desktop enhancement */
@media (min-width: 769px) {
  .miami-submit-btn {
    padding: 18px;
    border-radius: 8px;
    font-size: 20px;
    min-height: auto;
  }

  .miami-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.6);
    background: linear-gradient(135deg, #FF6F00, #D84315);
  }

  .miami-submit-btn:active {
    transform: translateY(-1px);
  }

  .miami-submit-btn i {
    font-size: 22px;
  }
}

.miami-form-footer {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #546E7A;
}

.miami-trust-text {
  margin-bottom: 10px;
}

.miami-trust-text i {
  color: var(--trust-color);
  margin-right: 5px;
}

.miami-call-text a {
  color: var(--cta-primary);
  font-weight: 700;
  text-decoration: none;
}

/* Miami Timeline Process Section - MOBILE FIRST */
.miami-process-section {
  padding: 50px 0;
  background: linear-gradient(to bottom, white 0%, #F5F5F5 100%);
}

/* Desktop enhancement */
@media (min-width: 769px) {
  .miami-process-section {
    padding: 80px 0;
  }
}

.miami-section-header {
  text-align: center;
  margin-bottom: 35px;
  padding: 0 15px;
}

.miami-section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.miami-section-subtitle {
  font-size: 15px;
  color: #546E7A;
  line-height: 1.4;
}

/* Desktop enhancement */
@media (min-width: 769px) {
  .miami-section-header {
    margin-bottom: 60px;
    padding: 0;
  }

  .miami-section-title {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .miami-section-subtitle {
    font-size: 18px;
  }
}

.miami-timeline {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 15px;
  max-width: 100%;
  margin: 0 15px;
}

.miami-timeline-item {
  position: relative;
  width: 100%;
}

/* Desktop enhancement */
@media (min-width: 769px) {
  .miami-timeline {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .miami-timeline-item {
    flex: 1;
    min-width: 250px;
    width: auto;
  }
}

.miami-timeline-marker {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--cta-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
  z-index: 2;
}

.miami-step-num {
  font-size: 24px;
  font-weight: 800;
  color: white;
}

.miami-timeline-content {
  background: white;
  padding: 50px 25px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-top: 3px solid var(--cta-primary);
}

.miami-timeline-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 87, 34, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 30px;
  color: var(--cta-primary);
}

.miami-timeline-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.miami-timeline-arrow {
  font-size: 24px;
  color: var(--cta-primary);
  transform: rotate(90deg);
  margin: 5px 0;
  display: flex;
  justify-content: center;
}

/* Desktop enhancement */
@media (min-width: 769px) {
  .miami-timeline-arrow {
    font-size: 30px;
    transform: rotate(0deg);
    margin: 0;
  }
}

/* Miami Services Split Section - MOBILE FIRST - Trust-building blue background */
.miami-services-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #FFFFFF 0%, #F9F9F9 100%);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}

/* Desktop enhancement */
@media (min-width: 769px) {
  .miami-services-section {
    padding: 80px 0;
  }
}

.miami-services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,208C672,213,768,203,864,181.3C960,160,1056,128,1152,128C1248,128,1344,160,1392,176L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom center;
  background-size: cover;
  opacity: 0.3;
}

.miami-services-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
  padding: 0 15px;
}

/* Desktop enhancement */
@media (min-width: 769px) {
  .miami-services-split {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 0;
  }
}

.miami-services-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
}

.miami-services-text {
  font-size: 16px;
  margin-bottom: 25px;
  opacity: 0.95;
  line-height: 1.5;
}

/* Desktop enhancement */
@media (min-width: 769px) {
  .miami-services-title {
    font-size: 38px;
    margin-bottom: 20px;
  }

  .miami-services-text {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

.miami-vehicle-types {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.miami-vehicle-type {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.miami-vehicle-type i {
  font-size: 36px;
  color: var(--cta-primary);
}

.miami-vehicle-type h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.miami-vehicle-type p {
  font-size: 14px;
  opacity: 0.9;
}

.miami-services-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cta-primary);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
}

.miami-services-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(255, 87, 34, 0.6);
  background: #FF6F00;
}

.miami-condition-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

/* Desktop enhancement */
@media (min-width: 769px) {
  .miami-condition-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.miami-condition-card {
  background: white;
  color: var(--text-dark);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.miami-condition-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.miami-condition-card i {
  font-size: 36px;
  color: var(--cta-primary);
  margin-bottom: 15px;
}

.miami-condition-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.miami-condition-card p {
  font-size: 14px;
  color: #546E7A;
}

/* Miami Testimonials Section - MOBILE FIRST */
.miami-testimonials-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #FAFAFA 0%, #ECEFF1 100%);
}

.miami-testimonials-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 100%;
  margin: 0 15px;
}

/* Desktop enhancement */
@media (min-width: 769px) {
  .miami-testimonials-section {
    padding: 80px 0;
  }

  .miami-testimonials-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
  }
}

.miami-testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--cta-primary);
  transition: all 0.3s;
}

.miami-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.miami-testimonial-featured {
  background: linear-gradient(135deg, var(--cta-primary), var(--accent-dark));
  color: white;
  border-left: 4px solid #FFD54F;
}

.miami-testimonial-stars {
  color: #FFB300;
  font-size: 20px;
  margin-bottom: 15px;
}

.miami-testimonial-featured .miami-testimonial-stars {
  color: #FFD54F;
}

.miami-testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.miami-testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.miami-author-avatar {
  width: 50px;
  height: 50px;
  background: var(--cta-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.miami-testimonial-featured .miami-author-avatar {
  background: var(--cta-primary);
}

.miami-author-info {
  display: flex;
  flex-direction: column;
}

.miami-author-info strong {
  font-weight: 700;
  margin-bottom: 3px;
}

.miami-author-info span {
  font-size: 14px;
  opacity: 0.8;
}

/* Miami Features Section - MOBILE FIRST */
.miami-features-section {
  padding: 50px 0;
  background: white;
}

.miami-features-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 0 15px;
}

/* Desktop enhancement */
@media (min-width: 769px) {
  .miami-features-section {
    padding: 80px 0;
  }

  .miami-features-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0;
  }
}

.miami-feature-block {
  background: #F5F5F5;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.miami-feature-block:hover {
  border-color: var(--cta-primary);
  background: white;
  box-shadow: 0 8px 30px rgba(255, 87, 34, 0.15);
}

.miami-feature-primary {
  background: linear-gradient(135deg, rgba(255, 87, 34, 0.08), rgba(255, 87, 34, 0.12));
  border: 2px solid var(--cta-primary);
}

.miami-feature-icon-lg {
  width: 90px;
  height: 90px;
  background: var(--cta-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 25px;
  box-shadow: 0 6px 20px rgba(255, 87, 34, 0.3);
}

.miami-feature-block h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.miami-feature-block p {
  font-size: 16px;
  color: #546E7A;
  margin-bottom: 20px;
}

.miami-feature-checklist {
  list-style: none;
  padding: 0;
  text-align: left;
}

.miami-feature-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-dark);
}

.miami-feature-checklist i {
  color: var(--trust-color);
  font-size: 18px;
}

/* These mobile styles are now handled by mobile-first approach above */

