:root {
    /* Color Palette */
    --primary-navy: #1E3A8A;
    --primary-navy-dark: #172554;
    --accent-orange: #F97316;
    --accent-orange-hover: #EA580C;
    --success-green: #10B981;
    
    /* Neutrals */
    --text-dark: #0F172A;
    --text-muted: #64748B;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --border-color: #E2E8F0;
    
    /* Spacing Scale */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 64px;
    --space-xxl: 120px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
}

section {
    padding: 80px 0;
}

html {
    scroll-behavior: smooth;
}

/* SVG Icon System */
.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
    vertical-align: middle;
}

.icon-lg { font-size: 2rem; }
.icon-md { font-size: 1.5rem; }
.icon-sm { font-size: 1rem; }

/* Top Banner */
.top-banner {
    background: var(--primary-navy);
    color: var(--white);
    padding: 8px 0;
    text-align: center;
    font-size: 0.875rem;
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-banner p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.top-banner i {
    color: #fbbf24;
    font-size: 1rem;
}

.top-banner strong {
    font-weight: 600;
}

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

/* Header and Navigation */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-logo h2 {
    color: var(--primary-navy);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.01em;
}

.nav-logo i {
    margin-right: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-link:hover {
    color: #2563eb;
}

.login-btn {
    background: #f1f5f9;
    color: #475569 !important;
}

.register-btn {
    background: #2563eb;
    color: white !important;
}

.login-btn:hover,
.register-btn:hover {
    transform: translateY(-1px);
}

/* Interactive Elements - Keyboard Focus */
a:focus-visible, 
button:focus-visible, 
input:focus-visible, 
select:focus-visible, 
textarea:focus-visible {
    outline: 2px solid var(--accent-orange);
    outline-offset: 4px;
}

/* Navigation CTA Adjustment */
.nav-menu .btn-primary {
    padding: 10px 20px;
    font-size: 0.875rem;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.image-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #f59e0b;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.back-to-top.show {
    display: flex;
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    color: var(--white);
    padding: var(--space-xl) 0 var(--space-lg);
    text-align: center;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

/* RV Showcase in Hero */
.rv-showcase {
    margin-top: 20px;
}

.rv-types-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    justify-items: center;
}

.rv-type {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.rv-image {
    position: relative;
    height: 80px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 10px;
}

.rv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease;
    aspect-ratio: 16 / 9;
}

.rv-type:hover .rv-image img {
    transform: scale(1.05);
}

.rv-type h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.rv-type p {
    font-size: 0.85rem;
    opacity: 0.9;
    color: white;
    margin: 0;
}

/* Featured Listings */
.featured-listings {
    padding: 20px 0 !important;
    background: #f8fafc;
}

.featured-listings h2 {
    font-size: 1.5rem !important;
    margin-bottom: 15px !important;
    text-align: center;
}

.listings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
    max-width: 800px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.listing-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.listing-card:hover {
    transform: translateY(-2px);
}

.listing-image {
    height: 60px !important;
    overflow: hidden;
}

.listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-tag {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #dc2626;
    color: white;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
}

.listing-info {
    padding: 6px !important;
}

.listing-info h3 {
    font-size: 0.7rem !important;
    font-weight: 600;
    margin-bottom: 3px !important;
    color: #1e293b;
    line-height: 1.1;
}

.listing-info p {
    font-size: 0.7rem !important;
    color: #64748b;
    margin-bottom: 4px !important;
    line-height: 1.2;
}

.listing-actions {
    display: flex;
    gap: 4px;
    align-items: center;
}

.listing-actions .btn {
    padding: 4px 8px !important;
    font-size: 0.7rem !important;
    flex: 1;
}

.listing-actions .btn-outline {
    flex: 0;
    padding: 4px !important;
    min-width: 28px !important;
}

/* First featured listing - larger format */
.listing-card.featured-first {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.listing-card.featured-first .listing-image {
    height: 120px !important;
}

.listing-card.featured-first .listing-info {
    padding: 15px !important;
}

.listing-card.featured-first .listing-info h3 {
    font-size: 1rem !important;
    margin-bottom: 8px !important;
}

.listing-card.featured-first .listing-info p {
    font-size: 0.8rem !important;
    margin-bottom: 8px !important;
}

.listing-card.featured-first .listing-actions .btn {
    padding: 6px 10px !important;
    font-size: 0.75rem !important;
}

.listing-card.featured-first .listing-actions .btn-outline {
    padding: 6px !important;
    min-width: 32px !important;
}

/* Disclaimer Section */
.disclaimer-banner {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 12px;
    border-left: 5px solid #ea580c;
}

.disclaimer-banner h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer-banner h3 i {
    font-size: 1.3rem;
}

.disclaimer-banner p {
    margin: 8px 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

.disclaimer-banner ul {
    margin-left: 20px;
    margin-top: 10px;
}

.disclaimer-banner li {
    margin-bottom: 5px;
}

/* Light Disclaimer Section (Before Footer) */
.disclaimer-light-section {
    padding: 20px 0;
    margin-bottom: 40px;
}

.disclaimer-light-banner {
    background: #f0f9ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.disclaimer-light-banner i {
    color: #0ea5e9;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.disclaimer-light-banner h3 {
    color: #0c4a6e;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.disclaimer-light-banner p {
    color: #0c4a6e;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.disclaimer-light-banner strong {
    color: #0369a1;
}

.disclaimer-section {
    background: #fef3c7;
    padding: 40px;
    margin: 40px 0;
    border-radius: 12px;
    border-left: 5px solid #f59e0b;
}

.disclaimer-section h2 {
    font-size: 1.8rem;
    color: #92400e;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer-section h2 i {
    font-size: 1.8rem;
}

.disclaimer-section p {
    color: #92400e;
    margin-bottom: 15px;
    line-height: 1.6;
}

.disclaimer-section h3 {
    color: #92400e;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.disclaimer-section ul {
    margin-left: 20px;
    color: #92400e;
}

.disclaimer-section li {
    margin-bottom: 8px;
}

/* Alternative lighter disclaimer */
.disclaimer-light {
    background: #ecfdf5;
    border-left-color: #059669;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.disclaimer-light h4 {
    color: #047857;
    margin-bottom: 10px;
    font-weight: 600;
}

.disclaimer-light p {
    color: #047857;
    font-size: 0.95rem;
    margin: 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.featured-rv-types h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.quick-search-bar {
    display: flex;
    align-items: center;
}

.compact-search-form {
    display: flex;
    gap: 10px;
    align-items: center;
    background: white;
    padding: 8px;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.search-input {
    border: none;
    outline: none;
    padding: 8px 12px;
    font-size: 0.9rem;
    min-width: 200px;
    background: transparent;
}

.search-input::placeholder {
    color: #94a3b8;
}

.type-select {
    border: none;
    outline: none;
    padding: 8px 12px;
    font-size: 0.9rem;
    background: #f8fafc;
    border-radius: 15px;
    color: #475569;
    min-width: 120px;
}

.search-btn {
    background: #1d4ed8;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #1e40af;
}

.rv-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
    gap: 8px !important;
    max-width: 800px !important;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    padding: 0; /* Remove padding to allow image to be full width at top */
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    overflow: hidden; /* For image corners */
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 180px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card .service-content {
    padding: var(--spacing-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    /* Position over image or keep in content? 
       Let's keep it in content for clarity. */
}

.rv-type-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.rv-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.rv-type-image {
    position: relative;
    height: 8px !important;
    overflow: hidden;
}

.rv-type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.rv-type-card:hover .rv-type-image img {
    transform: scale(1.05);
}

.rv-type-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(37, 99, 235, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.rv-type-info {
    padding: 6px !important;
}

.rv-type-info h3 {
    font-size: 0.75rem !important;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px !important;
}

.rv-type-info p {
    color: #64748b;
    margin-bottom: 4px !important;
    line-height: 1.1 !important;
    font-size: 0.65rem !important;
}

.rv-type-features {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 8px;
}

.rv-type-features .feature {
    background: #f1f5f9;
    color: #475569;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 500;
}

.rv-type-info .btn {
    width: 100%;
    text-align: center;
    padding: 6px 12px;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Service Categories */
.service-categories {
    padding: 0 20px;
}

.service-categories-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-category {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-category:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-category:hover .service-image img {
    transform: scale(1.05);
}

.service-category h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-category p {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    text-align: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
}

.btn-outline:hover {
    background: var(--primary-navy);
    color: var(--white);
    transform: translateY(-2px);
}

/* Quick Search */
.quick-search {
    background: white;
    padding: 60px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.search-container {
    text-align: center;
}

.search-container h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #1e293b;
}

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

.search-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 15px;
    align-items: center;
}

.search-form select,
.search-form input {
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s ease;
}

.search-form select:focus,
.search-form input:focus {
    outline: none;
    border-color: #2563eb;
}

/* Featured Services */
.featured-services {
    padding: 80px 0;
}

.featured-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e293b;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
    padding: 0 8px;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: #2563eb;
}

.service-card i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 16px;
    display: block;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.service-card p {
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #2563eb;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.service-info {
    padding: 25px;
}

.service-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e293b;
}

.location {
    color: #64748b;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.specs {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.service-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.service-actions .btn {
    flex: 1;
}

.service-actions .btn-outline {
    flex: 0;
    padding: 12px;
}

/* Service Provider Showcase */
.provider-showcase {
    background: #f8fafc;
    padding: 80px 0;
}

.provider-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1e293b;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 50px;
}

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

.provider-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.provider-card:hover {
    transform: translateY(-5px);
}

.provider-card i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 20px;
}

.provider-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1e293b;
}

.provider-card p {
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e293b;
}

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

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1e293b;
}

.step p {
    color: #64748b;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: #dc2626;
}

.cta-buttons .btn-primary:hover {
    background: #f1f5f9;
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #2563eb;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2563eb;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #334155;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #2563eb;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
    color: #94a3b8;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Cost Comparison Section */
.cost-comparison {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.comparison-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.comparison-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.comparison-text p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #cbd5e1;
}

.cost-breakdown {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.cost-option {
    flex: 1;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.cost-option.expensive {
    background: rgba(220, 38, 38, 0.1);
    border: 2px solid #dc2626;
}

.cost-option.affordable {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid #22c55e;
}

.cost-option h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cost-label {
    color: #cbd5e1;
}

.cost-value {
    font-weight: 600;
    color: white;
}

.cost-total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fbbf24;
}

.comparison-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

/* Towing Guide Section */
.towing-guide {
    padding: 60px 0;
    background: #f8fafc;
}

.towing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.towing-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.towing-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}

.towing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.towing-feature {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.towing-feature i {
    font-size: 2rem;
    color: #dc2626;
    margin-bottom: 15px;
}

.towing-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.towing-feature p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* Trust Strip */
.trust-strip {
    background: var(--white);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.trust-item i {
    font-size: 1.75rem;
    color: var(--primary-navy);
}

.trust-item div {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.trust-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trust-badge-mini {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge-mini i {
    color: var(--success-green);
}

/* Financing Section */
.financing-section {
    padding: 60px 0;
    background: white;
}

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

.financing-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.financing-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.6;
}

.financing-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.benefit {
    text-align: center;
    padding: 30px 20px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.benefit i {
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 20px;
}

.benefit h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
}

.benefit p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Section Spacing Utilities */
section {
    padding: var(--space-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--text-dark);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Service Section */
.service-section {
    padding: 60px 0;
    background: #f8fafc;
}

.service-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    text-align: center;
}

.service-text > p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.6;
    text-align: center;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.service-category {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.service-category h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
    border-bottom: 2px solid #dc2626;
    padding-bottom: 10px;
}

.service-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-category li {
    padding: 8px 0;
    color: #64748b;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 20px;
}

.service-category li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

.service-category li:last-child {
    border-bottom: none;
}

/* Towing Guide Styles */
.towing-guide-header {
    background: linear-gradient(135deg, #dc2626 0%, #1d4ed8 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 70px;
}

.towing-guide-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.towing-guide-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.towing-guide-content {
    padding: 60px 0;
    background: white;
}

.guide-section {
    margin-bottom: 80px;
    padding: 40px;
    background: #f8fafc;
    border-radius: 20px;
    border-left: 6px solid #dc2626;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.section-icon {
    background: #dc2626;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.content-text h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
}

.content-text h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin: 25px 0 15px 0;
}

.content-text p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.weight-terms, .calculation-steps, .safety-checklist, .emergency-list {
    list-style: none;
    padding: 0;
}

.weight-terms li, .calculation-steps li, .safety-checklist li, .emergency-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 20px;
}

.weight-terms li:before, .calculation-steps li:before, .safety-checklist li:before, .emergency-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

.safety-tip {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.safety-tip h4, .safety-tip h5 {
    color: #92400e;
    margin-bottom: 10px;
}

.safety-tip p {
    color: #92400e;
    margin: 0;
}

.hitch-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.hitch-type {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
}

.hitch-type h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
    border-bottom: 2px solid #dc2626;
    padding-bottom: 8px;
}

.hitch-type ul {
    list-style: none;
    padding: 0;
}

.hitch-type li {
    padding: 5px 0;
    color: #64748b;
    font-size: 0.9rem;
}

.regional-safety {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.content-image {
    position: relative;
}

.content-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.image-caption {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 15px;
    border-radius: 0 0 10px 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.image-caption p {
    margin: 0;
    font-size: 0.9rem;
}

.equipment-showcase {
    margin-top: 40px;
}

.equipment-category {
    margin-bottom: 50px;
}

.equipment-category h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid #dc2626;
    padding-bottom: 10px;
}

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

.equipment-item {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.equipment-item:hover {
    transform: translateY(-5px);
}

.equipment-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.equipment-item h4, .equipment-item h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.equipment-item p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Blog Styles */
.blog-header {
    background: linear-gradient(135deg, #dc2626 0%, #1d4ed8 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 70px;
}

.blog-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.blog-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.blog-content {
    padding: 60px 0;
    background: #f8fafc;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.blog-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-post.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.post-image {
    height: 200px;
    overflow: hidden;
}

.blog-post.featured .post-image {
    height: 300px;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    padding: 30px;
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.category {
    background: #dc2626;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.date {
    color: #64748b;
    font-size: 0.9rem;
}

.post-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.3;
}

.post-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.detailed-articles {
    padding: 60px 0;
    background: white;
}

.detailed-article {
    margin-bottom: 80px;
}

.detailed-article h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 40px;
    text-align: center;
}

.rv-type-section {
    margin-bottom: 50px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 4px solid #dc2626;
}

.rv-type-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
}

.type-info {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    align-items: start;
}

.type-image {
    height: 150px;
    overflow: hidden;
    border-radius: 10px;
}

.type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.type-details p {
    margin-bottom: 10px;
    color: #475569;
    line-height: 1.5;
}

.maintenance-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.maintenance-category {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    border-top: 4px solid #dc2626;
}

.maintenance-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
}

.maintenance-category ul {
    list-style: none;
    padding: 0;
}

.maintenance-category li {
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 20px;
}

.maintenance-category li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

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

.benefit-item {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: border-color 0.3s ease;
}

.benefit-item:hover {
    border-color: #dc2626;
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #64748b;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: white;
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 50px;
    text-align: center;
}

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

.faq-item {
    background: #f8fafc;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .search-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .rv-types-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .service-categories-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 4px;
    }
    
    .providers-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* New sections responsive */
    .towing-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .towing-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .financing-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .financing-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .service-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .compact-search-form {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
    
    .search-input {
        min-width: auto;
        width: 100%;
    }
    
    .type-select {
        min-width: auto;
        width: 100%;
    }
    
    .top-banner p {
        flex-direction: column;
        gap: 4px;
        font-size: 0.85rem;
    }
    
    .rv-types-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .rv-image {
        height: 60px;
    }
    
    .rv-type {
        padding: 10px;
    }
    
    .rv-type h3 {
        font-size: 0.9rem;
    }
    
    .rv-type p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .rv-types-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .featured-rv-types h2 {
        font-size: 2rem;
    }
    
    .service-categories-container {
        grid-template-columns: 1fr;
    }
    
    .service-category {
        padding: 20px;
    }
    
    .search-container h2 {
        font-size: 1.8rem;
    }
    
    .featured-services h2,
    .provider-showcase h2,
    .how-it-works h2,
    .cta-section h2 {
        font-size: 2rem;
    }
}

/* Enhanced placeholder for missing images */
.service-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.service-image::before {
    content: '🏠';
    font-size: 3rem;
    opacity: 0.8;
    margin-bottom: 8px;
}

.service-image::after {
    content: 'Service Image Coming Soon';
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    text-align: center;
    line-height: 1.2;
}

.service-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.service-image img[src*="placeholder"] {
    opacity: 0;
}

/* Image loading states */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Animated loading effect for placeholders */
@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.service-image::before {
    animation: pulse 2s ease-in-out infinite;
}

/* Hover effects for placeholders */
.service-image:hover::before {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Welcome Banner */
.welcome-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 0;
    text-align: center;
}

.welcome-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.welcome-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* User Dropdown */
.user-dropdown {
    position: relative;
    display: inline-block;
}

.user-name {
    color: #333;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.user-name:hover {
    background-color: #f1f5f9;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1000;
    right: 0;
    top: 100%;
    margin-top: 5px;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.3s ease;
}

/* Marketplace UX Hardening */
.upload-zone {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    background: #f8fafc;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: var(--spacing-sm);
}

.upload-zone.dragover {
    border-color: var(--primary-color);
    background: #eff6ff;
}

.upload-zone .icon {
    width: 48px;
    height: 48px;
    color: #64748b;
    margin-bottom: var(--spacing-sm);
}

.upload-zone h4 {
    margin-bottom: 4px;
    color: var(--neutral-dark);
}

.upload-zone p {
    color: #64748b;
    font-size: 0.9rem;
}

.image-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 16px;
    margin-top: var(--spacing-md);
}

.preview-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-item .remove-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ef4444;
    transition: all 0.2s ease;
}

.preview-item .remove-btn:hover {
    background: #ef4444;
    color: white;
}

.preview-item .main-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 58, 138, 0.8);
    color: white;
    font-size: 10px;
    text-align: center;
    padding: 2px 0;
}

/* Moderation */
.report-listing {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.report-btn {
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.report-btn:hover {
    color: #ef4444;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.modal-header h2 {
    font-size: 1.5rem;
    color: var(--neutral-dark);
}

.report-form .form-group {
    margin-bottom: var(--spacing-md);
}

.report-form label {
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
}

.report-form select, 
.report-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
}

/* Animations */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.spin {
    animation: spin 1s linear infinite;
}

.dropdown-content a:hover {
    background-color: #f8fafc;
}

.user-dropdown:hover .dropdown-content {
    display: block;
}

/* Mobile responsive for user dropdown */
@media (max-width: 768px) {
    .welcome-content h2 {
        font-size: 1.5rem;
    }
    
    .welcome-content p {
        font-size: 1rem;
    }
    
    .dropdown-content {
        right: -50px;
        min-width: 150px;
    }
}

/* Profile Page Styles */
.profile-content {
    padding: 20px 0;
}

.profile-info {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
}

.profile-avatar {
    font-size: 4rem;
    color: #667eea;
    margin-right: 20px;
}

.profile-details h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #333;
}

.profile-details p {
    color: #666;
    margin-bottom: 4px;
}

.profile-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.stat-item h4 {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 8px;
}

.stat-item p {
    color: #666;
    font-weight: 500;
}

/* My Services Page Styles */
.services-section {
    padding: 40px 0;
    min-height: 60vh;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.services-header h1 {
    font-size: 2.5rem;
    color: #333;
}

.services-filters {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group label {
    font-weight: 500;
    color: #333;
}

.filter-group select {
    padding: 8px 12px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    background: white;
    color: #333;
}

.no-services {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-services i {
    font-size: 4rem;
    color: #cbd5e0;
    margin-bottom: 20px;
}

.no-services h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.no-services p {
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile responsive for profile and services */
@media (max-width: 768px) {
    .profile-info {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .profile-actions {
        justify-content: center;
    }
    
    .services-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .services-filters {
        flex-direction: column;
        gap: 15px;
    }
}

/* Service Form Styles */
.service-form-section,
.listing-form-section {
    padding: 80px 0 60px;
    min-height: 80vh;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
}

.service-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 50px;
    padding: 30px 0;
    border-bottom: 2px solid #f1f5f9;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
    display: inline-block;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group small {
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

.form-actions {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f1f5f9;
}

/* Mobile responsive for service form */
@media (max-width: 768px) {
    .service-form {
        padding: 20px;
        margin: 0 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-header h1 {
        font-size: 2rem;
    }
}

/* Favorites and Contact Button Styles */
.service-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.service-actions .btn {
    flex: 1;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.service-actions .btn-outline {
    background: transparent;
    border: 2px solid #e2e8f0;
    color: #666;
    transition: all 0.3s ease;
}

.service-actions .btn-outline:hover {
    background: #f8fafc;
    border-color: #667eea;
    color: #667eea;
}

.service-actions .btn-outline.favorited {
    background: #fef2f2;
    border-color: #ef4444;
    color: #ef4444;
}

.service-actions .btn-outline.favorited i {
    color: #ef4444;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 300px;
    animation: slideIn 0.3s ease;
}

.notification-success {
    border-left: 4px solid #22c55e;
}

.notification-error {
    border-left: 4px solid #ef4444;
}

.notification-info {
    border-left: 4px solid #3b82f6;
}

.notification button {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.notification button:hover {
    background: #f1f5f9;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile responsive for notifications */
@media (max-width: 768px) {
    .notification {
        right: 10px;
        left: 10px;
        min-width: auto;
    }
    
    .service-actions {
        flex-direction: column;
    }
    
    .service-actions .btn {
        min-width: auto;
    }
}

/* Edit Profile Form Styles */
.edit-profile-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 1rem;
}

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

.edit-profile-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2d3748;
}

.edit-profile-form input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.edit-profile-form input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.edit-profile-form .form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Featured Vendors Section */
.featured-vendors {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.featured-vendors .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.featured-vendors .section-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.featured-vendors .section-header p {
    font-size: 1.1rem;
    color: #64748b;
}

.vendors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.vendor-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #dc2626;
    display: flex;
    flex-direction: column;
}

.vendor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.vendor-card .vendor-header {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.vendor-card .company-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.vendor-card .rating-badge {
    background: #fbbf24;
    color: #78350f;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.vendor-card .rating-badge i {
    color: #f59e0b;
}

.vendor-card .vendor-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.vendor-card .vendor-location i {
    color: #dc2626;
}

.vendor-card .vendor-info {
    flex: 1;
}

.vendor-card .service-types {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.vendor-card .service-tag {
    background: #f0f4f8;
    color: #2563eb;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.vendor-card .vendor-pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.85rem;
}

.vendor-card .pricing-item {
    display: flex;
    flex-direction: column;
}

.vendor-card .pricing-label {
    color: #64748b;
    font-weight: 500;
    margin-bottom: 3px;
}

.vendor-card .pricing-value {
    color: #1e293b;
    font-weight: 700;
    font-size: 0.95rem;
}

.vendor-card .vendor-reviews {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 15px;
}

.vendor-card .vendor-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.vendor-card .vendor-actions .btn {
    flex: 1;
    font-size: 0.9rem;
}

/* Small Button Size */
.btn-small {
    padding: 8px 16px !important;
    font-size: 0.85rem !important;
}

/* Featured RV Types Grid Adjustments */
.featured-rv-types {
    background: #f8f9fa;
    padding: 60px 0;
}

.rv-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 15px;
}

.text-center {
    text-align: center;
    margin-top: 40px;
}

/* Quote Form Section */
.quote-form-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: calc(100vh - 200px);
}

.quote-form-section .container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.quote-form-wrapper {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.quote-form-header {
    margin-bottom: 40px;
    text-align: center;
}

.quote-form-header h1 {
    font-size: 2.2rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.quote-form-header p {
    font-size: 1rem;
    color: #64748b;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-section {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 25px;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h3 i {
    color: #dc2626;
    font-size: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Inter', sans-serif;
}

.input-group {
    display: flex;
    align-items: center;
}

.input-group input {
    flex: 1;
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-suffix {
    padding: 12px 15px;
    background: #f8f9fa;
    border: 2px solid #e2e8f0;
    border-left: none;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    color: #64748b;
    font-weight: 500;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    font-weight: 500;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.privacy-notice {
    background: #f0f9ff;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #0ea5e9;
}

.privacy-notice label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    font-weight: 400;
    color: #0c4a6e;
}

.privacy-notice input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding-top: 20px;
    border-top: 2px solid #e2e8f0;
}

.form-actions .btn {
    min-width: 200px;
}

/* Info Sidebar */
.quote-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #dc2626;
}

.info-card h4 {
    font-size: 1rem;
    color: #1e293b;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-card h4 i {
    color: #dc2626;
    font-size: 1.1rem;
}

.info-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

/* Single Column Forms */
.form-row.full {
    grid-template-columns: 1fr;
}

/* Responsive Design */
@media (max-width: 768px) {
    .quote-form-section .container {
        grid-template-columns: 1fr;
    }

    .quote-form-wrapper {
        padding: 25px;
    }

    .quote-form-header h1 {
        font-size: 1.8rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        min-width: auto;
    }

    .quote-info-sidebar {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .quote-form-wrapper {
        padding: 15px;
    }

    .form-section {
        padding-bottom: 20px;
    }

    .quote-form-header h1 {
        font-size: 1.5rem;
    }

    .quote-info-sidebar {
        grid-template-columns: 1fr;
    }
}