      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        /* Top Location Bar */
        .location-bar {
            background: rgb(17, 24, 39);
            border-bottom: 3px solid #DC2626;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .location-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            transition: all 0.3s ease;
            border-radius: 6px;
        }
        
        .location-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }
        
        .location-icon {
            width: 20px;
            height: 20px;
            background: #DC2626;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 11px;
            flex-shrink: 0;
        }
        
        .quick-search {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            padding: 6px 16px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }
        
        .quick-search:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .quick-search input {
            background: transparent;
            border: none;
            outline: none;
            color: white;
            font-size: 13px;
            width: 200px;
            font-weight: 500;
        }
        
        .quick-search input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .quick-search-btn {
            background: #DC2626;
            border: none;
            color: white;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 700;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        
        .quick-search-btn:hover {
            background: #B91C1C;
        }
        
        /* Hero Section */
        .hero-section {
            position: relative;
            height: 680px;
            overflow: hidden;
        }
        
     .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                135deg,
                rgba(17, 24, 39, 0.85) 0%,
                rgba(17, 24, 39, 0.65) 50%,
                rgba(17, 24, 39, 0.4) 100%
            );
            z-index: 2;
        }


        
        .hero-content {
            position: relative;
            z-index: 3;
        }
        
        /* Buttons */
        .btn-primary {
            background: #DC2626;
            color: white;
            font-weight: 700;
            padding: 16px 40px;
            border-radius: 8px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 14px;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
        }
        
        .btn-primary:hover {
            background: #B91C1C;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
        }
        
        .btn-secondary {
            background: white;
            color: #1E3A8A;
            font-weight: 700;
            padding: 16px 40px;
            border-radius: 8px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 14px;
            border: 2px solid white;
            cursor: pointer;
        }
        
        .btn-secondary:hover {
            background: transparent;
            color: white;
            transform: translateY(-2px);
        }
        
        .btn-outline {
            background: transparent;
            color: #DC2626;
            font-weight: 700;
            padding: 14px 36px;
            border-radius: 8px;
            border: 2px solid #DC2626;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 13px;
            cursor: pointer;
        }
        
        .btn-outline:hover {
            background: #DC2626;
            color: white;
            transform: translateY(-2px);
        }
        
        /* RV Cards */
        .rv-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .rv-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            border-color: #DC2626;
        }
        
        .rv-card-image {
            position: relative;
            overflow: hidden;
            height: 260px;
            background: #f8fafc;
        }
        
        .rv-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .rv-card:hover .rv-card-image img {
            transform: scale(1.08);
        }
        
        /* Category Cards */
        .category-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            height: 340px;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        }
        
        .category-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
            z-index: 1;
            transition: all 0.4s ease;
        }
        
        .category-card:hover::after {
            background: linear-gradient(to top, rgba(220,38,38,0.9) 0%, rgba(30,58,138,0.6) 50%, transparent 100%);
        }
        
        .category-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 45px rgba(220, 38, 38, 0.25);
        }
        
        .category-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 28px;
        }
        
        .category-card img {
            transition: transform 0.6s ease;
        }
        
        .category-card:hover img {
            transform: scale(1.1);
        }
        
        /* Badge Styles */
        .badge {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 5px;
            font-size: 10px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }
        
        .badge-red {
            background: #DC2626;
            color: white;
        }
        
        .badge-blue {
            background: #1E3A8A;
            color: white;
        }
        
        .badge-gold {
            background: #F59E0B;
            color: white;
        }
        
        .badge-green {
            background: #059669;
            color: white;
        }
        
        /* Price Tag */
        .price-tag {
            display: inline-block;
            font-size: 36px;
            font-weight: 900;
            color: #DC2626;
            line-height: 1;
        }
        
        /* Stats Counter */
        .stat-number {
            font-size: 52px;
            font-weight: 900;
            color: white;
            line-height: 1;
        }
        
        /* Search Box */
        .search-container {
            background: white;
            border-radius: 12px;
            padding: 36px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
        }
        
        .search-select {
            width: 100%;
            padding: 15px 18px;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            background: white;
            cursor: pointer;
        }
        
        .search-select:focus {
            outline: none;
            border-color: #DC2626;
            box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
        }
        
        .search-select:hover {
            border-color: #9ca3af;
        }
        
        /* Sticky Header */
        .sticky-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: white;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        
        /* Feature Box */
        .feature-box {
            background: white;
            border-radius: 12px;
            padding: 32px;
            text-align: center;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .feature-box:hover {
            border-color: #DC2626;
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(220, 38, 38, 0.15);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            margin: 0 auto 24px;
            box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
        }
        
        .smooth-scroll {
            scroll-behavior: smooth;
        }
        
        /* Deal Ribbon */
        .deal-ribbon {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
            color: white;
            padding: 8px 18px;
            border-radius: 6px;
            font-weight: 800;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
        }
        
        /* Testimonial Card */
        .testimonial-card {
            background: white;
            border-radius: 12px;
            padding: 32px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .testimonial-card:hover {
            border-color: #111827;
            transform: translateY(-6px);
            box-shadow: 0 15px 40px rgba(30, 58, 138, 0.15);
        }
        
        /* Service Card */
        .service-card {
            background: #111827;
            border-radius: 12px;
            padding: 36px;
            color: white;
            transition: all 0.4s ease;
            box-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 45px rgba(30, 58, 138, 0.4);
        }
        
        /* Popular Tags */
        .popular-tag {
            display: inline-block;
            padding: 8px 16px;
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            color: #111827;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .popular-tag:hover {
            border-color: #DC2626;
            color: #DC2626;
            background: #fef2f2;
        }

        .brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px;
    align-items: center;
}

.brand-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

    /* Hero Section */
        .hero-about {
            background: linear-gradient(135deg, rgba(17, 24, 39, 0.95) 0%, rgba(31, 41, 55, 0.9) 100%),
                        url('https://images.unsplash.com/photo-1523987355523-c7b5b0dd90a7?w=1600&q=80');
            background-size: cover;
            background-position: center;
            padding: 100px 20px;
            text-align: center;
            color: white;
        }

        .hero-title {
            font-size: 56px;
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .hero-subtitle {
            font-size: 24px;
            font-weight: 500;
            color: #E5E7EB;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Stats Section */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 32px;
            margin-top: -60px;
            position: relative;
            z-index: 10;
        }

        .stat-card {
            background: white;
            padding: 40px 30px;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            text-align: center;
            border-top: 4px solid #DC2626;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 900;
            color: #DC2626;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 16px;
            font-weight: 600;
            color: #6B7280;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Story Section */
        .story-section {
            background: white;
            border-radius: 16px;
            padding: 60px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .section-badge {
            display: inline-block;
            background: #FEE2E2;
            color: #DC2626;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 42px;
            font-weight: 900;
            color: #111827;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .story-text {
            font-size: 18px;
            line-height: 1.8;
            color: #4B5563;
            margin-bottom: 20px;
        }

        /* Video Section */
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* Values Section */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }

        .value-card {
            background: white;
            padding: 40px 32px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

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

        .value-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-bottom: 24px;
        }

        .value-title {
            font-size: 22px;
            font-weight: 800;
            color: #111827;
            margin-bottom: 12px;
        }

        .value-description {
            font-size: 15px;
            line-height: 1.7;
            color: #6B7280;
        }

        /* Team Section */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }

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

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

        .team-image {
            width: 100%;
            height: 320px;
            background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
            font-weight: 900;
            color: white;
        }

        .team-info {
            padding: 28px;
            text-align: center;
        }

        .team-name {
            font-size: 22px;
            font-weight: 800;
            color: #111827;
            margin-bottom: 8px;
        }

        .team-role {
            font-size: 15px;
            font-weight: 600;
            color: #DC2626;
            margin-bottom: 12px;
        }

        .team-bio {
            font-size: 14px;
            line-height: 1.6;
            color: #6B7280;
        }

        /* Timeline */
        .timeline {
            position: relative;
            padding: 40px 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: #DC2626;
            transform: translateX(-50%);
        }

        .timeline-item {
            display: flex;
            margin-bottom: 50px;
            position: relative;
        }

        .timeline-item:nth-child(odd) {
            flex-direction: row-reverse;
        }

        .timeline-content {
            width: 45%;
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .timeline-year {
            font-size: 32px;
            font-weight: 900;
            color: #DC2626;
            margin-bottom: 12px;
        }

        .timeline-title {
            font-size: 20px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 8px;
        }

        .timeline-description {
            font-size: 15px;
            line-height: 1.6;
            color: #6B7280;
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            top: 20px;
            width: 20px;
            height: 20px;
            background: #DC2626;
            border-radius: 50%;
            transform: translateX(-50%);
            border: 4px solid white;
            box-shadow: 0 0 0 4px #DC2626;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 36px;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .timeline::before {
                left: 20px;
            }
            
            .timeline-item {
                flex-direction: column !important;
                padding-left: 50px;
            }
            
            .timeline-content {
                width: 100%;
            }
            
            .timeline-dot {
                left: 20px;
            }
            
            .story-section {
                padding: 40px 24px;
            }
        }



         /* Hero Section */
        .hero-contact {
            background: linear-gradient(135deg, rgba(17, 24, 39, 0.95) 0%, rgba(31, 41, 55, 0.9) 100%),
                        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&q=80');
            background-size: cover;
            background-position: center;
            padding: 100px 20px 80px;
            text-align: center;
            color: white;
        }

        .hero-title {
            font-size: 56px;
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .hero-subtitle {
            font-size: 24px;
            font-weight: 500;
            color: #E5E7EB;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Quick Contact Cards */
        .quick-contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
            margin-top: -60px;
            position: relative;
            z-index: 10;
        }

        .quick-contact-card {
            background: white;
            padding: 32px 24px;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: all 0.3s ease;
            border-top: 4px solid #DC2626;
        }

        .quick-contact-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
        }

        .quick-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin: 0 auto 16px;
        }

        .quick-label {
            font-size: 14px;
            font-weight: 700;
            color: #6B7280;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }

        .quick-value {
            font-size: 18px;
            font-weight: 800;
            color: #111827;
        }

        .quick-link {
            color: #DC2626;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .quick-link:hover {
            color: #B91C1C;
        }

        /* Location Cards */
        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 32px;
        }

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

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

        .location-header {
            background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
            padding: 32px;
            color: white;
        }

        .location-name {
            font-size: 28px;
            font-weight: 900;
            margin-bottom: 8px;
        }

        .location-type {
            font-size: 14px;
            font-weight: 600;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .location-body {
            padding: 32px;
        }

        .location-info-item {
            display: flex;
            gap: 16px;
            margin-bottom: 20px;
            align-items: start;
        }

        .location-info-icon {
            width: 40px;
            height: 40px;
            background: #FEE2E2;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        .location-info-content {
            flex: 1;
        }

        .location-info-label {
            font-size: 12px;
            font-weight: 700;
            color: #6B7280;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
        }

        .location-info-value {
            font-size: 15px;
            font-weight: 600;
            color: #111827;
            line-height: 1.5;
        }

        .location-hours {
            background: #F9FAFB;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 24px;
        }

        .hours-title {
            font-size: 14px;
            font-weight: 800;
            color: #111827;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .hours-item {
            display: flex;
            justify-content: space-between;
            padding: 6px 0;
            font-size: 14px;
        }

        .hours-day {
            font-weight: 600;
            color: #374151;
        }

        .hours-time {
            font-weight: 700;
            color: #DC2626;
        }

        .location-actions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .btn-location {
            padding: 14px 20px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .btn-directions {
            background: #DC2626;
            color: white;
            border: none;
        }

        .btn-directions:hover {
            background: #B91C1C;
            transform: translateY(-2px);
        }

        .btn-call {
            background: rgb(17, 24, 39);
            color: white;
            border: none;
        }

        .btn-call:hover {
            background: rgb(31, 41, 55);
            transform: translateY(-2px);
        }

        /* Contact Form */
        .contact-form-section {
            background: white;
            border-radius: 16px;
            padding: 48px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .section-badge {
            display: inline-block;
            background: #FEE2E2;
            color: #DC2626;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 42px;
            font-weight: 900;
            color: #111827;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .section-description {
            font-size: 18px;
            color: #6B7280;
            margin-bottom: 32px;
            line-height: 1.6;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 700;
            color: #374151;
            margin-bottom: 8px;
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #E5E7EB;
            border-radius: 8px;
            font-size: 15px;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
        }

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

        .form-textarea {
            resize: vertical;
            min-height: 140px;
        }

        .btn-submit {
            background: #DC2626;
            color: white;
            font-weight: 700;
            padding: 18px 40px;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            width: 100%;
        }

        .btn-submit:hover {
            background: #B91C1C;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
        }

        /* Map Section */
        .map-container {
            width: 100%;
            height: 500px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 36px;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .locations-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-form-section {
                padding: 32px 24px;
            }
        }



         .hero-blog {
            background: linear-gradient(135deg, rgba(17,24,39,0.97) 0%, rgba(31,41,55,0.93) 100%),
                        url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1600&q=80');
            background-size: cover;
            background-position: center;
            padding: 80px 20px 120px;
        }

        .section-badge {
            display: inline-block;
            background: #FEE2E2;
            color: #DC2626;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Featured Post */
        .featured-card {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(0,0,0,0.15);
            transition: all 0.4s ease;
            background: white;
        }
        .featured-card:hover { transform: translateY(-6px); box-shadow: 0 30px 70px rgba(0,0,0,0.2); }
        .featured-img { height: 420px; overflow: hidden; position: relative; }
        .featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
        .featured-card:hover .featured-img img { transform: scale(1.05); }

        /* Blog Cards */
        .blog-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.07);
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }
        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.13);
            border-color: #DC2626;
        }
        .blog-img { height: 220px; overflow: hidden; }
        .blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
        .blog-card:hover .blog-img img { transform: scale(1.08); }

        /* Category Pill */
        .cat-pill {
            display: inline-block;
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .cat-buying { background: #DBEAFE; color: #1D4ED8; }
        .cat-tips   { background: #D1FAE5; color: #065F46; }
        .cat-travel { background: #FEF3C7; color: #92400E; }
        .cat-maintenance { background: #EDE9FE; color: #5B21B6; }
        .cat-lifestyle { background: #FCE7F3; color: #9D174D; }
        .cat-deals { background: #FEE2E2; color: #DC2626; }

        /* Sidebar */
        .sidebar-card {
            background: white;
            border-radius: 16px;
            padding: 28px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.07);
            margin-bottom: 24px;
        }
        .sidebar-title {
            font-size: 16px;
            font-weight: 900;
            color: #111827;
            padding-bottom: 14px;
            border-bottom: 3px solid #DC2626;
            margin-bottom: 18px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Search Box */
        .search-box {
            display: flex;
            border: 2px solid #E5E7EB;
            border-radius: 10px;
            overflow: hidden;
            transition: border-color 0.3s;
        }
        .search-box:focus-within { border-color: #DC2626; }
        .search-box input {
            flex: 1;
            padding: 12px 16px;
            border: none;
            outline: none;
            font-size: 14px;
            font-weight: 500;
        }
        .search-box button {
            background: #DC2626;
            color: white;
            border: none;
            padding: 12px 18px;
            cursor: pointer;
            font-weight: 700;
            font-size: 13px;
            transition: background 0.3s;
        }
        .search-box button:hover { background: #B91C1C; }

        /* Popular post item */
        .pop-post {
            display: flex;
            gap: 14px;
            padding: 12px 0;
            border-bottom: 1px solid #F3F4F6;
            transition: all 0.3s;
            cursor: pointer;
        }
        .pop-post:last-child { border-bottom: none; padding-bottom: 0; }
        .pop-post:hover .pop-title { color: #DC2626; }
        .pop-thumb { width: 68px; height: 56px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }

        /* Pagination */
        .page-btn {
            width: 42px; height: 42px;
            border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            font-weight: 700; font-size: 14px;
            transition: all 0.3s;
            cursor: pointer;
        }
        .page-btn.active { background: #DC2626; color: white; }
        .page-btn:not(.active) { background: white; color: #374151; border: 2px solid #E5E7EB; }
        .page-btn:not(.active):hover { border-color: #DC2626; color: #DC2626; }

        /* Newsletter box */
        .newsletter-box {
            background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
            border-radius: 16px;
            padding: 28px;
            color: white;
        }
        .newsletter-input {
            width: 100%;
            padding: 12px 14px;
            border-radius: 8px;
            border: none;
            outline: none;
            font-size: 14px;
            margin-bottom: 10px;
        }
        .newsletter-btn {
            width: 100%;
            background: #111827;
            color: white;
            border: none;
            padding: 12px;
            border-radius: 8px;
            font-weight: 800;
            font-size: 13px;
            text-transform: uppercase;
            cursor: pointer;
            transition: background 0.3s;
        }
        .newsletter-btn:hover { background: #1F2937; }

        /* Category tag filters */
        .tag-filter {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            border: 2px solid #E5E7EB;
            background: white;
            color: #374151;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }
        .tag-filter:hover, .tag-filter.active { border-color: #DC2626; color: #DC2626; background: #FEF2F2; }

        .read-more {
            color: #DC2626;
            font-weight: 800;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.3s;
        }
        .blog-card:hover .read-more { gap: 10px; }

        .sticky-sidebar { position: sticky; top: 100px; }


         /* Article Body */
        .article-body h2 {
            font-size: 26px;
            font-weight: 900;
            color: #111827;
            margin: 40px 0 16px;
            padding-left: 16px;
            border-left: 4px solid #DC2626;
        }
        .article-body h3 {
            font-size: 20px;
            font-weight: 800;
            color: #1F2937;
            margin: 28px 0 12px;
        }
        .article-body p {
            font-size: 17px;
            line-height: 1.85;
            color: #374151;
            margin-bottom: 20px;
        }
        .article-body ul {
            margin: 16px 0 24px 0;
            
        }
        .article-body ul li {
            font-size: 16px;
            line-height: 1.7;
            color: #374151;
            padding: 8px 0 8px 24px;
            position: relative;
            border-bottom: 1px solid #F3F4F6;
        }
        .article-body ul li:last-child { border-bottom: none; }
        .article-body ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #DC2626;
            font-weight: 900;
        }
        .article-body .tip-box {
            background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
            border-left: 5px solid #DC2626;
            border-radius: 0 12px 12px 0;
            padding: 24px 28px;
            margin: 32px 0;
        }
        .article-body .tip-box .tip-label {
            font-size: 11px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #DC2626;
            margin-bottom: 8px;
        }
        .article-body .tip-box p {
            font-size: 16px;
            color: #374151;
            margin: 0;
            font-weight: 600;
        }

        .article-body .info-box {
            background: #EFF6FF;
            border-left: 5px solid #1D4ED8;
            border-radius: 0 12px 12px 0;
            padding: 24px 28px;
            margin: 32px 0;
        }
        .article-body .info-box p {
            font-size: 16px;
            color: #1E40AF;
            margin: 0;
            font-weight: 600;
        }

        /* Pullquote */
        .pullquote {
            border-top: 3px solid #DC2626;
            border-bottom: 3px solid #DC2626;
            padding: 28px 0;
            margin: 40px 0;
            text-align: center;
        }
        .pullquote p {
            font-size: 22px !important;
            font-weight: 800 !important;
            color: #111827 !important;
            font-style: italic;
        }

        /* In-article image */
        .article-image {
            border-radius: 16px;
            overflow: hidden;
            margin: 36px 0;
            box-shadow: 0 10px 40px rgba(0,0,0,0.12);
        }
        .article-image img { width: 100%; display: block; }
        .article-image figcaption {
            background: #F9FAFB;
            padding: 12px 20px;
            font-size: 13px;
            color: #6B7280;
            font-weight: 600;
            text-align: center;
        }

        /* Tags */
        .tag {
            display: inline-block;
            padding: 6px 14px;
            background: #F3F4F6;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 700;
            color: #374151;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            transition: all 0.3s;
        }
        .tag:hover { background: #FEE2E2; color: #DC2626; }

        /* Share buttons */
        .share-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid;
        }
        .share-fb { background: #1877F2; color: white; border-color: #1877F2; }
        .share-fb:hover { background: #166FE5; }
        .share-tw { background: #1DA1F2; color: white; border-color: #1DA1F2; }
        .share-tw:hover { background: #0d8ecf; }
        .share-email { background: white; color: #374151; border-color: #E5E7EB; }
        .share-email:hover { border-color: #DC2626; color: #DC2626; }
        .share-copy { background: white; color: #374151; border-color: #E5E7EB; }
        .share-copy:hover { border-color: #DC2626; color: #DC2626; }

        /* Author box */
        .author-box {
            background: white;
            border-radius: 20px;
            padding: 36px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border: 2px solid #F3F4F6;
            display: flex;
            gap: 28px;
            align-items: flex-start;
        }
        .author-avatar {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 900;
            color: white;
            flex-shrink: 0;
            box-shadow: 0 8px 24px rgba(220,38,38,0.3);
        }

        /* Related Posts */
        .related-card {
            background: white;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.07);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        .related-card:hover { transform: translateY(-6px); border-color: #DC2626; box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
        .related-img { height: 180px; overflow: hidden; }
        .related-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
        .related-card:hover .related-img img { transform: scale(1.07); }

        /* TOC */
        .toc {
            background: #F8FAFC;
            border: 2px solid #E5E7EB;
            border-radius: 14px;
            padding: 24px 28px;
            margin-bottom: 32px;
        }
        .toc-title {
            font-size: 13px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: #DC2626;
            margin-bottom: 14px;
        }
        .toc ol { padding-left: 20px; }
        .toc ol li {
            font-size: 14px;
            font-weight: 600;
            color: #374151;
            padding: 5px 0;
        }
        .toc ol li a { color: #374151; text-decoration: none; transition: color 0.3s; }
        .toc ol li a:hover { color: #DC2626; }

        /* Sidebar */
        .sidebar-card {
            background: white;
            border-radius: 16px;
            padding: 28px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.07);
            margin-bottom: 24px;
        }
        .sidebar-title {
            font-size: 15px;
            font-weight: 900;
            color: #111827;
            padding-bottom: 12px;
            border-bottom: 3px solid #DC2626;
            margin-bottom: 18px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .pop-post { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid #F3F4F6; transition: all 0.3s; cursor: pointer; }
        .pop-post:last-child { border-bottom: none; padding-bottom: 0; }
        .pop-post:hover .pop-title { color: #DC2626; }
        .pop-thumb { width: 68px; height: 56px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }

        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            background: #DC2626;
            z-index: 999;
            transition: width 0.1s linear;
            width: 0%;
        }

        .sticky-sidebar { position: sticky; top: 100px; }

        /* Comments Section */
        .comment-card {
            background: white;
            border-radius: 14px;
            padding: 28px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            margin-bottom: 20px;
        }
        .comment-avatar {
            width: 48px; height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            color: white;
            font-size: 16px;
        }

        .comment-input {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #E5E7EB;
            border-radius: 10px;
            font-size: 14px;
            font-family: 'Inter', sans-serif;
            outline: none;
            transition: border-color 0.3s;
        }
        .comment-input:focus { border-color: #DC2626; }