/*
Theme Name: Anitech AI
Theme URI: https://www.anitechgroup.com
Author: Anitech Group
Author URI: https://www.anitechgroup.com
Description: A futuristic, best-in-class WordPress theme for Anitech AI Services in Australia. Features deep space dark design with Anitech brand crimson red accents, animated sections, and full AI services showcase.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
License URI: https://www.anitechgroup.com
Text Domain: anitech-ai
Tags: dark, futuristic, ai, technology, australia, business, services, one-page, responsive

================================================================
ANITECH AI THEME — MAIN STYLESHEET
Brand: #8F001B (Crimson), #C0001F (Bright Crimson), #111318 (Dark BG)
Typography: Space Grotesk (headings), DM Sans (body), JetBrains Mono (mono)
================================================================
*/

/* ============================================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
:root {
    /* Brand Colours */
    --color-brand-red:        #8F001B;
    --color-brand-red-bright: #C0001F;
    --color-brand-red-dark:   #6A0014;
    --color-brand-red-glow:   rgba(143, 0, 27, 0.35);

    /* Background Palette */
    --color-bg-primary:   #111318;
    --color-bg-secondary: #0D0F14;
    --color-bg-card:      #181B22;
    --color-bg-card-hover:#1E2230;
    --color-bg-overlay:   rgba(17, 19, 24, 0.95);

    /* Text Palette */
    --color-text-primary:  #F0EDE8;
    --color-text-secondary:rgba(240, 237, 232, 0.65);
    --color-text-muted:    rgba(240, 237, 232, 0.40);
    --color-text-mono:     rgba(240, 237, 232, 0.50);

    /* Border & Dividers */
    --color-border:       rgba(143, 0, 27, 0.15);
    --color-border-light: rgba(240, 237, 232, 0.08);

    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body:    'DM Sans', sans-serif;
    --font-mono:    'JetBrains Mono', monospace;

    /* Spacing */
    --section-padding: 6rem 0;
    --container-max:   1280px;

    /* Radius */
    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  20px;

    /* Transitions */
    --transition-fast:   0.2s ease;
    --transition-normal: 0.35s ease;
    --transition-slow:   0.6s ease;

    /* Shadows */
    --shadow-card:  0 4px 24px rgba(0,0,0,0.4);
    --shadow-glow:  0 0 40px rgba(143, 0, 27, 0.25);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.6);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    color: var(--color-text-secondary);
    line-height: 1.75;
    margin-bottom: 1rem;
}

p:last-child { margin-bottom: 0; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container { padding: 0 2rem; }
}

.section {
    padding: var(--section-padding);
    position: relative;
}

.section--dark {
    background-color: var(--color-bg-secondary);
}

.section--tinted {
    background-color: rgba(143, 0, 27, 0.025);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .grid-2 { grid-template-columns: 1fr 1fr; }
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

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

@media (min-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.text-center { text-align: center; }
.text-left   { text-align: left; }

.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap    { flex-wrap: wrap; }
.gap-1        { gap: 0.5rem; }
.gap-2        { gap: 1rem; }
.gap-3        { gap: 1.5rem; }
.gap-4        { gap: 2rem; }

/* ============================================================
   SECTION LABEL (eyebrow text)
   ============================================================ */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-brand-red-bright);
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    display: block;
    width: 2rem;
    height: 1px;
    background: var(--color-brand-red-bright);
    flex-shrink: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all var(--transition-normal);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-brand-red);
    color: #fff;
    border: 1px solid var(--color-brand-red);
    box-shadow: 0 4px 20px rgba(143, 0, 27, 0.3);
}

.btn-primary:hover {
    background: var(--color-brand-red-bright);
    border-color: var(--color-brand-red-bright);
    box-shadow: 0 8px 30px rgba(143, 0, 27, 0.5);
    transform: translateY(-2px);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid rgba(240, 237, 232, 0.25);
}

.btn-outline:hover {
    border-color: var(--color-brand-red-bright);
    color: var(--color-brand-red-bright);
    background: rgba(143, 0, 27, 0.08);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.8rem;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
    padding: 0;
}

#site-header.scrolled {
    background: rgba(13, 15, 20, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 2rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.navbar__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.navbar__logo img {
    height: 44px;
    width: auto;
}

.navbar__nav {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 1024px) {
    .navbar__nav { display: flex; }
}

.navbar__nav a {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.navbar__nav a:hover,
.navbar__nav a.active {
    color: var(--color-text-primary);
    background: rgba(240, 237, 232, 0.06);
}

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

.navbar__phone {
    display: none;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

@media (min-width: 768px) {
    .navbar__phone { display: block; }
}

.navbar__phone:hover {
    color: var(--color-brand-red-bright);
}

.navbar__hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
}

@media (min-width: 1024px) {
    .navbar__hamburger { display: none; }
}

.navbar__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    transition: all var(--transition-fast);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 15, 20, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    padding: 2rem;
    gap: 0.5rem;
    overflow-y: auto;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.mobile-menu a:hover {
    color: var(--color-brand-red-bright);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17,19,24,0.92) 0%, rgba(17,19,24,0.55) 50%, rgba(17,19,24,0.88) 100%);
}

