/* ============================================================
   AnglinGear Site CSS — Shared styles for all pages
   Extracted from inline styles across 148 pages
   Last updated: 2026-07-01
   ============================================================ */

/* --- Design Tokens --- */
:root {
    --primary: #2c5530;
    --primary-dark: #1a3a1a;
    --secondary: #e8a838;
    --accent: #e8a838;
    --light: #f5f5f0;
    --dark: #1a1a1a;
    --white: #ffffff;
    --muted: #666;
    --text: #333;
    --text-light: #555;
    --border: #eee;
    --radius: 10px;
    --radius-lg: 12px;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 4px 20px rgba(0,0,0,0.12);
    --transition: 0.3s ease;
    --card-border: rgba(0,0,0,0.06);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Navigation --- */
.navbar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 0.85rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

.nav-container {
    max-width: 1500px;
    margin: 0 0 0 20%;
    padding: 0 2.5rem 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    letter-spacing: 0.5px;
}

.logo i {
    font-size: 1.4rem;
    color: var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.98rem;
    transition: all 0.25s ease;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    position: relative;
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
    transform: translateY(-1px);
}

.nav-links a:focus {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 80%;
}

.nav-links a.active {
    color: var(--secondary);
    background: rgba(255,255,255,0.08);
}

.nav-links a.active::after {
    width: 100%;
}

/* --- Mobile Nav Toggle --- */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* --- Language Switcher --- */
.lang-switcher select {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.25s ease;
    backdrop-filter: blur(10px);
}

.lang-switcher select:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-1px);
}

.lang-switcher select:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(232,168,56,0.3);
}

.lang-switcher select option {
    color: var(--dark);
    background: var(--white);
}

/* --- Footer --- */
footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-section {
    align-self: start;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--secondary);
    margin-top: 0;
}

.footer-section p,
.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a {
    transition: color var(--transition);
}

.footer-section a:hover,
.footer-section a:focus {
    color: var(--secondary);
    outline: 1px dashed var(--secondary);
    outline-offset: 2px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.25rem;
    border-top: 1px solid #444;
    color: #888;
    margin-top: 1.5rem;
    font-size: 0.85rem;
}

/* --- Breadcrumb --- */
.breadcrumb {
    margin-top: 80px;
    background: var(--white);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
        padding: 0 1rem;
        margin: 0 auto;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 1rem;
        right: 1rem;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 1rem;
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        display: block;
        padding: 12px 12px;
        border-radius: var(--radius);
    }

    .nav-links a:hover {
        background: rgba(255,255,255,0.10);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        padding: 0 1rem;
        margin: 0 auto;
        gap: 1.5rem;
    }

    .footer-section {
        text-align: left;
    }

    .container {
        padding: 0 20px;
    }

    .breadcrumb {
        margin-top: 70px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.3rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-section {
        text-align: center;
    }
}
/* ============================================================
   Product Page Styles
   ============================================================ */

.container-products {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-products {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 4.5rem 2rem 3rem;
    text-align: center;
}

.hero-products h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-products p {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    opacity: 0.95;
}

.hero-tools {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1rem;
    align-items: center;
}

.search {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 0.85rem 1rem;
    border-radius: 10px;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    backdrop-filter: blur(10px);
}

.search i {
    color: rgba(255,255,255,0.9);
}

.search input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 1rem;
}

.search input::placeholder {
    color: rgba(255,255,255,0.8);
}

.hero-note {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 0.85rem 1rem;
    border-radius: 10px;
    text-align: left;
    font-size: 0.95rem;
    opacity: 0.95;
}

.category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1.25rem 0 2rem;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--card-border);
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.category-pill:hover {
    border-color: rgba(44,85,48,0.25);
}

.category-section {
    margin-bottom: 3.25rem;
}

.category-header {
    background: var(--primary);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.25rem;
    border-radius: 10px;
    display: flex;
    align-items: baseline;
    gap: 0.9rem;
}

.category-header i {
    font-size: 1.6rem;
    color: var(--accent);
}

.category-header h2 {
    font-size: 1.5rem;
}

.category-count {
    margin-left: auto;
    opacity: 0.9;
    font-weight: 600;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.6rem;
}

.product-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.11);
}

.product-image {
    width: 100%;
    height: 210px;
    object-fit: contain;
    object-position: center;
    background: #f0f0f0;
}

