/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    height: 100vh - 100px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(26, 26, 46, 0.85), rgba(26, 26, 46, 0.9)), 
                var(--bg-hero);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    overflow: hidden;
    padding-top: 100px;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.3);
}

.hero-title {
    color: #F0F2F5;
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.title-line.highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.title-line.highlight:after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 15px;
    background: rgba(211, 47, 47, 0.2);
    z-index: -1;
    border-radius: 5px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
    margin: 0 auto 10px;
}

.wheel {
    width: 4px;
    height: 10px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

.arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    opacity: 0;
    animation: scrollArrow 2s infinite;
}

.arrow span:nth-child(1) {
    animation-delay: 0s;
}

.arrow span:nth-child(2) {
    animation-delay: 0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes scrollArrow {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.1) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    top: 50%;
    left: 10%;
}

/* ===== Featured Cars ===== */
.section-header {
    margin-bottom: 5rem;
}


/* ===== Why Choose Us ===== */
.features-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.feature-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.feature-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.feature-icon {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    position: relative;
    z-index: 1;
}

.feature-icon-bg {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(10px);
}

.feature-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.feature-hover {
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.feature-card:hover .feature-hover {
    opacity: 1;
    transform: translateY(0);
}

.section-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
}

.bg-circle-1 {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -250px;
}

.bg-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
}

.bg-circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 10%;
}

/* ===== Request Details ===== */
.request-form-wrapper {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow);
    height: 100%;
}

.form-header {
    margin-bottom: 3rem;
}

.form-subtitle {
    color: var(--text-light);
    margin-top: 0.5rem;
}

.form-floating {
    position: relative;
}

.form-floating label {
    color: var(--text-light);
    font-weight: 400;
}

.form-control, .form-select {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    color: var(--text-color);
    font-size: 1rem;
    transition: var(--transition);
    height: auto;
}

.form-control:focus, .form-select:focus {
    background: var(--bg-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(211, 47, 47, 0.15);
}

.form-text {
    color: var(--text-light);
    font-size: 0.9rem;
}

.form-check-input {
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.2em;
    border: 2px solid var(--border-color);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    color: var(--text-color);
    margin-left: 0.5rem;
}

.contact-info-wrapper {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 3rem;
    color: white;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    opacity: 0.5;
}

.contact-info-title {
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.contact-info-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.contact-icon i {
    color: #ffffff;
}

.contact-details h5 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.25rem;
}

.contact-details small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
}

.hour-item span:first-child {
    color: rgba(255, 255, 255, 0.8);
}

.hour-item span:last-child {
    color: white;
    font-weight: 500;
}

.text-closed {
    color: rgba(255, 255, 255, 0.5) !important;
    font-style: italic;
}

.contact-map-preview {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.map-preview-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.map-preview-header i {
    font-size: 1.5rem;
    color: white;
}

.map-preview-header h6 {
    color: white;
    margin: 0;
    font-size: 1.1rem;
}

.map-preview-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.map-preview-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.map-preview-link:hover {
    gap: 15px;
    color: var(--accent-color);
}

/* ===== Testimonials ===== */
/* ===== Testimonials Section - Fully Responsive ===== */
.testimonials-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #F0F2F5 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
    padding: 0 10px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 10px;
    box-sizing: border-box;
    min-height: 1px;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 350px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.15;
    font-family: var(--font-heading);
    line-height: 1;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 10px;
}

.testimonial-rating {
    color: #FFC107;
    font-size: 1.1rem;
    display: flex;
    gap: 3px;
}

.testimonial-date {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 150px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--primary-color);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex-grow: 1;
    min-width: 150px;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.testimonial-car {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.testimonial-car i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Controls */
.testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.testimonials-prev,
.testimonials-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.testimonials-prev:hover:not(:disabled),
.testimonials-next:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.3);
}

.testimonials-prev:disabled,
.testimonials-next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: var(--border-color);
}

.testimonials-progress {
    width: 150px;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 15px;
    order: 1;
    flex-grow: 1;
    max-width: 200px;
}

.testimonials-progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    width: 0%;
    transition: width 0.3s ease;
}

.testimonials-dots {
    display: flex;
    gap: 8px;
    margin: 0 15px;
    order: 2;
    justify-content: center;
    width: 100%;
    margin-top: 15px;
}

.testimonials-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
    outline: none;
}

.testimonials-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 0 0 2px rgba(211, 47, 47, 0.2);
}

.testimonials-dot:hover:not(.active) {
    background: var(--text-light);
    transform: scale(1.1);
}

/* Statistics */
.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.testimonial-stat {
    text-align: center;
    flex: 1;
    min-width: 120px;
    padding: 1rem;
}

.testimonial-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    line-height: 1;
}

