/* Advanced CSS with Modern Design, Animations & Effects */

/* CSS Variables for Consistent Design */
:root {
    /* American Flag Patriotic Colors */
    --primary-blue: #1e3a8a;  /* Classic American Blue */
    --dark-blue: #1e2a5a;     /* Deep Navy Blue */
    --light-blue: #2563eb;    /* Bright American Blue */
    --primary-red: #dc2626;   /* Classic American Red */
    --dark-red: #991b1b;      /* Deep American Red */
    --accent-gold: #f59e0b;   /* Golden accent color */
    --dark-gold: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.2);
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 50%, var(--primary-red) 100%);
    --gradient-hero: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 40%, var(--primary-red) 100%);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Better for mobile readability */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6; /* Optimized for mobile reading */
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    /* Mobile-first font size */
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    /* Mobile-first padding - optimized for phone screens */
    padding: 0 16px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    /* Show announcement bar on desktop */
    .announcement-bar {
        display: block;
    }
    
    /* Adjust navbar position for desktop with announcement bar */
    .navbar {
        top: 44px; /* Adjusted for announcement bar height */
    }
}

/* Advanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Announcement Bar */
.announcement-bar {
    background: var(--gradient-primary);
    color: white;
    font-size: 0.85rem;
    padding: 8px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    /* Hide on mobile devices */
    display: none;
}

.announcement-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.announcement-left,
.announcement-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.announcement-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
}

.announcement-item i {
    font-size: 0.8rem;
    opacity: 0.9;
}

.announcement-item a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.announcement-item a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

/* Enhanced Navigation */
.navbar {
    background: #ffffff;
    padding: 1.2rem 0;
    position: fixed;
    top: 0; /* No offset on mobile since announcement is hidden */
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 25px rgba(0,0,0,0.25);
    transition: var(--transition);
    border-bottom: 3px solid var(--primary-blue);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    border-bottom: 2px solid var(--primary-red);
}

.navbar.scrolled .nav-menu a {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.navbar.scrolled .nav-menu a:hover {
    color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.1);
}


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

/* Logo Styling */
.logo {
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.logo-image {
    height: 90px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.2));
}

.logo:hover .logo-image {
    transform: scale(1.05);
}



/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    /* Larger touch target for mobile */
    padding: 12px;
    z-index: 1001;
    min-height: 48px;
    min-width: 48px;
    justify-content: center;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Enhanced Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: #1e2a5a;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    position: relative;
    padding: 12px 20px;
    border-radius: 8px;
    transition: var(--transition);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-menu a:hover::before {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-blue);
    background: rgba(30, 58, 138, 0.1);
}

/* Modern Grid Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    /* Mobile-first: smaller padding for phone screens */
    padding: 140px 0 60px; /* Optimized for mobile */
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding: 180px 0 100px; /* Desktop padding */
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 1px, transparent 1px),
                radial-gradient(circle at 80% 60%, rgba(255,255,255,0.08) 1px, transparent 1px),
                radial-gradient(circle at 40% 80%, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 80px 80px, 120px 120px, 160px 160px;
    opacity: 0.3;
    pointer-events: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(251, 191, 36, 0.2) 0%, transparent 50%);
    animation: backgroundShift 8s ease-in-out infinite;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: blur(2px);
    z-index: -1;
}

@keyframes backgroundShift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(2deg); }
}

.hero-grid {
    display: grid;
    /* Mobile-first: single column layout */
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    min-height: 400px; /* Smaller for mobile */
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        min-height: 500px;
    }
}

.hero-content {
    /* Mobile-first: center text for better mobile UX */
    text-align: center;
    animation: fadeInLeft 1s ease-out;
}

@media (min-width: 768px) {
    .hero-content {
        text-align: left;
    }
}

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.car-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-image:hover .car-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.overlay-badge {
    background: rgba(30, 58, 138, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-blue);
    animation: floatUpDown 3s ease-in-out infinite;
}

.floating-card i {
    color: var(--primary-red);
}

.card-1 {
    top: 50px;
    left: -30px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 80px;
    right: -40px;
    animation-delay: 1s;
}

.card-3 {
    top: 200px;
    left: -50px;
    animation-delay: 2s;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-badge i {
    color: var(--accent-gold);
    font-size: 16px;
}

.hero-title {
    /* Mobile-optimized sizing */
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem; /* Tighter spacing on mobile */
    color: var(--dark-blue);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        margin-bottom: 1.5rem;
    }
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.5rem;
}