.hero__hex {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='70' viewBox='0 0 60 70' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0 L60 17.5 L60 52.5 L30 70 L0 52.5 L0 17.5 Z' fill='none' stroke='rgba(143,0,27,0.08)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 60px 70px;
    opacity: 0.5;
}

.hero__content {
    position: relative;
    z-index: 1;
    padding: 6rem 0;
    max-width: 780px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-brand-red-bright);
    margin-bottom: 1.5rem;
}

.hero__eyebrow::before {
    content: '';
    display: block;
    width: 2rem;
    height: 1px;
    background: var(--color-brand-red-bright);
}

.hero__title {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
}

.hero__title .accent {
    color: var(--color-brand-red-bright);
    text-shadow: 0 0 50px rgba(143, 0, 27, 0.5);
}

.hero__subtitle {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--color-text-secondary);
    max-width: 560px;
    margin-bottom: 2.5rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.hero__badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-brand-red-bright);
    box-shadow: 0 0 0 0 rgba(143, 0, 27, 0.6);
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(143, 0, 27, 0.6); }
    70%  { box-shadow: 0 0 0 8px rgba(143, 0, 27, 0); }
    100% { box-shadow: 0 0 0 0 rgba(143, 0, 27, 0); }
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
    color: rgba(143, 0, 27, 0.5);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    padding: 4rem 0;
    background: rgba(143, 0, 27, 0.04);
    border-top: 1px solid rgba(143, 0, 27, 0.1);
    border-bottom: 1px solid rgba(143, 0, 27, 0.1);
}

.stats-bar__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-bar__grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item__value {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-brand-red-bright);
    line-height: 1;
    display: block;
}

.stat-item__label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
    display: block;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-brand-red), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service-card:hover {
    border-color: rgba(143, 0, 27, 0.35);
    background: var(--color-bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: rgba(143, 0, 27, 0.12);
    border: 1px solid rgba(143, 0, 27, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--color-brand-red-bright);
    font-size: 1.5rem;
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
}

.service-card__desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 1.25rem;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-brand-red-bright);
    text-decoration: none;
    transition: gap var(--transition-fast);
}

.service-card__link:hover {
    gap: 0.75rem;
    color: var(--color-brand-red-bright);
}

/* ============================================================
   FEATURE LIST
   ============================================================ */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.feature-list li::before {
    content: '✓';
    color: var(--color-brand-red-bright);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

/* ============================================================
   INDUSTRY TAGS
   ============================================================ */
.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.industry-tag {
    padding: 0.625rem 1.25rem;
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    background: rgba(143, 0, 27, 0.06);
    border: 1px solid rgba(143, 0, 27, 0.18);
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.industry-tag:hover {
    background: rgba(143, 0, 27, 0.15);
    border-color: rgba(143, 0, 27, 0.45);
    color: var(--color-brand-red-bright);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(143, 0, 27, 0.18);
}

.about-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.about-stat-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(17, 19, 24, 0.97);
    border: 1px solid rgba(143, 0, 27, 0.25);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    text-align: center;
}

.about-stat-card__value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-brand-red-bright);
    display: block;
    line-height: 1;
}

.about-stat-card__label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-top: 0.35rem;
    display: block;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-feature__icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(143, 0, 27, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand-red-bright);
    font-size: 1rem;
    flex-shrink: 0;
}

.about-feature__text {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-secondary);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.cta-section__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(143, 0, 27, 0.08) 0%, rgba(80, 0, 15, 0.08) 100%);
    border-top: 1px solid rgba(143, 0, 27, 0.12);
    border-bottom: 1px solid rgba(143, 0, 27, 0.12);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr 1.4fr; }
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--color-border-light);
}

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

.contact-info-item__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(143, 0, 27, 0.1);
    border: 1px solid rgba(143, 0, 27, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand-red-bright);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-item__label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 0.25rem;
}

.contact-info-item__value {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-info-item__value:hover {
    color: var(--color-brand-red-bright);
}

/* Contact Form */
.contact-form {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

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

.form-group label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(240, 237, 232, 0.04);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-sm);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(143, 0, 27, 0.45);
    background: rgba(143, 0, 27, 0.04);
}

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

.form-group select {
    appearance: none;
    cursor: pointer;
}

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

@media (min-width: 640px) {
    .form-row { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   LOCATIONS
   ============================================================ */
.location-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
}

.location-item__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-brand-red-bright);
    box-shadow: 0 0 0 0 rgba(143, 0, 27, 0.6);
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

.location-item__name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-secondary);
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
    background: var(--color-bg-secondary);
    border-top: 1px solid rgba(143, 0, 27, 0.12);
    padding: 4rem 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--color-border-light);
}

