/*
 * Belgian Malinois Training Page — Standalone CSS
 * Extracted from style.css + navigation.css + service-detail.css + belgian-malinois.css
 */

/* ══════════════════════════════════════
   CSS RESET
   ══════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ══════════════════════════════════════
   CSS VARIABLES
   ══════════════════════════════════════ */
:root {
    /* Colors */
    --primary-gold: #D4A574;
    --dark-brown: #5C4033;
    --military-green: #4A5D23;
    --deep-charcoal: #2C2C2C;
    --cream: #F5F1E8;

    /* Accents */
    --primary-sand: #C4A882;
    --sage-green: #6B7F5E;
    --alert-orange: #E67E22;
    --success-green: #27AE60;
    --white: #FFFFFF;
    --light-gray: #E0E0E0;
    --dark-overlay: rgba(0, 0, 0, 0.6);

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --font-stats: 'Roboto Condensed', sans-serif;

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 48px;
    --space-xl: 64px;
    --space-xxl: 96px;

    /* Breakpoints */
    --mobile: 480px;
    --tablet: 768px;
    --desktop: 1024px;
    --max-width: 1200px;

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 15px rgba(212, 165, 116, 0.5);

    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

/* ══════════════════════════════════════
   TYPOGRAPHY
   ══════════════════════════════════════ */
body {
    font-family: var(--font-body);
    color: var(--deep-charcoal);
    background-color: var(--cream);
    font-size: 16px;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    color: var(--dark-brown);
    text-shadow: none;
}

h1 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: normal;
    transform: none;
    color: var(--dark-brown);
}

h2 {
    font-size: 36px;
    color: var(--dark-brown);
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 20px;
    font-family: var(--font-heading);
}

p {
    margin-bottom: var(--space-md);
    color: var(--deep-charcoal);
}

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

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

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

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: normal;
    font-family: inherit;
}

.text-bold {
    font-weight: 700;
}

/* ══════════════════════════════════════
   SECTION TITLE
   ══════════════════════════════════════ */
.section-title {
    position: relative;
    padding-bottom: var(--space-sm);
    margin-bottom: var(--space-lg);
    text-align: center;
    color: var(--dark-brown);
    display: block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
    border-radius: 0;
    box-shadow: none;
}

/* ══════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-brown) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.45);
    background: linear-gradient(135deg, #ddb68a 0%, var(--dark-brown) 100%);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--dark-brown);
    color: var(--dark-brown);
}

.btn-secondary:hover {
    background-color: var(--dark-brown);
    color: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(92, 64, 51, 0.25);
}

.btn-secondary.dark-mode {
    border-color: var(--white);
    color: var(--white);
}

.btn-secondary.dark-mode:hover {
    background-color: var(--white);
    color: var(--military-green);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ══════════════════════════════════════
   CARDS
   ══════════════════════════════════════ */
.card-service {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-service:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.card-service-img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

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

.card-service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-service-content h3 {
    margin-bottom: var(--space-sm);
    color: var(--dark-brown);
    font-size: 24px;
    font-weight: 700;
}

.card-service-content p {
    flex-grow: 1;
    margin-bottom: var(--space-md);
    color: var(--deep-charcoal);
    line-height: 1.6;
}

.card-feature {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-normal);
    height: 100%;
}

.card-feature:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: var(--white);
    font-size: 32px;
}

/* ══════════════════════════════════════
   LAYOUT
   ══════════════════════════════════════ */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

section {
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
}

.section-alt {
    background-color: #F9F9F9;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    margin: 0;
}

/* Grids */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    align-items: stretch;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

/* Flex Utilities */
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.hidden {
    display: none;
}

/* ══════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════ */
header {
    background: rgba(44, 44, 44, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--primary-gold);
    height: 70px;
    position: sticky;
    top: 20px;
    z-index: 1000;
    transition: var(--transition-normal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 30px;
    padding: 0 10px;
}

header.scrolled {
    width: 95%;
    top: 10px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
}

.logo img {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    object-fit: contain;
    background-color: var(--white);
}

.logo span {
    color: var(--primary-gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 0, 0, 0.2);
    padding: 5px;
    border-radius: 30px;
}

.nav-link {
    font-family: var(--font-stats);
    font-weight: 700;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
    padding: 8px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--dark-brown);
    background: var(--primary-gold);
    box-shadow: 0 0 10px var(--primary-gold);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 100%;
}