.title-line-1 {
    display: block;
    background: linear-gradient(135deg, white, var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line-2 {
    display: block;
    color: white;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 1;
    max-width: 600px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: flex-start;
}

.stat-item {
    text-align: left;
    min-width: 80px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-bounce);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: white;
    box-shadow: var(--shadow-lg);
}

.cta-button.primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

/* Floating Animation Elements */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
}

.floating-icon.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon.icon-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.floating-icon.icon-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.floating-icon.icon-4 {
    top: 40%;
    right: 25%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Advanced Section Styling */
.about, .services, .contact {
    padding: 120px 0;
    position: relative;
}

.about {
    background: var(--bg-white);
}

.services {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e2e8f0 100%);
}

.contact {
    background: var(--bg-white);
}

/* Enhanced Section Headings */
h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 4rem;
    color: var(--dark-blue);
    position: relative;
}

h2::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

/* Enhanced Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-bounce);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-image {
    margin-top: 1.5rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 200px;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.feature-image img[src=""] {
    display: none;
}

.feature-image:has(img[src=""]) {
    display: none;
}

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

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.feature:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.feature-icon i {
    color: white;
    font-size: 32px;
}

.feature h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center;
}

.feature p {
    text-align: center;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-highlight {
    background: linear-gradient(135deg, var(--accent-gold), var(--dark-gold));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
}

/* Enhanced Services Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-item {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-bounce);
    border-left: 6px solid var(--primary-red);
    position: relative;
    overflow: hidden;
}

.service-header {
    position: relative;
    margin-bottom: 1.5rem;
    height: 200px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: var(--transition);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 58, 138, 0.7);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item:hover .service-background-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Quote Process Note Styles */
.quote-process-note {
    background: linear-gradient(135deg, #f0f7ff, #e6f3ff);
    border: 1px solid #bfdbfe;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.quote-process-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-blue);
    border-radius: 2px 0 0 2px;
}

.note-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.1rem;
}

.note-header i {
    font-size: 1.2rem;
}

.quote-process-note p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.quote-process-note ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.quote-process-note li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-dark);
    line-height: 1.5;
}

.quote-process-note li i {
    color: var(--primary-blue);
    font-size: 0.9rem;
    min-width: 16px;
}

.quote-process-note .note-footer {
    margin-bottom: 0;
    color: var(--primary-blue);
    font-weight: 500;
    text-align: center;
    padding-top: 0.5rem;
    border-top: 1px solid #bfdbfe;
}

.service-image[src=""] {
    display: none;
}

.service-item:hover .service-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-red), transparent);
    opacity: 0.1;
    border-radius: 0 0 0 100px;
}

.service-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-left-color: var(--accent-gold);
}

.service-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    backdrop-filter: blur(10px);
}

.service-icon i {
    color: white;
    font-size: 28px;
}

.service-item h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-item p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    position: relative;
    padding: 8px 0 8px 24px;
    color: var(--text-dark);
    font-weight: 500;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* Enhanced Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.contact-item {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-bounce);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.contact-item h3 {
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.contact-item a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--dark-red);
    text-decoration: underline;
}