.product-content {
    padding: 1.25rem 1.25rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.product-topline {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.product-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--secondary);
}

.product-sku {
    font-size: 0.92rem;
    color: var(--muted);
    font-weight: 600;
}

.product-description {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.5;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.specs-table th,
.specs-table td {
    padding: 0.55rem 0.55rem;
    text-align: left;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.specs-table th {
    background: rgba(245,245,240,0.9);
    color: var(--primary);
    font-weight: 700;
    width: 42%;
}

.quote-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    border: none;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: transform 0.2s ease, background 0.2s ease;
    margin-top: auto;
    display: block;
}

.quote-btn:hover {
    transform: translateY(-1px);
}

.quote-btn i {
    margin-right: 0.5rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1400;
}

.sticky-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.2px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
    border: 1px solid rgba(0,0,0,0.06);
    background: rgba(255,255,255,0.95);
    color: var(--secondary);
    backdrop-filter: blur(10px);
    min-width: 160px;
}

.sticky-cta__btn i {
    font-size: 1.1rem;
}

.sticky-cta__btn[data-cta="email"] {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    border-color: rgba(255,255,255,0.12);
}

.sticky-cta__btn:hover {
    transform: translateY(-1px);
}

/* Product Responsive */
@media (max-width: 900px) {
    .hero-products h1 {
        font-size: 2.25rem;
    }
    .hero-tools {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    .sticky-cta {
        left: 12px;
        right: 12px;
        bottom: 12px;
        flex-direction: row;
    }
    .sticky-cta__btn {
        flex: 1;
        border-radius: 14px;
        min-width: 0;
    }
    body {
        padding-bottom: 76px;
    }
}

.hidden {
    display: none !important;
}

/* ============================================================
   Blog Page Styles
   ============================================================ */

.hero-blog {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.hero-blog h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.content-blog {
    padding: 80px 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.blog-grid.hidden {
    display: none;
}

.blog-card {
    background: var(--white);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border: 1px solid var(--card-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.blog-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.blog-card .date {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-card h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin: 0;
}

.blog-card p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.blog-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.blog-card a:hover {
    text-decoration: underline;
}

/* Article Page Styles */
.article-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.article-content {
    padding: 60px 0;
    background: var(--white);
}

.article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.article-meta {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light);
}

.article-meta .date {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.article-meta .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    background: var(--light);
    color: var(--primary-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.article-body {
    line-height: 1.8;
}

.article-body h2 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--secondary);
}

.article-body h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

.article-body p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.article-body strong {
    color: var(--primary-dark);
}

.article-body ul,
.article-body ol {
    margin: 1rem 0 1.5rem 2rem;
}

.article-body li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.article-body a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 2px solid var(--secondary);
    transition: all 0.3s ease;
}

.article-body a:hover {
    color: var(--secondary);
    border-bottom-color: var(--primary);
}

.article-body a[target="_blank"]::after {
    content: " ↗";
    font-size: 0.8em;
    opacity: 0.7;
}

.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.article-body th {
    background: var(--primary);
    color: var(--white);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.article-body td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.article-body tr:nth-child(even) {
    background: var(--light);
}

.article-body tr:hover {
    background: #e8f5e9;
}

.toc {
    background: var(--light);
    padding: 25px 30px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid var(--secondary);
}

.toc h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.toc ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.toc li {
    margin-bottom: 8px;
}

.toc a {
    color: var(--dark);
    text-decoration: none;
    font-size: 0.95rem;
}

.toc a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.product-link {
    display: inline-block;
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    margin: 0.5rem 0.5rem 0.5rem 0;
    border: none !important;
}

.product-link:hover {
    background: var(--primary-dark);
    border: none !important;
    color: var(--white) !important;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: center;
}

.cta-box h3 {
    color: var(--white) !important;
    margin-bottom: 1rem !important;
    border-bottom: none !important;
}

.cta-box p {
    color: rgba(255,255,255,0.9) !important;
}

.cta-button {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
    border: none !important;
}

.cta-button:hover {
    transform: translateY(-2px);
    border: none !important;
}

.related-resources {
    background: var(--light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.related-resources h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    border-bottom: none;
}

.related-resources ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-resources li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.related-resources li:last-child {
    border-bottom: none;
}

.faq-section {
    margin-top: 48px;
}

.faq-section h2 {
    color: var(--primary-dark);
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}

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

.faq-question {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--dark);
    line-height: 1.7;
}

/* Blog Responsive */
@media (max-width: 768px) {
    .article-container {
        padding: 0 1rem;
    }

    .article-body h2 {
        font-size: 1.5rem;
    }

    .article-body h3 {
        font-size: 1.2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* Navigation Mobile Override */
    .navbar {
        padding: 0.75rem 0 !important;
    }

    .nav-container {
        justify-content: space-between !important;
        padding: 0 1.5rem !important;
        margin: 0 auto !important;
        gap: 0.5rem !important;
    }

    .logo {
        font-size: 1.4rem !important;
    }

    .logo i {
        font-size: 1.1rem !important;
    }

    .lang-switcher {
        position: absolute;
        top: 0.75rem;
        right: 1.5rem;
    }

    .lang-switcher select {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.8rem !important;
    }

    .nav-toggle {
        width: 42px !important;
        height: 42px !important;
        border: 1px solid rgba(255,255,255,0.2) !important;
        border-radius: 8px !important;
        background: rgba(255,255,255,0.08) !important;
        padding: 0 !important;
    }

    .nav-toggle-bar {
        width: 20px !important;
        height: 2px !important;
    }

    .nav-links {
        top: calc(100% + 8px) !important;
        background: var(--primary-dark) !important;
        gap: 0.25rem !important;
        box-shadow: 0 20px 40px rgba(0,0,0,0.4) !important;
    }

    .nav-links a {
        padding: 12px 16px !important;
        font-size: 0.95rem !important;
        color: rgba(255,255,255,0.9) !important;
    }

    .nav-links a:hover {
        color: var(--white) !important;
        background: rgba(255,255,255,0.08) !important;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem !important;
    }

    .nav-container {
        padding: 0 1rem !important;
    }
}

/* ============================================================
   SEO Section Styles (Index Page)
   ============================================================ */

.keyword-highlight {
    background: linear-gradient(120deg, rgba(232,168,56,0.2) 0%, rgba(232,168,56,0.2) 100%);
    padding: 0 4px;
    border-radius: 3px;
}

.long-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.long-content p {
    margin-bottom: 1.5rem;
    color: #444;
}

/* Trust Stats */
.trust-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.trust-stat-item {
    text-align: center;
    padding: 1.5rem;
    min-width: 120px;
}

.trust-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.trust-stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Markets Grid */
.markets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.market-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.market-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.market-card h4 {
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

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

/* Certification Strip */
.cert-strip {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.cert-item strong {
    color: var(--primary);
    font-size: 1.1rem;
}

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

/* Promise Box */
.promise-box {
    background: linear-gradient(135deg, var(--light) 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    border-left: 4px solid var(--secondary);
}

.promise-box blockquote {
    margin: 0;
    font-style: italic;
    color: var(--text);
    line-height: 1.8;
}

.promise-box cite {
    display: block;
    margin-top: 1rem;
    color: var(--muted);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .trust-stats {
        gap: 1.5rem;
    }

    .trust-stat-number {
        font-size: 2rem;
    }

    .cert-strip {
        gap: 1.5rem;
    }
}/* ============================================================
   AnglinGear Page Sections CSS — Complete fixes
   Missing styles for Contact, About Us, How We Work, and FAQ pages
   ============================================================ */

/* --- Hero Section (base) --- */
.hero {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-note {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    max-width: 800px;
    margin: 2rem auto 0;
}

/* --- CTA Section --- */
.cta {
    padding: 80px 2rem;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

.cta .btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: var(--secondary);
    color: var(--white);
}

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

/* --- Contact Page Styles --- */
.contact-section {
    padding: 60px 2rem;
    background: var(--white);
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h2 {
    color: var(--primary-dark);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.5rem;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(44, 85, 48, 0.1);
    border-radius: 8px;
}

.info-content h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Form */
.contact-form-container {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-title {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

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

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

.contact-form-container .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background: var(--secondary);
    color: var(--white);
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form-container .btn-primary:hover {
    background: #d4962e;
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 1rem;
}

/* Honeypot fields (hidden) */
.hp-field {
    display: none !important;
}

/* Locations Section */
.locations-section {
    padding: 60px 2rem;
    background: var(--light);
}

.locations-section h2 {
    text-align: center;
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.locations-section > .container > p {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.locations-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.location-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.location-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.location-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.location-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* --- About Us Page Styles --- */
.story-section,
.story {
    padding: 80px 2rem;
    background: var(--white);
}

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

.story-content h2 {
    color: var(--primary-dark);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.story-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Values Section */
.values-section {
    padding: 80px 2rem;
    background: var(--light);
}

.values-section h2 {
    text-align: center;
    color: var(--primary-dark);
    font-size: 2rem;
    margin-bottom: 3rem;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Network Section */
.network-section,
.network {
    padding: 80px 2rem;
    background: var(--white);
}

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

.network-content h2 {
    color: var(--primary-dark);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.network-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.network-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

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

.network-map img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Team Section */
.team-section {
    padding: 80px 2rem;
    background: var(--light);
}

.team-section h2 {
    text-align: center;
    color: var(--primary-dark);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.team-intro {
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.team-photo {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.team-info h3 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.team-role {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-info p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Difference Section */
.difference-section {
    padding: 80px 2rem;
    background: var(--white);
}

.difference-section h2 {
    text-align: center;
    color: var(--primary-dark);
    font-size: 2rem;
    margin-bottom: 3rem;
}

.difference-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.difference-card {
    padding: 2rem;
    border-radius: 12px;
}

.difference-card.old {
    background: #f8f9fa;
    border-left: 4px solid #999;
}

.difference-card.new {
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.05) 0%, rgba(44, 85, 48, 0.1) 100%);
    border-left: 4px solid var(--secondary);
}

.difference-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.difference-card.old h3 {
    color: #666;
}

.difference-card.new h3 {
    color: var(--primary-dark);
}

.difference-card ul {
    list-style: none;
}

.difference-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.difference-card.old li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #999;
}

.difference-card.new li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* --- How We Work Page Styles --- */
.process-section {
    padding: 60px 2rem;
    background: var(--white);
}

.process-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.process-intro h2 {
    color: var(--primary-dark);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.process-intro p {
    color: var(--text-light);
}

.workflow {
    max-width: 1000px;
    margin: 0 auto;
}

.workflow-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: start;
}

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

.step-content h3 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.step-content h3 i {
    color: var(--secondary);
}

.step-content > p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.step-content ul {
    list-style: none;
    padding: 0;
}

.step-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.step-content li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* Features Section */
.features-section {
    padding: 60px 2rem;
    background: var(--light);
}

.features-section > .container > h2 {
    text-align: center;
    color: var(--primary-dark);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.features-section > .container > p {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.features-section .features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-box i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-box h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-box p {
    color: var(--text-light);
    line-height: 1.7;
}

/* --- FAQ Page Styles --- */
.faq-section {
    padding: 60px 2rem;
    background: var(--white);
}

.faq-section h2 {
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.faq-question i {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.faq-question h3 {
    color: var(--primary-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.faq-answer {
    padding-left: 2.3rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
}

/* --- Anti-Scraping Protection Styles --- */
.protected-email .email-at,
.protected-phone .phone-separator {
    display: none;
}

.protected-email::after {
    content: "@";
}

.protected-phone {
    cursor: pointer;
}

.protected-phone::after {
    content: " | Click to reveal";
    font-size: 0.85em;
    color: var(--secondary);
}

.protected-phone.revealed::after {
    content: "";
}

.protected-phone.revealed .phone-separator {
    display: inline;
    margin: 0 3px;
}

/* --- Neutral Colors --- */
:root {
    --neutral-dark: #444;
    --neutral-light: #999;
}

/* --- Responsive Styles --- */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-grid,
    .network-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .difference-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .contact-section,
    .story-section,
    .values-section,
    .network-section,
    .team-section,
    .difference-section,
    .process-section,
    .features-section,
    .faq-section,
    .locations-section {
        padding: 40px 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .workflow-step {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step-number {
        margin: 0 auto;
    }

    .step-content {
        text-align: center;
    }

    .step-content h3 {
        justify-content: center;
    }

    .network-stats {
        grid-template-columns: 1fr;
    }

    .locations-grid,
    .team-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 1rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .cta h2 {
        font-size: 1.8rem;
    }
}