.nav-dropdown:hover::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 25px;
    background: transparent;
    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: rgba(44, 44, 44, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    min-width: 280px;
    border-radius: 20px;
    border: 1px solid var(--primary-gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    overflow: hidden;
    padding: 10px 0;
    transition: all 0.25s ease;
    opacity: 0;
    visibility: hidden;
}

.nav-dropdown-content a {
    display: block;
    padding: 12px 24px;
    color: rgba(255, 255, 255, 0.85) !important;
    font-family: var(--font-stats);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
    white-space: normal;
    line-height: 1.4;
    text-decoration: none !important;
}

.nav-dropdown-content a:last-child {
    border-bottom: none;
}

.nav-dropdown-content a:hover {
    background: var(--primary-gold) !important;
    color: var(--dark-brown) !important;
}

/* Mobile Submenu */
.mobile-submenu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 20px;
    margin-bottom: 15px;
    width: 100%;
    align-items: center;
}

.mobile-submenu .nav-link {
    font-size: 14px !important;
    margin: 0 !important;
    text-transform: none !important;
    color: rgba(255, 255, 255, 0.6) !important;
    letter-spacing: 0.5px !important;
}

.mobile-submenu .nav-link:hover {
    color: var(--primary-gold) !important;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--primary-gold);
}

.phone-btn {
    background: linear-gradient(135deg, var(--military-green), #3a4a1c);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: var(--space-md);
    transition: var(--transition-normal);
    border: 1px solid var(--primary-gold);
    box-shadow: 0 0 5px rgba(212, 165, 116, 0.3);
    font-family: var(--font-stats);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phone-btn:hover {
    background: var(--primary-gold);
    color: var(--dark-brown);
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--primary-gold);
}

.phone-btn i {
    font-size: 14px;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(44, 44, 44, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1001;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-overlay .nav-link {
    color: var(--white);
    font-size: 24px;
    margin: var(--space-sm) 0;
    background: none;
    padding: 10px;
}

.mobile-nav-overlay .nav-link:hover {
    color: var(--primary-gold);
    background: none;
    box-shadow: none;
    text-shadow: 0 0 10px var(--primary-gold);
}

.mobile-nav-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--primary-gold);
    font-size: 32px;
    background: none;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.mobile-nav-close:hover {
    transform: rotate(90deg);
    background: var(--primary-gold);
    color: var(--dark-brown);
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
footer {
    background-color: #1a1a1a;
    color: var(--cream);
    padding: var(--space-xl) 0 var(--space-md);
    font-size: 14px;
    border-top: 2px solid var(--primary-gold);
}

footer>.container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    flex: 1;
    min-width: 0;
}

.footer-map {
    width: 300px;
    flex-shrink: 0;
    margin: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-map iframe {
    display: block;
}

.footer-bottom {
    flex-basis: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-md);
    text-align: center;
    color: #888;
    font-size: 13px;
}

.footer-col h4 {
    color: var(--primary-gold);
    font-size: 18px;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

.footer-col p {
    line-height: 1.6;
    margin-bottom: var(--space-md);
    color: #ccc;
}

ul.footer-links li {
    margin-bottom: 12px;
}

ul.footer-links li a {
    color: #ccc;
    font-size: 15px;
    transition: var(--transition-fast);
    display: inline-block;
}

ul.footer-links li a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition-normal);
    border: 1px solid transparent;
}

.social-icon:hover {
    background: var(--primary-gold);
    color: var(--dark-brown);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

/* Footer social links without .social-icon class */
.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.social-icons a:hover {
    background: var(--primary-gold);
    color: var(--dark-brown) !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

.social-icons a:hover svg {
    stroke: var(--dark-brown);
}

/* ── Brand name "JEY FORCE" in paragraph/list text — near black ── */
.service-detailed-info p strong,
.service-detailed-info li strong,
.special-training-section p strong,
.section-text-block p strong,
.section-text-block li strong {
    color: #1a1208 !important;
    font-weight: 800;
}

/* ── All links inside service page content — dark, underlined ── */
.service-detailed-info p a,
.service-detailed-info li a,
.service-detailed-info p strong a,
.service-detailed-info li strong a,
.special-training-section p a,
.special-training-section p strong a,
.section-text-block p a,
.section-text-block li a,
.section-text-block p strong a,
.section-text-block li strong a {
    color: #1a1208 !important;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ══════════════════════════════════════
   PAGE HERO
   ══════════════════════════════════════ */
.page-hero {
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/images/F7EBB754-116A-470F-96A6-F611A85D6387.jpeg');
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: var(--space-xs);
}

/* ══════════════════════════════════════
   SERVICE LONG-FORM
   ══════════════════════════════════════ */
.service-long-section {
    padding: var(--space-xl) 0;
    background-color: var(--white);
    margin-bottom: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.service-long-section.alt-bg {
    background-color: #f9f9f9;
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: var(--deep-charcoal);
}

.content-block h2 {
    font-size: 36px;
    margin-bottom: var(--space-xs);
    color: var(--dark-brown);
}

.sub-heading {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--military-green);
    margin-bottom: var(--space-md);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-block h3 {
    font-size: 24px;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--dark-brown);
    border-left: 4px solid var(--primary-gold);
    padding-left: 15px;
}

.lead-text {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: var(--space-md);
    color: #444;
}

/* Editorial Images */
.editorial-image-container {
    margin: var(--space-lg) 0;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.editorial-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

.caption {
    font-size: 14px;
    color: #666;
    padding: 10px;
    background: #f0f0f0;
    text-align: center;
    font-style: italic;
    margin-bottom: 0;
}

/* Lists */
.detailed-list,
.process-list,
.timeline-list {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.detailed-list li,
.timeline-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.detailed-list li::before {
    content: "\2713";
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.process-list {
    counter-reset: process-counter;
}

.process-list li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.process-list li::before {
    counter-increment: process-counter;
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background: var(--military-green);
    color: var(--white);
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Grid List */
.grid-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    list-style: none;
    margin-bottom: var(--space-lg);
}

.grid-list li {
    background: #fff;
    border: 1px solid var(--light-gray);
    padding: 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.grid-list li strong {
    display: block;
    color: var(--military-green);
    margin-bottom: 5px;
}

/* Divider & Misc */
.section-divider {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
    margin: 0;
}

.alert-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: var(--space-md) 0;
    border-radius: var(--radius-sm);
    font-size: 16px;
    color: #856404;
}

.cta-wrapper {
    text-align: center;
    margin-top: var(--space-lg);
}

/* ══════════════════════════════════════
   CTA BLOCK
   ══════════════════════════════════════ */
.cta-block {
    background-color: var(--deep-charcoal);
    color: var(--cream);
    text-align: center;
    border-radius: var(--radius-lg);
    margin: var(--space-lg);
    padding: var(--space-xxl) var(--space-md);
}

.cta-block h2 {
    color: var(--primary-sand, var(--primary-gold));
    margin-bottom: var(--space-sm);
}

.cta-block p {
    color: var(--cream);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
}

/* ══════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════ */
.text-gold {
    color: var(--primary-gold) !important;
}

.mb-lg {
    margin-bottom: var(--space-lg);
}

.mt-lg {
    margin-top: var(--space-lg);
}

.section-intro {
    max-width: 800px;
    margin: 0 auto var(--space-lg);
}

.section-intro p {
    font-size: 18px;
    line-height: 1.8;
}

/* ══════════════════════════════════════
   BELGIAN MALINOIS PAGE — SPECIFIC STYLES
   (from service-detail.css + belgian-malinois.css)
   ══════════════════════════════════════ */

/* Service Hero Detail */
.service-hero-detail {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../assets/images/compressed/5.avif');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    text-align: center;
    color: var(--white);
}

.service-hero-detail h1 {
    color: var(--white);
    font-size: 48px;
    margin-bottom: var(--space-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.service-hero-detail p {
    color: var(--light-gray);
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-hero-detail p strong {
    color: var(--primary-gold);
}

.service-hero-detail .btn {
    margin-top: var(--space-lg);
}

/* Intro Paragraph */
.intro-paragraph {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2b2420 50%, #1a1a1a 100%);
    padding: 80px 20px;
    overflow: hidden;
}

.intro-paragraph::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(196, 156, 109, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.intro-paragraph .container {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    border-left: 4px solid var(--primary-gold);
    padding-left: 32px;
}

.intro-paragraph p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.intro-paragraph-text {
    font-size: 19px;
    line-height: 1.85;
    color: var(--white);
    margin-bottom: var(--space-md);
    text-align: left;
}

.intro-paragraph a[style] {
    color: var(--primary-gold) !important;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.intro-paragraph a[style]:hover {
    opacity: 0.8;
}

.hero-features-list {
    list-style: none;
    padding: 0;
    margin: var(--space-sm) 0 var(--space-md);
    text-align: left;
}

.hero-features-list li {
    font-size: 17px;
    color: var(--white);
    margin-bottom: 14px;
    padding-left: 36px;
    position: relative;
    line-height: 1.6;
}

.hero-features-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--primary-gold);
    color: var(--rich-black);
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
}

/* Experience Stats Strip */
.experience-stats-strip {
    background-color: #faf9f5;
    padding: 30px 0;
    border-top: 1px solid #f0eee6;
    border-bottom: 1px solid #f0eee6;
}

.stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.stat-icon-val {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #c49c6d;
}

.stat-icon-val i {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
}

.stat-stars {
    display: flex;
    gap: 3px;
}

.stat-stars i {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #c49c6d;
    stroke-width: 1.5;
}

.stat-val {
    font-size: 22px;
    font-weight: 400;
    color: #202124;
    font-family: inherit;
}

.stat-label {
    font-size: 13px;
    color: #202124;
    font-weight: 400;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background-color: #e8e6df;
}

/* Why Choose Info Grid */
.why-choose-info {
    background-color: var(--white);
    padding: var(--space-xxl) 0;
}

.why-choose-info .section-title {
    margin-bottom: var(--space-xl);
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.info-card {
    background-color: #f2fafa;
    padding: var(--space-lg) var(--space-md);
    border-radius: 8px;
    text-align: center;
    border: none;
    box-shadow: none;
    flex: 1 1 calc(25% - 15px);
    min-width: 220px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.info-card i {
    color: var(--dark-brown);
    font-size: 24px;
    margin-bottom: var(--space-sm);
    stroke-width: 1.5px;
}

.info-card h4 {
    display: none;
}

.info-card p {
    font-size: 13px;
    color: var(--deep-charcoal);
    margin: 0;
    line-height: 1.5;
}

/* Service Detailed Info */
.service-detailed-info {
    padding: 80px 0;
    background-color: var(--cream);
    overflow-x: hidden;
}

.service-detailed-info>.container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: stretch;
}

.service-detailed-info>.container::before,
.service-detailed-info>.container::after {
    display: none;
}

.service-detailed-info>.container>*:not(.key-features):not(.benefits-strip) {
    width: 100%;
}

.service-detailed-info>.container>.benefits-strip {
    order: 1;
}

.service-detailed-info>.container>*:nth-child(n+9) {
    order: 2;
}

.service-detailed-info .special-training-section,
.service-detailed-info .special-training-section-right {
    margin-top: 48px !important;
}

/* Content Legacy Wrap */
.content-legacy-wrap {
    background: #faf9f5;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--primary-gold);
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-legacy-wrap:not(:has(.about-float-img)):hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-float-img {
    float: right;
    margin-left: 40px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    height: auto;
}

.content-legacy-wrap:nth-child(even) .about-float-img {
    float: left;
    margin-left: 0;
    margin-right: 40px;
}

.content-legacy-wrap h2 {
    font-size: 28px;
    margin-bottom: var(--space-md);
    color: var(--dark-brown);
    position: relative;
    padding-bottom: 10px;
}

.content-legacy-wrap h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
}

.content-legacy-wrap p {
    font-size: 16px;
    margin-bottom: var(--space-md);
    line-height: 1.8;
    color: var(--deep-charcoal);
}

.content-legacy-wrap ul {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.content-legacy-wrap ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--deep-charcoal);
    margin-bottom: var(--space-xs);
    padding-left: 25px;
    position: relative;
    text-align: left;
}

.content-legacy-wrap ul li::before {
    content: "\1F43E";
    position: absolute;
    left: 0;
    font-size: 14px;
}

.content-legacy-wrap a {
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.content-legacy-wrap a:hover {
    color: var(--dark-brown) !important;
}

/* Card Variations for text-only blocks */
.content-legacy-wrap:not(:has(.about-float-img)):nth-of-type(4n+1) {
    background: #f4f6f3;
    border-top: 4px solid var(--sage-green, #6f8072);
}

.content-legacy-wrap:not(:has(.about-float-img)):nth-of-type(4n+2) {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-top: 4px solid var(--deep-charcoal, #222);
}

.content-legacy-wrap:not(:has(.about-float-img)):nth-of-type(4n+3) {
    background: var(--military-green, #3f4e24);
    color: var(--white);
    border-top: none;
    border-left: 5px solid var(--primary-gold);
    border-radius: 6px 12px 12px 6px;
}

.content-legacy-wrap:not(:has(.about-float-img)):nth-of-type(4n+3) h2 {
    color: var(--primary-gold);
}

.content-legacy-wrap:not(:has(.about-float-img)):nth-of-type(4n+3) h2::after {
    background-color: var(--white);
}

.content-legacy-wrap:not(:has(.about-float-img)):nth-of-type(4n+3) p,
.content-legacy-wrap:not(:has(.about-float-img)):nth-of-type(4n+3) ul li {
    color: #f0f0f0;
}

.content-legacy-wrap:not(:has(.about-float-img)):nth-of-type(4n+4) {
    background: #fffcf8;
    border-top: 4px solid var(--primary-gold);
}

/* Key Features */
.key-features {
    background: linear-gradient(160deg, #344418 0%, #4a5d23 40%, #3a4a1c 100%);
    color: var(--white);
    padding: 88px 0;
    position: relative;
    flex: none;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
}

.key-features .section-title {
    color: var(--white);
}

.key-features .section-title::after {
    background-color: var(--primary-gold);
}

.features-grid-3x2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    text-align: center;
}

.feature-item {
    padding: var(--space-md);
}

.feature-item-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-sm);
    color: var(--primary-gold);
}

.feature-item h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: var(--space-xs);
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

/* Benefits Strip */
.benefits-strip {
    background: linear-gradient(135deg, #1a1a1a 0%, #2b2420 50%, #1a1a1a 100%);
    color: var(--white);
    padding: 50px 0;
    flex: none;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.benefits-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 150px;
    padding: 16px 12px;
    border-right: 1px solid rgba(196, 156, 109, 0.2);
    transition: transform 0.2s ease;
}

.benefit-item:last-child {
    border-right: none;
}

.benefit-item:hover {
    transform: translateY(-3px);
}

.benefit-item i {
    font-size: 28px;
    margin-bottom: 14px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c8922a, #d4a84b);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 3px 12px rgba(200, 146, 42, 0.3);
}

.benefit-item span {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
}

/* Special Training Section — CSS Grid */
.special-training-section {
    padding: 50px 40px 40px;
    display: grid;
    grid-template-columns: 45% 55%;
    column-gap: 50px;
    row-gap: 8px;
    align-items: center;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    transform: none !important;
}

.special-training-section>img {
    order: 4;
    grid-column: 1;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    float: none;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    height: 420px;
    display: block;
    border: 3px solid rgba(196, 156, 109, 0.3);
}

.special-training-section>h2,
.special-training-section>h3 {
    order: 1;
    grid-column: 1 / -1;
    text-align: center;
    font-size: clamp(26px, 4vw, 36px);
    color: #2b2420;
    font-weight: 800;
    margin-bottom: 8px;
    padding-bottom: 0;
}

.special-training-section>h2::after,
.special-training-section>h3::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
    margin: 12px auto 0;
    border-radius: 2px;
}

.special-training-section>p:nth-child(3) {
    order: 2;
    grid-column: 1 / -1;
    text-align: center;
    font-size: 16px;
    color: #444;
    line-height: 1.75;
    margin-bottom: 4px;
}

.special-training-section>p:nth-child(4) {
    order: 3;
    grid-column: 1 / -1;
    text-align: center;
    font-size: 16px;
    color: #444;
    line-height: 1.75;
    margin-bottom: 32px;
}

.special-training-section>ul {
    order: 5;
    grid-column: 2;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.special-training-section>ul>li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    padding-left: 0;
    position: static;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-size: 16px;
    color: #2b2420;
    font-weight: 700;
    line-height: 1.5;
}

.special-training-section>ul>li:hover {
    transform: translateX(4px);
    box-shadow: 0 2px 12px rgba(196, 156, 109, 0.15);
}

.special-training-section>ul>li::before {
    content: '\2713';
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c8922a, #d4a84b);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: bold;
    margin-left: 14px;
    box-shadow: 0 2px 8px rgba(200, 146, 42, 0.3);
}

.special-training-section>ul>li>strong {
    font-size: 16px;
    color: #2b2420;
    font-weight: 700;
    line-height: 1.5;
}

.special-training-section>p:last-child {
    order: 6;
    grid-column: 1 / -1;
    text-align: center;
    font-size: 15px;
    color: #2b2420;
    margin-top: 24px;
    font-style: italic;
    padding: 16px 24px;
    background: rgba(196, 156, 109, 0.1);
    border-left: 4px solid var(--primary-gold);
    border-radius: 0 8px 8px 0;
}

.special-training-section a[style],
.special-training-section-right a[style] {
    color: var(--primary-gold) !important;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.special-training-section a[style]:hover,
.special-training-section-right a[style]:hover {
    opacity: 0.8;
}

/* Special Training Section Right */
.special-training-section-right {
    padding: 50px 40px 40px;
    display: grid;
    grid-template-columns: 55% 45%;
    grid-auto-flow: dense;
    column-gap: 50px;
    row-gap: 8px;
    align-items: center;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    border-left: none;
    transform: none !important;
}

.special-training-section-right::after {
    display: none;
}

.special-training-section-right::before {
    display: none;
}

.special-training-section-right>.about-float-img {
    order: 4;
    grid-column: 2;
    float: none;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 3px solid rgba(196, 156, 109, 0.3);
}

img[alt="Belgian Malinois Family Dog"] {
    object-position: center top;
}

img[alt="JEY FORCE DOG TRAINING CENTRE"] {
    object-position: center top;
}

.special-training-section-right>h2,
.special-training-section-right>h3 {
    order: 1;
    grid-column: 1 / -1;
    text-align: center;
    font-size: clamp(26px, 4vw, 36px);
    color: #2b2420;
    font-weight: 800;
    margin-bottom: 8px;
    padding-bottom: 0;
}

.special-training-section-right>h2::after,
.special-training-section-right>h3::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
    margin: 12px auto 0;
    border-radius: 2px;
}

.special-training-section-right>p:nth-child(3) {
    order: 2;
    grid-column: 1 / -1;
    text-align: center;
    font-size: 16px;
    color: #444;
    line-height: 1.75;
    margin-bottom: 4px;
}

.special-training-section-right>p:nth-child(4) {
    order: 3;
    grid-column: 1 / -1;
    text-align: center;
    font-size: 16px;
    color: #444;
    line-height: 1.75;
    margin-bottom: 32px;
}

.special-training-section-right>ul {
    order: 5;
    grid-column: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.special-training-section-right>ul>li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    padding-left: 0;
    position: static;
    font-size: 16px;
    color: #2b2420;
    font-weight: 700;
    line-height: 1.5;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.special-training-section-right>ul>li:hover {
    transform: translateX(4px);
    box-shadow: 0 2px 12px rgba(196, 156, 109, 0.15);
}

.special-training-section-right>ul>li::before {
    content: '\2713';
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c8922a, #d4a84b);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: bold;
    margin-left: 14px;
    box-shadow: 0 2px 8px rgba(200, 146, 42, 0.3);
    position: static;
    left: auto;
}

.special-training-section-right>p:last-child {
    order: 6;
    grid-column: 1 / -1;
    text-align: center;
    font-size: 15px;
    color: #2b2420;
    margin-top: 24px;
    font-style: italic;
    padding: 16px 24px;
    background: rgba(196, 156, 109, 0.1);
    border-left: 4px solid var(--primary-gold);
    border-radius: 0 8px 8px 0;
}

/* Utility Backgrounds */
.bg-full-white {
    position: relative;
    z-index: 1;
    padding: 40px 0;
    margin: 60px 0 30px !important;
}

.bg-full-white::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -5000px;
    right: -5000px;
    background-color: #ffffff;
    z-index: -1;
}

/* Industries We Protect Grid */
.industries-protected-section {
    padding: 88px 0;
    margin: 80px 0;
    color: var(--white);
    position: relative;
    z-index: 1;
    overflow: visible;
}

.industries-protected-section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -5000px;
    right: -5000px;
    background: linear-gradient(160deg, #344418 0%, #4a5d23 40%, #3a4a1c 100%);
    z-index: -1;
}

.industries-protected-section .section-title {
    color: var(--white);
}

.industries-protected-section p.text-center {
    color: rgba(255, 255, 255, 0.9) !important;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.industry-card {
    background: #faf8f5;
    border: 1px solid rgba(196, 156, 109, 0.2);
    border-top: 3px solid var(--primary-gold);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-gold);
    background: #fff;
}

.industry-icon {
    width: 52px;
    height: 52px;
    color: #fff;
    background: linear-gradient(135deg, #c8922a, #d4a84b);
    padding: 13px;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(200, 146, 42, 0.3);
}

.industry-card h3 {
    font-size: 18px;
    color: #2b2420;
    font-weight: 700;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

/* Google Reviews — Trust Layout */
.google-reviews.new-trust-layout {
    padding: var(--space-xxl) 0;
    font-family: 'Open Sans', Arial, sans-serif;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.google-reviews.new-trust-layout::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -5000px;
    right: -5000px;
    background-color: #ffffff;
    z-index: -1;
}

.trust-heading-group {
    text-align: center;
    margin-bottom: 50px;
}

.trust-title {
    font-family: var(--font-heading);
    color: #1a365d;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}

.trust-subtitle {
    font-family: var(--font-heading);
    color: #000000;
    font-size: 20px;
    font-weight: 700;
}

.reviews-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1100px;
    margin: 0 auto 40px auto;
    padding: 0 10px;
    border-bottom: none;
}

.reviews-summary-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.google-logo-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.g-logo-text {
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 700;
    font-size: 26px;
    letter-spacing: -0.5px;
}

.rating-text-label {
    color: #3c4043;
    font-size: 20px;
    font-weight: 600;
    padding-top: 2px;
}

.rating-stars-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reviews-rating-number {
    font-size: 22px;
    font-weight: 800;
    color: #000000;
    line-height: 1;
}

.reviews-stars {
    display: flex;
    gap: 2px;
    color: #fbbc04;
}

.reviews-count {
    font-size: 13px;
    color: #70757a;
    font-weight: 400;
    margin-left: 4px;
}

.write-review-btn {
    background-color: #4285F4;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s;
}

.write-review-btn:hover {
    background-color: #3367d6;
    color: #ffffff;
}

.reviews-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.review-card {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    flex: 1;
    min-width: 300px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.review-card-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.reviewer-avatar.initial-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3367d6;
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.reviewer-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.reviewer-info h4 {
    margin: 0 0 4px 0;
    font-size: 15px;
    font-weight: 700;
    color: #000000;
    font-family: inherit;
}

.reviewer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.small-stars svg {
    width: 14px;
    height: 14px;
}

.review-date {
    font-size: 12px;
    color: #70757a;
}

.review-content {
    margin-top: 0;
    font-size: 14px;
    font-style: normal;
    color: #202124;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 15px;
}

.read-more {
    color: #70757a;
    font-size: 14px;
    cursor: pointer;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.posted-on {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.posted-on span {
    font-size: 11px;
    color: #70757a;
}

.posted-on strong {
    font-size: 13px;
    color: #4285F4;
    font-weight: 500;
}

/* Lead Form */
.lead-form-section {
    background-color: var(--white);
    padding: var(--space-xxl) 0;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--cream);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-top: 5px solid var(--primary-gold);
}

/* Forms */
.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    color: var(--dark-brown);
    font-family: var(--font-heading);
}

.form-control {
    width: 100%;
    height: 50px;
    padding: 0 20px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-family: var(--font-body);
    transition: var(--transition-fast);
    background-color: var(--white);
    font-size: 16px;
}

textarea.form-control {
    height: 120px;
    padding-top: 15px;
    resize: vertical;
    min-height: 80px;
}

.form-control:focus {
    border-color: var(--primary-gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
}

/* FAQs */
.faq-section {
    background-color: var(--cream);
    padding: var(--space-xxl) 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: var(--space-sm);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--primary-gold);
}

.faq-question {
    padding: var(--space-md);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark-brown);
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}

.faq-answer {
    padding: 0 var(--space-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    color: var(--deep-charcoal);
}

.faq-item.active .faq-answer {
    padding: 0 var(--space-md) var(--space-md);
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* ══════════════════════════════════════
   FLOATING ACTION BUTTONS
   ══════════════════════════════════════ */
.floating-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 24px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-whatsapp {
    background-color: #25D366;
}

.float-call {
    background-color: var(--alert-orange);
}

/* ══════════════════════════════════════
   RESPONSIVE — 1024px
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
    :root {
        --max-width: 960px;
    }

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 32px;
    }

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

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-block h2 {
        font-size: 30px;
    }

    .special-training-section {
        grid-template-columns: 42% 58%;
        column-gap: 30px;
        padding: 40px 20px 30px;
    }

    .special-training-section-right {
        grid-template-columns: 58% 42%;
        column-gap: 30px;
        padding: 40px 20px 30px;
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ══════════════════════════════════════
   RESPONSIVE — 768px
   ══════════════════════════════════════ */
@media (max-width: 768px) {
    :root {
        --max-width: 100%;
    }

    /* Typography */
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    .section-title {
        margin-bottom: var(--space-md);
        font-size: 24px;
    }

    /* Navigation */
    header {
        width: 95%;
        top: 10px;
        height: 60px;
        padding: 0 5px;
        border-radius: 30px;
    }

    .nav-links,
    .phone-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Grid Layouts */
    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    /* Footer */
    footer>.container {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

    .footer-content>div:first-child {
        grid-column: 1 / -1;
    }

    .footer-map {
        width: 150px;
        height: 150px;
        margin: var(--space-md) 0 0;
        flex-shrink: 0;
    }

    .footer-map iframe {
        height: 100%;
    }

    .footer-bottom {
        font-size: 12px;
    }

    /* Page Hero */
    .page-hero {
        min-height: 35vh;
        height: auto;
        padding: 80px 20px 40px;
    }

    .page-hero-content {
        padding: 0 10px;
    }

    .page-hero-content h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .page-hero-content p {
        font-size: 15px;
    }

    /* Content Blocks */
    .content-block {
        font-size: 16px;
        padding: 0 var(--space-sm);
    }

    .content-block h2 {
        font-size: 24px;
    }

    .content-block h3 {
        font-size: 20px;
    }

    .sub-heading {
        font-size: 16px;
    }

    .lead-text {
        font-size: 17px;
    }

    /* Service Long Section */
    .service-long-section {
        padding: var(--space-lg) 0;
        margin-bottom: var(--space-lg);
        border-radius: var(--radius-md);
    }

    /* Buttons */
    .btn {
        padding: 14px 28px;
        font-size: 14px;
        min-height: 48px;
    }

    .flex-center {
        flex-direction: column;
        gap: var(--space-sm) !important;
        width: 100%;
    }

    .flex-center .btn {
        width: 100%;
        max-width: 320px;
    }

    /* CTA Block */
    .cta-block {
        margin: var(--space-md);
        padding: var(--space-xl) var(--space-sm);
        border-radius: var(--radius-md);
    }

    .cta-block h2 {
        font-size: 24px;
    }

    .cta-block p {
        font-size: 15px;
    }

    /* Features Grid */
    .features-grid-3x2 {
        grid-template-columns: 1fr;
    }

    /* Stats */
    .stats-row {
        flex-direction: column;
        gap: 25px;
        padding: 10px 0;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .section-intro p {
        font-size: 16px;
    }
}

/* ══════════════════════════════════════
   RESPONSIVE — 900px (Belgian Malinois specific)
   ══════════════════════════════════════ */
@media (max-width: 900px) {
    .content-legacy-wrap {
        margin-bottom: 20px !important;
    }

    .about-float-img,
    .content-legacy-wrap:nth-child(even) .about-float-img {
        float: none;
        margin: 0 auto 30px auto;
        display: block;
        max-width: 100%;
        width: 100%;
    }

    .content-legacy-wrap {
        padding: 20px;
    }

    .special-training-section {
        grid-template-columns: 1fr;
        padding: 24px 16px 30px;
    }

    .special-training-section>img,
    .special-training-section>ul,
    .special-training-section>p {
        grid-column: 1;
    }

    .special-training-section>img {
        aspect-ratio: 16 / 10;
        max-width: 100%;
        height: auto;
    }

    .special-training-section>h2,
    .special-training-section>h3 {
        font-size: 24px;
    }

    .special-training-section>ul>li {
        padding: 12px 14px;
    }

    .special-training-section>ul>li::before {
        margin-left: 0;
    }

    .special-training-section>p:last-child {
        padding: 12px 16px;
    }

    .special-training-section-right {
        grid-template-columns: 1fr;
        padding: 24px 16px 30px;
    }

    .special-training-section-right>.about-float-img,
    .special-training-section-right>ul,
    .special-training-section-right>p {
        grid-column: 1;
    }

    .special-training-section-right>h2,
    .special-training-section-right>h3 {
        font-size: 24px;
    }

    .special-training-section-right>ul>li {
        padding: 12px 14px;
    }

    .special-training-section-right>ul>li::before {
        margin-left: 0;
    }

    .special-training-section-right>p:last-child {
        padding: 12px 16px;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop grid for content-legacy-wrap */
@media (min-width: 992px) {
    .content-legacy-wrap:has(.about-float-img) {
        width: 100%;
        margin-bottom: 20px !important;
    }

    .content-legacy-wrap:not(:has(.about-float-img)) {
        width: calc(50% - 15px);
    }

    .intro-paragraph {
        padding: 50px 16px;
    }

    .intro-paragraph .container {
        padding-left: 20px;
    }

    .intro-paragraph-text {
        font-size: 16px;
    }

    .hero-features-list li {
        font-size: 15px;
        padding-left: 32px;
    }
}

/* ══════════════════════════════════════
   RESPONSIVE — 600px (Industries)
   ══════════════════════════════════════ */
@media (max-width: 600px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════
   RESPONSIVE — 480px
   ══════════════════════════════════════ */
@media (max-width: 480px) {
    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 18px;
    }

    .container {
        padding: 0 16px;
    }

    /* Page Hero */
    .page-hero {
        min-height: 30vh;
        padding: 70px 16px 30px;
    }

    .page-hero-content h1 {
        font-size: 22px;
    }

    /* Content */
    .content-block {
        font-size: 15px;
    }

    .content-block h2 {
        font-size: 22px;
    }

    .content-block h3 {
        font-size: 18px;
    }

    /* CTA */
    .cta-block {
        margin: var(--space-sm);
        padding: var(--space-lg) var(--space-sm);
    }

    .cta-block h2 {
        font-size: 22px;
    }

    /* Service Long Section */
    .service-long-section {
        padding: var(--space-md) 0;
        margin-bottom: var(--space-md);
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer-map {
        width: 120px;
        height: 120px;
    }

    footer {
        padding: var(--space-lg) 0 var(--space-md);
    }

    /* Floating Buttons */
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .floating-actions {
        bottom: 15px;
        right: 15px;
    }
}