@media (min-width: 640px) {
    .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

.footer__brand-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer__brand-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.footer__social {
    display: flex;
    gap: 0.75rem;
}

.footer__social a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(240, 237, 232, 0.05);
    border: 1px solid var(--color-border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.footer__social a:hover {
    background: rgba(143, 0, 27, 0.15);
    border-color: rgba(143, 0, 27, 0.35);
    color: var(--color-brand-red-bright);
}

.footer__col-title {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-primary);
    margin-bottom: 1.25rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer__links a {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer__links a:hover {
    color: var(--color-brand-red-bright);
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
}

.footer__contact-item__icon {
    color: var(--color-brand-red-bright);
    font-size: 0.9rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.footer__contact-item__text {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer__contact-item__text:hover {
    color: var(--color-brand-red-bright);
}

.footer__bottom {
    padding: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer__copyright {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

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

.footer__legal a {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer__legal a:hover {
    color: var(--color-brand-red-bright);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    padding: 10rem 0 5rem;
    position: relative;
    overflow: hidden;
    background: var(--color-bg-secondary);
    border-bottom: 1px solid var(--color-border);
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='70' viewBox='0 0 60 70' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0 L60 17.5 L60 52.5 L30 70 L0 52.5 L0 17.5 Z' fill='none' stroke='rgba(143,0,27,0.06)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 60px 70px;
}

.page-hero__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

/* ============================================================
   PRIVACY POLICY / LEGAL PAGES
   ============================================================ */
.legal-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 4rem 0 6rem;
}

.legal-content h2 {
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
    padding-left: 1rem;
    border-left: 3px solid var(--color-brand-red);
}

.legal-content h3 {
    font-size: 1.1rem;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-secondary);
}

.legal-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content ul li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 0.4rem;
}

.legal-meta {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border-light);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.float-anim {
    animation: float 6s ease-in-out infinite;
}

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

/* ============================================================
   WORDPRESS CORE OVERRIDES
   ============================================================ */
.wp-block-image img {
    border-radius: var(--radius-md);
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
}

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 768px) {
    .hide-mobile { display: none !important; }
    .about-stat-card { position: static; margin-top: 1.5rem; }
    .contact-form { padding: 1.5rem; }
}

@media (min-width: 769px) {
    .hide-desktop { display: none !important; }
}

/* ============================================================
   WORDPRESS PAGINATION
   ============================================================ */
.pagination,
.nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.page-numbers,
.nav-links a,
.nav-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.page-numbers:hover,
.nav-links a:hover {
    color: var(--color-brand-red-bright);
    border-color: rgba(143, 0, 27, 0.35);
    background: rgba(143, 0, 27, 0.08);
}

.page-numbers.current {
    background: var(--color-brand-red);
    border-color: var(--color-brand-red);
    color: #fff;
}

/* ============================================================
   WORDPRESS ENTRY CONTENT (GUTENBERG / CLASSIC)
   ============================================================ */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin-top: 2rem;
    margin-bottom: 0.875rem;
    color: var(--color-text-primary);
}

.entry-content p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.entry-content ul,
.entry-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }

.entry-content ul li,
.entry-content ol li {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 0.4rem;
}

.entry-content a {
    color: var(--color-brand-red-bright);
    text-decoration: underline;
    text-decoration-color: rgba(192, 0, 31, 0.4);
    transition: text-decoration-color var(--transition-fast);
}

.entry-content a:hover {
    text-decoration-color: var(--color-brand-red-bright);
}

.entry-content blockquote {
    border-left: 3px solid var(--color-brand-red);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: rgba(143, 0, 27, 0.04);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.entry-content blockquote p {
    color: var(--color-text-secondary);
    font-style: italic;
    margin: 0;
}

.entry-content img {
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.entry-content th {
    background: rgba(143, 0, 27, 0.08);
    color: var(--color-text-primary);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.entry-content td {
    padding: 0.75rem 1rem;
    color: var(--color-text-secondary);
    border-bottom: 1px solid var(--color-border-light);
    font-size: 0.9rem;
}

.entry-content code {
    font-family: var(--font-mono);
    font-size: 0.85em;
    background: rgba(240, 237, 232, 0.06);
    border: 1px solid var(--color-border-light);
    border-radius: 4px;
    padding: 0.15em 0.45em;
    color: var(--color-brand-red-bright);
}

.entry-content pre {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.entry-content pre code {
    background: none;
    border: none;
    padding: 0;
    color: var(--color-text-primary);
    font-size: 0.875rem;
}

/* ============================================================
   WIDGET STYLES
   ============================================================ */
.widget {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.widget__title {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-border-light);
}

/* ============================================================
   SEARCH FORM
   ============================================================ */
.search-form {
    display: flex;
    gap: 0.5rem;
}

.search-field {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(240, 237, 232, 0.04);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-sm);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
}

.search-field:focus {
    border-color: rgba(143, 0, 27, 0.45);
}

.search-submit {
    padding: 0.75rem 1.25rem;
    background: var(--color-brand-red);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.search-submit:hover {
    background: var(--color-brand-red-bright);
}

/* ============================================================
   SERVICE DETAIL PAGE GRID
   ============================================================ */
@media (min-width: 768px) {
    .service-detail-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

/* ============================================================
   ADDITIONAL PAGE UTILITY
   ============================================================ */
#page-wrap {
    min-height: calc(100vh - 80px);
}

