/* --- 1. FONTS & RESET --- */
:root {
    --primary: #1b2a41;      /* Deep Navy */
    --accent: #ff6b00;       /* Vibrant Orange */
    --accent-hover: #e65c00;
    --text-main: #333;
    --text-light: #666;
    --bg-light: #f9fbfd;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.12);
    --max-width: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    text-rendering: optimizeSpeed;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary);
}

a { text-decoration: none; transition: 0.3s; }
img { max-width: 100%; display: block; height: auto; }
ul { list-style: none; }

/* --- 2. UTILITIES --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.bg-light { background-color: var(--bg-light); }
.bg-pattern { background-image: radial-gradient(#e5e5e5 1px, transparent 1px); background-size: 20px 20px; }
.text-center { text-align: center; }

/* PERFORMANCE: Defer rendering below fold */
#services, #areas, #about, .brands-banner, #contact, footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 800px; 
}

/* --- 3. BUTTONS (Restored Gradients & Glow) --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #ff8c00 100%);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

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

.btn-header {
    background: var(--accent);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-header:hover { background: var(--accent-hover); }

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-glow {
    animation: glow 2s infinite;
}

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(255, 107, 0, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 107, 0, 0.8); }
    100% { box-shadow: 0 0 5px rgba(255, 107, 0, 0.5); }
}

/* --- 4. HEADER (Restored Glassmorphism) --- */
header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(27, 42, 65, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s;
}

.nav-wrapper { display: flex; justify-content: center; align-items: center; position: relative; }
.logo { position: absolute; left: 0; top: 50%; transform: translateY(-50%); }
.logo-img { height: 45px; width: auto; }

.nav-links { display: flex; gap: 30px; align-items: center; justify-content: center; flex: 1; }
.nav-links a { color: rgba(255,255,255,1); font-weight: 600; font-size: 0.95rem; }
.nav-links a:hover { color: var(--accent); }

/* Hide mobile phone button on desktop */
.mobile-phone { display: none; }

.nav-right { 
    position: absolute; 
    right: 0; 
    top: 50%; 
    transform: translateY(-50%); 
    display: flex; 
    align-items: center; 
    gap: 15px; 
}

.mobile-toggle { display: none; color: var(--accent); font-size: 1.5rem; cursor: pointer; }

/* --- 5. HERO SECTION --- */
#hero {
    position: relative;
    background-color: var(--primary);
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: -76px;
    padding-top: 76px;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(27,42,65,0.9) 0%, rgba(27,42,65,0.7) 100%);
    z-index: 1;
}

