:root {
    /* Main Brand Palette: 24x7 Repair Support */
    --primary: #000000;      /* Pure Black */
    --accent: #E60050;       /* Brand Red for CTAs */
    --bg-main: #ffffff;      /* Pure White */
    --bg-alt: #f8fafc;       /* Light Gray Surface */
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --border: #f3f4f6;
    
    /* System */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utility Containers */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

p {
    color: var(--text-secondary);
}

/* Service Card Enhancements */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "GENUINE PARTS";
    position: absolute;
    top: 15px;
    right: -35px;
    background: #111827; /* Black Tag */
    color: white;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 4px 40px;
    transform: rotate(45deg);
    z-index: 10;
    letter-spacing: 1px;
}

/* Form Styling overrides for Web3Forms */
input[type="text"],
input[type="tel"],
select,
textarea {
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px rgba(230, 0, 80, 0.1) !important;
    outline: none;
}

/* Trust Elements */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
    padding: 2rem 0;
}

.logo-item {
    filter: grayscale(100%);
    opacity: 0.4;
    transition: var(--transition);
    max-width: 120px;
    height: auto;
}

.logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Prose (Used in Policy Pages) */
.prose section {
    background: var(--bg-main);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.prose section:hover {
    box-shadow: var(--shadow-sm);
    border-color: #e5e7eb;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    /* Space for any inline sticky footers applied via Tailwind */
    body {
        padding-bottom: 70px;
    }
}