.testimonial-stat-label {
    color: var(--text-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablets (768px and up) */
@media (min-width: 768px) {
    .testimonial-slide {
        flex: 0 0 50%; /* 2 cards on tablet */
    }
    
    .testimonial-card {
        padding: 2.5rem;
    }
    
    .testimonial-card::before {
        font-size: 5rem;
        top: 20px;
        left: 25px;
    }
    
    .testimonial-text {
        -webkit-line-clamp: 5;
        max-height: 120px;
        font-size: 1.05rem;
    }
    
    .testimonials-dots {
        width: auto;
        margin-top: 0;
        order: 0;
    }
    
    .testimonials-progress {
        order: 1;
        width: 200px;
        margin: 0 20px;
    }
    
    .testimonials-controls {
        flex-wrap: nowrap;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .testimonial-stat-number {
        font-size: 2.5rem;
    }
}

/* Desktop (992px and up) */
@media (min-width: 992px) {
    .testimonial-slide {
        flex: 0 0 33.333%; /* 3 cards on desktop */
    }
    
    .testimonials-slider {
        padding: 0 15px;
    }
    
    .testimonial-slide {
        padding: 15px;
    }
    
    .testimonial-text {
        -webkit-line-clamp: 4;
    }
    
    .testimonial-stat {
        flex: 0;
        min-width: auto;
    }
}

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .testimonial-card {
        padding: 3rem;
    }
    
    .testimonial-card::before {
        font-size: 6rem;
        top: 25px;
        left: 30px;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .testimonials-controls {
        gap: 3rem;
    }
    
    .testimonials-prev,
    .testimonials-next {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
    }
}

/* Small Mobile (480px and down) */
@media (max-width: 480px) {
    .testimonial-slide {
        padding: 8px;
    }
    
    .testimonials-slider {
        padding: 0 5px;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .testimonial-card::before {
        font-size: 3rem;
        top: 10px;
        left: 15px;
    }
    
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 1rem;
    }
    
    .testimonial-rating {
        font-size: 1rem;
    }
    
    .testimonial-date {
        font-size: 0.8rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.5;
        -webkit-line-clamp: 5;
        max-height: 130px;
        margin-bottom: 1rem;
    }
    
    .testimonial-footer {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding-top: 1rem;
    }
    
    .testimonial-avatar {
        width: 70px;
        height: 70px;
    }
    
    .testimonial-info {
        text-align: center;
        min-width: 100%;
    }
    
    .testimonial-name {
        font-size: 1rem;
    }
    
    .testimonial-car {
        justify-content: center;
        font-size: 0.85rem;
    }
    
    .testimonials-controls {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .testimonials-prev,
    .testimonials-next {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .testimonials-progress {
        width: 120px;
        margin: 0 10px;
    }
    
    .testimonials-dots {
        gap: 6px;
        margin-top: 10px;
    }
    
    .testimonials-dot {
        width: 8px;
        height: 8px;
    }
    
    .testimonials-stats {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .testimonial-stat {
        min-width: 100px;
        padding: 0.75rem;
    }
    
    .testimonial-stat-number {
        font-size: 1.8rem;
    }
    
    .testimonial-stat-label {
        font-size: 0.8rem;
    }
}

/* Very Small Mobile (360px and down) */
@media (max-width: 360px) {
    .testimonial-card {
        padding: 1.25rem;
        min-height: 300px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        -webkit-line-clamp: 6;
        max-height: 140px;
    }
    
    .testimonial-name {
        font-size: 0.95rem;
    }
    
    .testimonial-car {
        font-size: 0.8rem;
    }
    
    .testimonials-controls {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .testimonials-progress {
        order: 0;
        width: 100%;
        max-width: 250px;
        margin: 0;
    }
    
    .testimonials-dots {
        order: 1;
    }
    
    .testimonials-prev,
    .testimonials-next {
        order: 2;
    }
}

/* Landscape Mobile Optimization */
@media (max-height: 600px) and (orientation: landscape) {
    .testimonial-card {
        min-height: 280px;
        padding: 1.5rem;
    }
    
    .testimonial-text {
        -webkit-line-clamp: 3;
        max-height: 80px;
    }
    
    .testimonial-footer {
        padding-top: 1rem;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .testimonial-card:hover {
        transform: none;
    }
    
    .testimonials-prev,
    .testimonials-next {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
    }
    
    .testimonials-dot {
        width: 12px;
        height: 12px;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .testimonial-card {
        border-width: 0.5px;
    }
}
/* ===== Map Section ===== */
.map-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.map-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 2;
}

.map-info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    max-width: 350px;
}

.map-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.map-card-title i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.map-location {
    margin-bottom: 1.5rem;
}

.map-location h5 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.map-location p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.map-instructions {
    background: rgba(211, 47, 47, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-instructions i {
    color: var(--primary-color);
}

.map-instructions p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin: 0;
}

.btn-map-directions {
    background: var(--gradient-primary);
    color: white;
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
}

/* ===== Sell Section ===== */
.sell-section {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    color: white;
    overflow: hidden;
}

.sell-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(211, 47, 47, 0.2) 0%, transparent 50%);
}

.sell-content {
    position: relative;
    z-index: 2;
}

.sell-badge {
    display: inline-block;
    background: var(--gradient-accent);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(255, 152, 0, 0.3);
}

.sell-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.sell-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.sell-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.sell-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sell-feature i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.sell-feature span {
    color: white;
    font-size: 1.1rem;
}

.sell-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-sell-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    box-shadow: 0 15px 30px rgba(211, 47, 47, 0.4);
}

.btn-sell-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(211, 47, 47, 0.5);
}

.btn-sell-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-sell-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-5px);
}

.sell-image-wrapper {
    position: relative;
    z-index: 2;
}

.sell-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition);
}

.sell-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.sell-image img {
    width: 100%;
    height: auto;
    display: block;
}

.sell-image-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--gradient-accent);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 4s ease-in-out infinite;
}

.badge-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badge-text {
    font-size: 0.8rem;
    color: white;
    letter-spacing: 1px;
    font-weight: 600;
}

.badge-price {
    font-size: 1.8rem;
    color: white;
    font-weight: 800;
    font-family: var(--font-heading);
}