.hero-content { 
    position: relative; 
    max-width: 900px; 
    z-index: 2; 
    animation: fadeIn 1s ease-out; 
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-sub { font-size: 1.5rem; font-weight: 600; margin-bottom: 20px; color: #ddd; }

.btn-group { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

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

/* --- 6. SERVICES (Premium Layout) --- */
.section-header { text-align: center; margin-bottom: 60px; max-width: 800px; margin-inline: auto; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 15px; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 40px; color: var(--primary); font-family: 'Montserrat', sans-serif; font-weight: 700; }
.divider { height: 4px; width: 60px; background: var(--accent); margin: 0 auto 20px; border-radius: 2px; }

.services-content { max-width: 900px; margin: 0 auto; text-align: center; }
.services-content h2 { font-size: 2.5rem; margin-bottom: 30px; color: var(--primary); font-family: 'Montserrat', sans-serif; font-weight: 700; }
.services-content > p { font-size: 1.1rem; line-height: 1.7; margin-bottom: 50px; color: #555; max-width: 800px; margin-left: auto; margin-right: auto; }

.premium-features { margin-bottom: 50px; }
.premium-features h3 { font-size: 1.8rem; margin-bottom: 40px; color: var(--primary); font-family: 'Montserrat', sans-serif; font-weight: 600; }

.feature-item { 
    display: flex; 
    align-items: flex-start; 
    gap: 25px; 
    margin-bottom: 40px; 
    text-align: left; 
    background: white; 
    padding: 30px; 
    border-radius: 15px; 
    box-shadow: var(--shadow); 
    border-left: 4px solid var(--accent); 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

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

.feature-icon { 
    flex-shrink: 0; 
    width: 60px; 
    height: 60px; 
    background: var(--accent); 
    color: white; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.5rem; 
}

.feature-content { flex: 1; }
.feature-content h4 { 
    font-size: 1.3rem; 
    margin-bottom: 15px; 
    color: var(--primary); 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 600; 
}

.feature-content p { 
    font-size: 1rem; 
    line-height: 1.6; 
    color: #666; 
    margin: 0; 
}

.services-list { 
    background: linear-gradient(135deg, var(--primary) 0%, #0f1a2a 100%); 
    padding: 50px 40px; 
    border-radius: 20px; 
    margin-bottom: 40px; 
    text-align: left; 
    position: relative;
    overflow: hidden;
}

.services-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--accent) 0%, transparent 30%, transparent 70%, var(--accent) 100%);
    opacity: 0.1;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.services-list h3 { 
    font-size: 1.6rem; 
    margin-bottom: 35px; 
    color: white; 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 700; 
    text-align: center; 
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.services-list ul { 
    list-style: none; 
    padding: 0; 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 20px; 
    position: relative;
    z-index: 1;
}

.services-list li { 
    padding: 15px 0 15px 40px; 
    position: relative; 
    color: rgba(255,255,255,0.95); 
    font-size: 1.05rem; 
    line-height: 1.6; 
    font-weight: 500;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.services-list li:hover { 
    background: rgba(255,255,255,0.15);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.services-list li::before { 
    content: '✓'; 
    position: absolute; 
    left: 15px; 
    color: var(--accent); 
    font-size: 1.3rem; 
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255,107,0,0.5);
}

.trust-badge { 
    background: var(--primary); 
    color: white; 
    padding: 20px 30px; 
    border-radius: 10px; 
    display: inline-block; 
}

.trust-badge p { 
    margin: 0; 
    font-size: 1.2rem; 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 600; 
}

/* --- 7. AREA TAGS --- */
.area-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }

.county-group {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary);
}

.county-group h3 { font-size: 1.1rem; margin-bottom: 15px; border-bottom: 1px dashed #eee; padding-bottom: 10px; }

.city-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.city-badge {
    background: #f4f6f8;
    color: #555;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.2s;
}

.city-badge:hover { background: var(--primary); color: white; }
.city-badge.zip { background: #fff3e0; color: #d35400; border: 1px solid #ffe8cc; }

/* --- 8. INFO / MAP --- */
.info-grid { display: flex; flex-wrap: wrap; gap: 50px; align-items: center; }
.info-content { flex: 1; min-width: 300px; }
.info-map { flex: 1; min-width: 300px; border-radius: 15px; overflow: hidden; box-shadow: var(--shadow); }
.info-map iframe { display: block; }

.lead { font-size: 1.1rem; margin-bottom: 30px; font-weight: 500; }

.feature-list li { display: flex; gap: 20px; margin-bottom: 25px; }
.feature-icon {
    width: 50px; height: 50px; background: var(--primary); color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.feature-detail { display: flex; flex-direction: column; }
.feature-detail strong { font-size: 1.1rem; color: var(--primary); }
.feature-detail span { font-size: 0.95rem; color: #666; }

/* Info Cards Styles */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.15); }

.info-card-header {
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.info-card-body {
    padding: 2rem;
}

.info-card-body h4 {
    color: var(--primary);
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.info-card-body p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.info-card-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.info-card-body li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #666;
    line-height: 1.5;
}

.info-card-body li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.info-card-body ol {
    padding-left: 1.5rem;
    margin-bottom: 15px;
}

.info-card-body ol li {
    padding: 0.5rem 0;
    color: #666;
    line-height: 1.5;
}

.info-card-body ol li::before {
    display: none;
}

.info-card-body strong {
    color: var(--primary);
}

/* --- Lockout Service Section --- */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: linear-gradient(135deg, var(--primary), #0f1a2a);
    color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: '💡';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 100px;
    opacity: 0.1;
}

.tip-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    color: var(--accent);
}

.tip-card p {
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

/* --- 9. BRANDS (Infinite Scroll) --- */
.brands-banner { 
    background: white; 
    padding: 50px 0; 
    border-top: 1px solid #eee; 
    border-bottom: 1px solid #eee; 
    overflow: hidden; 
}

.brands-banner h3 { 
    margin-bottom: 30px; 
    color: #555; 
    font-size: 1rem; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-weight: 700;
}

.brands-scroller {
    width: 100%;
    overflow: hidden;
    position: relative;
    transform: translateZ(0); 
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.brands-track {
    display: flex;
    gap: 50px; 
    width: max-content; 
    animation: scroll 20s linear infinite;
    will-change: transform; 
}

.brands-track span {
    font-weight: 700;
    color: var(--accent); 
    font-size: 1.8rem;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.3s;
    cursor: default;
}

.brands-track span:hover { color: var(--accent); }

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- 10. CTA --- */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0f1a2a 100%);
    color: white;
    text-align: center;
    padding: 100px 20px;
}
.cta-section h2 { color: white; font-size: 2.5rem; margin-bottom: 15px; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.2rem; margin-bottom: 40px; }

/* --- 11. FOOTER --- */
footer { background: #111; color: #aaa; padding: 80px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 60px; }
.footer-logo { height: 60px; width: auto; margin-bottom: 20px; }

.footer-col h3 { color: white; margin-bottom: 25px; font-size: 1.2rem; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { color: #aaa; transition: 0.3s; }
.footer-col a:hover { color: var(--accent); padding-left: 5px; }

.contact-details li { display: flex; gap: 15px; margin-bottom: 15px; }
.contact-details i { color: var(--accent); margin-top: 5px; }

.footer-bottom { border-top: 1px solid #222; padding-top: 20px; text-align: center; font-size: 0.9rem; }


/* 1. Section Background */
#guides {
    background-color: #f8f9fa; /* Clean Off-White */
    border-top: 1px solid #e9ecef;
}

/* 2. Grid Layout */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* 3. Technical Card Container */
.guide-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 0; /* Remove internal padding here, handled by children */
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e1e4e8;
    overflow: hidden; /* Keeps header corners rounded */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--accent);
}

/* 4. Card Header (Dark Navy Block) */
.guide-card h3 {
    background: var(--primary);
    color: white;
    margin: 0;
    padding: 20px 25px;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 3px solid var(--accent); /* The Orange Accent Line */
}

/* 5. Icon Styling (Inside Header) */
.guide-card h3 i {
    color: var(--accent);
    background: rgba(255,255,255,0.1); /* Subtle transparent circle */
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
}

/* 6. Card Content Area */
.guide-card p {
    padding: 20px 25px 0; /* Top/Side padding */
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 5px;
}

/* Add extra spacing to the last paragraph (The Solution) */
.guide-card p:last-child {
    padding-bottom: 25px;
    color: #333;
    font-weight: 500;
}

/* Highlight Keywords */
.guide-card strong {
color: #e65c00;
font-weight: 800;
}

/* 7. Mobile Adjustments */
@media (max-width: 768px) {
.guide-grid {
grid-template-columns: 1fr; /* Full width cards on mobile */
gap: 20px;
}
    
.guide-card h3 {
padding: 15px 20px;
font-size: 1rem;
}
    
.guide-card p {
padding: 15px 20px 0;
}
    
/* Optimization: Solid background for mobile header */
header {
backdrop-filter: none;
background: rgba(27, 42, 65, 1);
padding: 10px 0;
}
    
/* Mobile logo sizing */
.logo { width: 160px; height: 35px; }
.logo-img { height: 35px; width: auto; }
    
.nav-links {
display: none; position: absolute; top: 100%; left: 0; width: 100%;
background: var(--primary); flex-direction: column; padding: 30px; text-align: center;
border-top: 1px solid rgba(255,255,255,0.1);
}
.nav-links.active { display: flex; }
.mobile-toggle { 
display: block; 
margin-right: 15px; /* Move hamburger left from edge */
}
    
/* Hide desktop phone button on mobile */
.nav-right .btn-header { display: none; }
    
/* Show mobile phone button in menu */
.mobile-phone { display: block; margin-bottom: 20px; }
.mobile-phone .btn-header { 
display: inline-flex; 
align-items: center; 
gap: 8px; 
font-size: 0.9rem; 
padding: 12px 24px;
}
    
#hero h1 { font-size: 2.5rem; }
.hero-sub { font-size: 1.1rem; }
    
/* Mobile hero background adjustments */
.hero-bg-img { 
object-position: center 30%; /* Focus on upper portion for mobile */
height: 120%; /* Slightly taller to cover mobile viewport */
}
    
.hero-overlay {
background: linear-gradient(135deg, rgba(27,42,65,0.95) 0%, rgba(27,42,65,0.8) 100%);
}
    
.service-row { flex-direction: column; }
.service-visual { height: 80px; width: 100%; }
    
.btn-glow { animation: none; box-shadow: 0 0 10px rgba(255, 107, 0, 0.5); }
    
.section-padding { padding: 50px 0; }
.footer-grid { gap: 30px; margin-bottom: 40px; }
    
/* Mobile Responsive Buttons */
.btn { 
padding: 15px 25px; 
font-size: 1rem; 
border-radius: 25px; 
min-height: 48px; 
display: flex; 
align-items: center; 
justify-content: center; 
text-align: center; 
min-width: 120px; 
}
    
.btn-large { 
padding: 18px 30px; 
font-size: 1.1rem; 
min-height: 56px; 
min-width: 140px; 
}
    
.btn-header { 
padding: 12px 20px; 
font-size: 0.85rem; 
min-height: 44px; 
min-width: 120px; 
}
    
.btn-group { 
flex-direction: column; 
gap: 15px; 
align-items: center; 
}
    
.btn-group .btn { 
width: 100%; 
max-width: 300px; 
}
    
.info-cards { 
grid-template-columns: 1fr; 
gap: 1.5rem; 
margin-top: 2rem; 
}
    
.info-card-header { 
padding: 1.2rem; 
font-size: 1.2rem; 
}
    
.info-card-body { 
padding: 1.5rem; 
}
}

/* --- MOBILE PERFORMANCE OPTIMIZATIONS --- */
@media (max-width: 768px) {
/* Prevent layout shifts with explicit dimensions */
.hero-bg-img {
aspect-ratio: 16/9;
height: auto;
min-height: 100vh;
object-position: center 25%;
}
    
/* Optimize font loading for mobile */
.hero-content h1 {
font-size: 2.2rem;
line-height: 1.2;
margin-bottom: 15px;
min-height: 2.6em; /* Prevent CLS */
}
    
.hero-sub {
font-size: 1rem;
margin-bottom: 15px;
min-height: 1.2em; /* Prevent CLS */
}
    
/* Stack buttons vertically for better mobile UX */
.btn-group {
flex-direction: column;
gap: 12px;
align-items: center;
min-height: 120px; /* Prevent CLS */
}
    
.btn {
padding: 15px 25px;
font-size: 1rem;
min-width: 200px;
width: 100%;
max-width: 300px;
}
    
/* Optimize hero section for mobile */
#hero {
height: 100vh;
min-height: 500px;
padding-top: 60px; /* Account for smaller header */
margin-top: -60px;
}
    
/* Reduce header height for mobile */
header {
height: 60px;
backdrop-filter: none;
background: rgba(27, 42, 65, 1);
}
    
/* Optimize logo for mobile */
.logo { 
width: 160px; 
height: 35px;
flex-shrink: 0;
}
.logo-img { 
height: 35px; 
width: auto;
object-fit: contain;
}
    
/* Hide desktop elements */
.nav-links { display: none; }
.nav-right .btn-header { display: none; }
    
/* Show mobile elements */
.mobile-toggle { 
display: block; 
margin-right: 15px;
font-size: 1.2rem;
}

/* Mobile phone button */
.mobile-phone { 
display: block; 
margin-top: 15px;
}

.mobile-phone .btn-header {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 0.9rem;
padding: 12px 24px;
width: 100%;
max-width: 250px;
justify-content: center;
}
    
/* Mobile navigation */
.nav-links.active {
display: flex;
position: absolute;
top: 100%;
left: 0;
width: 100%;
background: var(--primary);
flex-direction: column;
padding: 20px;
text-align: center;
border-top: 1px solid rgba(255,255,255,0.1);
}
    
/* Optimize sections for mobile */
.section-padding { padding: 50px 0; }
.section-title { font-size: 2rem; }
    
/* Optimize info cards for mobile */
.info-cards {
grid-template-columns: 1fr;
gap: 1.5rem;
margin-top: 2rem;
}
    
.info-card-header {
padding: 1.2rem;
font-size: 1.2rem;
}
    
.info-card-body {
padding: 1.5rem;
}
    
/* Optimize guide cards for mobile */
.guide-grid {
grid-template-columns: 1fr;
gap: 20px;
}
    
.guide-card h3 {
padding: 15px 20px;
font-size: 1rem;
}
    
.guide-card p {
padding: 15px 20px 0;
font-size: 0.9rem;
}
    
/* Optimize footer for mobile */
.footer-grid {
gap: 30px;
margin-bottom: 40px;
grid-template-columns: 1fr;
}
    
/* Disable animations on mobile for better performance */
.btn-glow { animation: none; }
.feature-item:hover { transform: none; }
.guide-card:hover { transform: none; }
    
/* Optimize brands banner for mobile */
.brands-banner { padding: 30px 0; }
.brands-banner h3 { font-size: 0.9rem; }
.brands-track span { font-size: 1.4rem; }
}