/* Enhanced Footer */
footer {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #0f172a 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

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

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Policy Pages Enhanced Styling */
.policy-content {
    max-width: 900px;
    margin: 2rem auto;
    padding: 3rem;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.policy-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.policy-content h1 {
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-size: 3rem;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
    background: var(--bg-light);
    padding: 1rem;
    border-radius: var(--border-radius);
}

.policy-content h2 {
    color: var(--dark-blue);
    margin: 3rem 0 1.5rem;
    font-size: 1.8rem;
    text-align: left;
    border-left: 4px solid var(--primary-red);
    padding-left: 1rem;
}

.policy-content h2::before,
.policy-content h2::after {
    display: none;
}

.policy-content h3 {
    color: var(--primary-red);
    margin: 2rem 0 1rem;
    font-size: 1.3rem;
}

.policy-content ul, .policy-content ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

.policy-content li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

/* Enhanced Tables */
.shipping-table, .return-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.shipping-table th, .return-table th {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
}

.shipping-table td, .return-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    transition: var(--transition);
}

.shipping-table tr:hover, .return-table tr:hover {
    background: var(--bg-light);
}

/* Enhanced Important Note Box */
.important-note {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid var(--accent-gold);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin: 3rem 0;
    position: relative;
    box-shadow: var(--shadow-md);
}

.important-note::before {
    content: '⚠️';
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--accent-gold);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.important-note h3 {
    color: #92400e;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.important-note p {
    color: #78350f;
    margin: 0;
    font-weight: 500;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: rgba(30, 58, 138, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 1.5rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-container {
        justify-content: space-between;
        padding: 0 24px;
    }
    
    .hero {
        padding: 160px 0 60px; /* Adjusted for announcement bar */
    }
    
    /* Announcement bar responsive */
    .announcement-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .announcement-left,
    .announcement-right {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .announcement-item {
        font-size: 0.8rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        order: 1;
    }
    
    .hero-visual {
        order: 0;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .car-image {
        height: 300px;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat-item {
        text-align: center;
        min-width: auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .policy-content {
        margin: 1rem;
        padding: 2rem;
    }
    
    .floating-icon {
        display: none;
    }
    
    .service-header {
        height: 150px;
    }
    
    .feature-image {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .feature, .service-item, .contact-item {
        padding: 2rem 1.5rem;
    }
}

/* Enhanced Scroll animations */
.feature, .service-item, .contact-item {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature.animate-in, .service-item.animate-in, .contact-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.feature:nth-child(1) { transition-delay: 0.1s; }
.feature:nth-child(2) { transition-delay: 0.2s; }
.feature:nth-child(3) { transition-delay: 0.3s; }

.service-item:nth-child(1) { transition-delay: 0.1s; }
.service-item:nth-child(2) { transition-delay: 0.2s; }
.service-item:nth-child(3) { transition-delay: 0.3s; }
.service-item:nth-child(4) { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
    .feature, .service-item, .contact-item {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@keyframes scrollFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Quote Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background: var(--bg-white);
    margin: 2% auto;
    padding: 0;
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    transform: translateY(-50px);
    transition: transform 0.3s ease;
    position: relative;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-header h2::before,
.modal-header h2::after {
    display: none;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Quote Form Styles */
.quote-form {
    padding: 2.5rem;
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    /* Mobile-first: larger padding and font size for better touch interaction */
    padding: 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    font-size: 1.1rem; /* Larger for mobile */
    transition: var(--transition);
    background: var(--bg-white);
    font-family: inherit;
    min-height: 48px; /* iOS recommended touch target */
}

@media (min-width: 768px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        font-size: 1rem;
    }
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--primary-red);
    background: #fef2f2;
}

.error-message {
    color: var(--primary-red);
    font-size: 0.85rem;
    margin-top: 0.25rem;
    font-weight: 500;
}

/* Vehicle Info Special Layout */
.vehicle-info {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0.75rem;
}

.vehicle-info input {
    padding: 0.8rem;
    font-size: 0.9rem;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f1f5f9;
}

.btn-primary,
.btn-secondary {
    /* Mobile-first button sizing - larger touch targets */
    padding: 1.2rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem; /* Larger for mobile readability */
    cursor: pointer;
    transition: var(--transition-bounce);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 48px; /* iOS recommended touch target */
    min-width: 48px;
}

@media (min-width: 768px) {
    .btn-primary,
    .btn-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    background: #f8fafc;
    color: var(--text-dark);
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .quote-form {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .vehicle-info {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        justify-content: center;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: 1% auto;
    }
    
    .vehicle-info {
        grid-template-columns: 1fr;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .quote-form {
        padding: 1rem;
    }
}

/* Product Catalog Styles */
.products {
    background: var(--bg-light);
    padding: 120px 0;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Product Filters */
.product-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid var(--primary-blue);
    background: var(--bg-white);
    color: var(--primary-blue);
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Products Grid */
.products-grid {
    display: grid;
    /* Mobile-first: single column with smaller min-width */
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 600px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (min-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-bounce);
    border: 1px solid rgba(59, 130, 246, 0.1);
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Product Image */
.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 64, 175, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quote-btn {
    background: var(--accent-gold);
    color: var(--dark-blue);
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-bounce);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quote-btn:hover {
    background: var(--dark-gold);
    transform: scale(1.05);
}

/* Product Info */
.product-info {
    padding: 1.5rem;
}

.product-name {
    color: var(--dark-blue);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.part-number {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.compatibility {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.compatibility i {
    color: var(--primary-blue);
}

.product-description {
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.product-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(135deg, var(--bg-light), #e2e8f0);
    color: var(--text-dark);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Product Quote Info */
.product-quote-info {
    background: var(--bg-light);
    padding: 1.5rem 2.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.selected-product {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.selected-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-blue);
}

.product-details h3 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.product-details p {
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.product-details strong {
    color: var(--primary-red);
}

/* Responsive Product Layout */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .selected-product {
        flex-direction: column;
        text-align: center;
    }
    
    .selected-product img {
        width: 100px;
        height: 100px;
    }
    
    .product-quote-info {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        margin: 0 1rem;
    }
    
    .product-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
        text-align: center;
    }
}

/* Professional Catalog System */
.catalog-categories {
    margin: 3rem 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-bounce);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-card h3 {
    color: var(--dark-blue);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.category-card p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.parts-count {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold), #f59e0b);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Subcategory Section */
.subcategory-section {
    margin: 3rem 0;
}

.subcategory-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.back-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.back-btn:hover {
    background: var(--dark-blue);
    transform: translateX(-5px);
}

.subcategory-header h3 {
    color: var(--dark-blue);
    font-size: 1.8rem;
    font-weight: 700;
}

.subcategory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.subcategory-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-bounce);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    position: relative;
}

.subcategory-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

.subcategory-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.subcategory-icon i {
    font-size: 1.5rem;
    color: white;
}

.subcategory-card:hover .subcategory-icon {
    transform: scale(1.1);
}

.subcategory-card h4 {
    color: var(--dark-blue);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.subcategory-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.subcategory-card .quote-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto;
    width: fit-content;
}

.subcategory-card .quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

/* Responsive Design for Professional Catalog */
@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-card {
        padding: 2rem;
    }
    
    .subcategory-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .subcategory-card {
        padding: 1.5rem;
    }
    
    .subcategory-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .back-btn {
        align-self: stretch;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .category-card {
        padding: 1.5rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
    }
    
    .category-icon i {
        font-size: 1.5rem;
    }
    
    .category-card h3 {
        font-size: 1.2rem;
    }
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-white);
    padding: 120px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--accent-gold);
    box-shadow: var(--shadow-md);
    transition: var(--transition-bounce);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
}

.author-info h4 {
    color: var(--dark-blue);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Trust Badges Section */
.trust-badges {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    padding: 60px 0;
    color: white;
}

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

.badge-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.badge-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.badge-item i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.badge-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.badge-item p {
    opacity: 0.9;
    font-size: 0.9rem;
    margin: 0;
}

/* Enhanced Contact Section */
.contact-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.business-hours,
.emergency-contact {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.business-hours h3,
.emergency-contact h3 {
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.hour-item:last-child {
    border-bottom: none;
}

.emergency-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-red);
    margin: 1rem 0;
}

.emergency-note {
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

/* Footer Enhancements */
.footer-content {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.newsletter-signup {
    margin-top: 1.5rem;
}

.newsletter-signup h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    padding: 0.75rem 1rem;
    background: var(--accent-gold);
    color: var(--dark-blue);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.newsletter-form button:hover {
    background: var(--dark-gold);
}

.newsletter-note {
    font-size: 0.8rem;
    opacity: 0.8;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: var(--accent-gold);
    color: var(--dark-blue);
    transform: translateY(-2px);
}

.business-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.business-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-size: 0.9rem;
}

.business-info i {
    color: var(--accent-gold);
    width: 16px;
}

/* Live Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
}

.chat-button {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-bounce);
    position: relative;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 450px;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.chat-header {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    margin: 0;
    font-size: 1.1rem;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-body {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    background: #f8fafc;
}

.chat-message {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.message-content {
    background: var(--bg-white);
    padding: 0.75rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    max-width: 70%;
}

.user-message .message-content {
    background: var(--primary-blue);
    color: white;
}

.message-content p {
    margin: 0 0 0.25rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.message-time {
    font-size: 0.75rem;
    opacity: 0.7;
}

.chat-footer {
    padding: 1rem;
    border-top: 1px solid #e2e8f0;
    background: var(--bg-white);
}

.chat-form {
    display: flex;
    gap: 0.5rem;
}

.chat-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.chat-form button {
    padding: 0.75rem 1rem;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.chat-form button:hover {
    background: var(--dark-blue);
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Part Lookup System */
.part-lookup {
    background: var(--bg-white);
    padding: 80px 0;
    border-bottom: 1px solid #e2e8f0;
}

.lookup-header {
    text-align: center;
    margin-bottom: 3rem;
}

.lookup-header h2 {
    color: var(--dark-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.lookup-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.lookup-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.lookup-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.tab-btn {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    border-radius: 8px 8px 0 0;
}

.tab-btn.active {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
    background: rgba(30, 58, 138, 0.05);
}

.tab-btn:hover {
    color: var(--primary-blue);
    background: rgba(30, 58, 138, 0.05);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.lookup-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.lookup-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.lookup-select {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: var(--transition);
}

.lookup-select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.search-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.search-btn.full-width {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.search-examples {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.search-examples span {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.example-btn {
    background: rgba(30, 58, 138, 0.1);
    color: var(--primary-blue);
    border: 1px solid rgba(30, 58, 138, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.example-btn:hover {
    background: var(--primary-blue);
    color: white;
}

.vin-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(30, 58, 138, 0.05);
    border-radius: var(--border-radius);
}

.vin-info i {
    color: var(--primary-blue);
}

.search-results {
    max-width: 800px;
    margin: 2rem auto 0;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.results-header {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.results-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.clear-results {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.clear-results:hover {
    background: rgba(255, 255, 255, 0.3);
}

.results-content {
    padding: 2rem;
}

.result-item {
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.result-item:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.result-info h4 {
    color: var(--dark-blue);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.result-info .part-number {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.9rem;
}

.result-info .compatibility {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.availability-status {
    text-align: right;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.status-badge.available {
    background: #dcfce7;
    color: #166534;
}

.status-badge.limited {
    background: #fef3c7;
    color: #92400e;
}

.status-badge.unavailable {
    background: #fee2e2;
    color: #dc2626;
}

.result-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.quote-part-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quote-part-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.view-details-btn {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.view-details-btn:hover {
    background: var(--primary-blue);
    color: white;
}

/* Responsive Design for Part Lookup */
@media (max-width: 768px) {
    .lookup-tabs {
        flex-direction: column;
        gap: 0;
    }
    
    .tab-btn {
        border-radius: 0;
        border-bottom: 1px solid #e2e8f0;
        border-right: none;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .search-examples {
        flex-wrap: wrap;
    }
    
    .result-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .availability-status {
        text-align: left;
    }
    
    .result-actions {
        flex-direction: column;
    }
}

/* Order Tracking Page Styles */
.tracking-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 180px 0 80px;
    text-align: center;
}

.tracking-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.tracking-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.tracking-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.tracking-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 4rem;
}

.tracking-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tracking-form-header h2 {
    color: var(--dark-blue);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tracking-form-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.tracking-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    border-bottom: 2px solid #e2e8f0;
}

.track-tab-btn {
    background: none;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    border-radius: 8px 8px 0 0;
}

.track-tab-btn.active {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
    background: rgba(30, 58, 138, 0.05);
}

.track-tab-btn:hover {
    color: var(--primary-blue);
    background: rgba(30, 58, 138, 0.05);
}

.track-tab-content {
    display: none;
}

.track-tab-content.active {
    display: block;
}

.tracking-form .form-group {
    margin-bottom: 2rem;
}

.tracking-form label {
    display: block;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.tracking-form input,
.tracking-form select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.tracking-form input:focus,
.tracking-form select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.tracking-form small {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.track-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1rem;
}

.track-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.tracking-results {
    max-width: 900px;
    margin: 0 auto 4rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.results-header {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.results-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.new-search-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.new-search-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.tracking-details {
    padding: 2rem;
}

.order-summary,
.package-summary {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-blue);
}

.order-header,
.package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.order-info h3,
.package-info h3 {
    color: var(--dark-blue);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.order-status,
.package-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
}

.status-in-transit {
    color: #f59e0b;
}

.status-delivered {
    color: #10b981;
}

.status-processing {
    color: #3b82f6;
}

.delivery-info {
    text-align: right;
}

.delivery-date {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.1rem;
}

.tracking-info,
.carrier-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.tracking-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.tracking-link:hover {
    text-decoration: underline;
}

.order-items {
    margin-bottom: 2rem;
}

.order-items h4 {
    color: var(--dark-blue);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.items-list {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.item-row:last-child {
    border-bottom: none;
}

.item-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.item-name {
    font-weight: 600;
    color: var(--dark-blue);
}

.item-part {
    font-size: 0.9rem;
    color: var(--text-light);
}

.item-quantity {
    font-weight: 600;
    color: var(--primary-blue);
}

.tracking-timeline {
    margin-top: 2rem;
}

.tracking-timeline h4 {
    color: var(--dark-blue);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}

.timeline-item {
    position: relative;
    padding-left: 3rem;
    padding-bottom: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 8px;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background: white;
    z-index: 1;
}

.timeline-item.completed .timeline-marker {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
}

.timeline-item.pending .timeline-marker {
    border-color: #d1d5db;
    background: white;
}

.timeline-content {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-sm);
}

.timeline-item.completed .timeline-content {
    border-color: var(--primary-blue);
    background: rgba(30, 58, 138, 0.02);
}

.timeline-date {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.timeline-status {
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.timeline-location {
    font-size: 0.9rem;
    color: var(--text-light);
}

.tracking-loader {
    text-align: center;
    padding: 3rem;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e2e8f0;
    border-left: 4px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.email-lookup-results {
    margin-top: 1rem;
}

.email-lookup-results h4 {
    color: var(--dark-blue);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-item {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border: 2px solid #e2e8f0;
    transition: var(--transition);
}

.order-item:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.order-id {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.order-id strong {
    color: var(--dark-blue);
    font-size: 1.1rem;
}

.order-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.order-status-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-badge.status-delivered {
    background: #dcfce7;
    color: #166534;
}

.status-badge.status-in-transit {
    background: #fef3c7;
    color: #92400e;
}

.order-total {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.track-this-order-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    width: fit-content;
}

.track-this-order-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.tracking-help {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.tracking-help h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.help-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    background: var(--bg-light);
    transition: var(--transition);
}

.help-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.help-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.help-icon i {
    font-size: 1.5rem;
    color: white;
}

.help-item h4 {
    color: var(--dark-blue);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.help-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Navigation active state for tracking page */
.nav-menu a.active {
    color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive Styles for Tracking Page */
@media (max-width: 768px) {
    .tracking-form-container {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .tracking-tabs {
        flex-direction: column;
        gap: 0;
    }
    
    .track-tab-btn {
        border-radius: 0;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .order-header,
    .package-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .delivery-info {
        text-align: left;
    }
    
    .tracking-info,
    .carrier-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .item-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .order-summary-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .order-status-row {
        justify-content: space-between;
        width: 100%;
    }
    
    .help-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        padding-left: 2.5rem;
    }
    
    .timeline-marker {
        left: 6px;
    }
    
    .timeline::before {
        left: 13px;
    }
}

/* Customer Login Page Styles */
.login-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 180px 0 80px;
    text-align: center;
}

.login-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.login-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.login-section {
    padding: 80px 0;
    background: var(--bg-light);
    min-height: 80vh;
}

.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.login-form-section {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
    transition: var(--transition);
}

.login-form-section:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.15);
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-header h2 {
    color: var(--dark-blue);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.login-form .form-group {
    margin-bottom: 2rem;
}

.login-form label {
    display: block;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.login-form label i {
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.login-form input[type="email"],
.login-form input[type="password"] {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.login-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.password-field {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: var(--transition);
}

.password-toggle:hover {
    color: var(--primary-blue);
    background: rgba(30, 58, 138, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    position: relative;
    transition: var(--transition);
}

.checkbox-label:hover .checkmark {
    border-color: var(--primary-blue);
}

.checkbox-label input:checked + .checkmark {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.checkbox-label input:checked + .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.forgot-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.forgot-link:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

.login-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.login-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.login-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
}

.login-divider span {
    background: white;
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.no-account {
    text-align: center;
}

.no-account p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.quote-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-gold);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.quote-link:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.login-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card,
.benefits-card,
.contact-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--primary-blue);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.info-header i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.info-header h3,
.benefits-card h3,
.contact-card h3 {
    color: var(--dark-blue);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefits-card h3 i,
.contact-card h3 i {
    color: var(--accent-gold);
}

.info-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--dark-blue);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li i {
    color: #10b981;
    font-size: 0.9rem;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-blue);
    text-decoration: none;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.contact-option:hover {
    background: rgba(30, 58, 138, 0.05);
    border-color: var(--primary-blue);
}

.contact-option i {
    font-size: 1rem;
}

.contact-note {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.login-error,
.login-success {
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.login-error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.login-success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.login-error i,
.login-success i {
    font-size: 1rem;
}

/* Forgot Password Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background: white;
    margin: 10% auto;
    padding: 0;
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-xl);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-header .close {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.modal-header .close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-body {
    padding: 2rem;
}

.reset-note {
    background: #f0f9ff;
    color: #0369a1;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin: 1rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.4;
}

.reset-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.reset-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

/* Responsive Styles for Login Page */
@media (max-width: 768px) {
    .login-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 0 1rem;
    }
    
    .login-form-section,
    .info-card,
    .benefits-card,
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .login-hero-content h1 {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .step {
        align-items: flex-start;
    }
    
    .modal-content {
        margin: 5% auto;
        width: 95%;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
}

/* Responsive Updates */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .contact-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .chat-window {
        width: 300px;
        height: 400px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .badges-grid {
        grid-template-columns: 1fr;
    }
    
    .chat-window {
        width: 280px;
        height: 350px;
        bottom: 70px;
        right: -10px;
    }
    
    .hour-item {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }
}

/* Order Tracking Page Styles */
.tracking-main {
    padding-top: 100px;
}

.tracking-hero {
    background: var(--gradient-hero);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.tracking-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.tracking-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

/* Tracking Search Form */
.tracking-search {
    padding: 80px 0;
    background: var(--bg-light);
}

.tracking-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.tracking-form .form-group {
    margin-bottom: 2rem;
}

.tracking-form label {
    display: block;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.tracking-form input {
    width: 100%;
    padding: 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
}

.tracking-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.track-button {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-bounce);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.track-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Demo Section */
.demo-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f1f5f9;
    text-align: center;
}

.demo-header h4 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.demo-header p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.demo-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.demo-btn {
    background: var(--bg-light);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.demo-btn:hover {
    background: var(--primary-blue);
    color: white;
}

/* Order Results */
.tracking-results {
    padding: 60px 0;
    background: var(--bg-white);
}

.order-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(59, 130, 246, 0.1);
    overflow: hidden;
}

.order-header {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.order-status {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order-status.shipped {
    background: rgba(16, 185, 129, 0.9);
}

.order-status.quote-review {
    background: rgba(251, 191, 36, 0.9);
}

.order-info {
    padding: 2rem;
    border-bottom: 1px solid #f1f5f9;
}

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

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-item label {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item span {
    color: var(--text-dark);
    font-weight: 500;
}

.tracking-number {
    background: var(--bg-light);
    padding: 0.5rem;
    border-radius: var(--border-radius);
    font-family: monospace;
    font-weight: bold;
    border: 1px solid var(--primary-blue);
}

/* Progress Timeline */
.progress-timeline {
    padding: 2rem;
    border-bottom: 1px solid #f1f5f9;
}

.progress-timeline h4 {
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 2rem 0;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.timeline-step.completed .step-icon {
    background: var(--primary-blue);
    color: white;
}

.timeline-step.current .step-icon {
    background: var(--accent-gold);
    color: var(--dark-blue);
    animation: pulse 2s infinite;
}

.step-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    max-width: 100px;
}

.timeline-step.completed .step-label,
.timeline-step.current .step-label {
    color: var(--text-dark);
}

/* Order Updates */
.order-updates {
    padding: 2rem;
}

.order-updates h4 {
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.updates-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.update-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-blue);
}

.update-date {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 150px;
}

.update-content {
    flex: 1;
}

.update-status {
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.25rem;
}

.update-message {
    color: var(--text-dark);
    line-height: 1.5;
}

/* Not Found Styles */
.not-found {
    text-align: center;
    padding: 3rem;
}

.not-found-icon {
    font-size: 4rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.not-found h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.not-found p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.not-found-tips {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    text-align: left;
}

.not-found-tips h4 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.not-found-tips ul {
    color: var(--text-dark);
    margin: 0;
}

.not-found-tips li {
    margin-bottom: 0.5rem;
}

.not-found-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* How It Works Timeline */
.how-it-works {
    background: var(--bg-light);
    padding: 120px 0;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.timeline-icon i {
    color: white;
    font-size: 2rem;
}

.timeline-content {
    flex: 1;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.timeline-content h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-details {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.detail-item i {
    color: var(--primary-blue);
}

/* Payment Information */
.payment-info {
    background: var(--bg-white);
    padding: 120px 0;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.payment-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(59, 130, 246, 0.1);
    text-align: center;
    transition: var(--transition);
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.payment-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.payment-icon i {
    color: white;
    font-size: 2rem;
}

.payment-card h3 {
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.payment-methods,
.security-features,
.policy-links {
    list-style: none;
    text-align: left;
    margin: 0;
}

.payment-methods li,
.security-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    border-bottom: 1px solid #e2e8f0;
}

.payment-methods li:last-child,
.security-features li:last-child {
    border-bottom: none;
}

.payment-methods i,
.security-features i {
    color: var(--primary-blue);
    width: 20px;
    text-align: center;
}

.policy-links li {
    padding: 0.5rem 0;
}

.policy-links a {
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.policy-links a:hover {
    color: var(--primary-blue);
}

.policy-links i {
    color: var(--primary-blue);
    width: 16px;
}

/* Contact Support Banner */
.contact-support {
    background: var(--gradient-primary);
    padding: 60px 0;
}

.support-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    flex-wrap: wrap;
    gap: 2rem;
}

.support-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.support-content p {
    opacity: 0.9;
    margin: 0;
}

.support-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.support-btn {
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-bounce);
    border: 2px solid transparent;
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.support-btn.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.support-btn.secondary:hover {
    background: white;
    color: var(--primary-blue);
}

/* Navigation Active State */
.nav-menu a.active {
    color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive Styles for Tracking Page */
@media (max-width: 768px) {
    .tracking-form-container {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .timeline-steps {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .timeline-step {
        flex: none;
        min-width: 80px;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    .support-banner {
        text-align: center;
        flex-direction: column;
    }
    
    .support-actions {
        justify-content: center;
    }
    
    .demo-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .demo-btn {
        width: 200px;
    }
    
    .update-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .update-date {
        min-width: auto;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .timeline-steps::before {
        display: none;
    }
    
    .order-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .not-found-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .support-btn {
        width: 200px;
        justify-content: center;
    }
}

/* Legal Compliance Styles */
.disclaimer-banner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out 1s both;
}

.disclaimer-banner p {
    margin: 0;
    font-size: 0.9rem;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.disclaimer-banner i {
    color: var(--accent-gold);
    font-size: 1rem;
}

.legal-notices {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-notices p {
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.9;
}

.legal-notices p:last-child {
    margin-bottom: 0;
}

.legal-notices strong {
    color: var(--accent-gold);
    font-weight: 600;
}

/* Compliance Badge Styles */
.compliance-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.compliance-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.compliance-badge i {
    color: var(--accent-gold);
}

/* Responsive Legal Elements */
@media (max-width: 768px) {
    .disclaimer-banner {
        padding: 1rem;
        margin: 1.5rem 1rem 0;
    }
    
    .disclaimer-banner p {
        font-size: 0.8rem;
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }
    
    .legal-notices {
        padding: 1rem;
        margin: 0.5rem 1rem 1rem;
    }
    
    .legal-notices p {
        font-size: 0.8rem;
    }
    
    .compliance-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .compliance-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .disclaimer-banner {
        margin: 1rem 0.5rem 0;
        padding: 0.75rem;
    }
    
    .legal-notices {
        margin: 0.5rem 0.5rem 1rem;
        padding: 0.75rem;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.02) 0%, rgba(220, 38, 38, 0.02) 100%);
    pointer-events: none;
}

.reviews-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.reviews-container {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}

.review-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    transform: translateX(100px);
}

.review-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.review-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 4rem;
    color: var(--primary-blue);
    font-family: serif;
    line-height: 1;
    opacity: 0.3;
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.review-stars i {
    color: var(--accent-gold);
    font-size: 1.25rem;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.slider-btn {
    background: white;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary-blue);
    font-size: 1.2rem;
    pointer-events: all;
    box-shadow: var(--shadow-md);
}

.slider-btn:hover {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.1);
}

.prev-btn {
    margin-left: -24px;
}

.next-btn {
    margin-right: -24px;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(30, 58, 138, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-blue);
    transform: scale(1.3);
}

.dot:hover {
    background: var(--primary-blue);
    transform: scale(1.2);
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }
    
    .reviews-container {
        height: 350px;
    }
    
    .review-card {
        padding: 2rem 1.5rem;
    }
    
    .review-card::before {
        font-size: 3rem;
        top: -5px;
        left: 20px;
    }
    
    .review-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .slider-controls {
        display: none; /* Hide arrows on mobile, use swipe */
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn {
        margin-left: -20px;
    }
    
    .next-btn {
        margin-right: -20px;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 40px 0;
    }
    
    .reviews-container {
        height: 400px;
    }
    
    .review-card {
        padding: 1.5rem 1rem;
    }
    
    .review-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-info span {
        font-size: 0.85rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-dots {
        gap: 0.5rem;
        margin-top: 1.5rem;
    }
}