/* ==========================================================================
   ALLO INFORMATIQUE 06 - Main Stylesheet
   Premium WordPress Theme for IT Expert / Cybersecurity - Nice, France
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. GOOGLE FONTS IMPORT
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* --------------------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES
   -------------------------------------------------------------------------- */
:root {
    /* Brand Colors */
    --color-navy: #1B1464;
    --color-cyan: #00BCD4;
    --color-white: #FFFFFF;
    --color-light-bg: #F8F9FA;
    --color-dark: #0D0A3E;
    --color-gray-text: #666666;

    /* Derived Colors */
    --color-cyan-dark: #0097A7;
    --color-cyan-light: #B2EBF2;
    --color-navy-light: #2A1F8E;
    --color-border: #E0E0E0;
    --color-border-light: #EEEEEE;

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 5rem;

    /* Layout */
    --container-max: 1200px;
    --container-padding: 1.5rem;

    /* Borders */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
    --shadow-cyan: 0 4px 20px rgba(0, 188, 212, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

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

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-gray-text);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-navy);
    margin-bottom: 0.5em;
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p {
    margin-bottom: 1em;
}

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

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

a:hover {
    color: var(--color-cyan-dark);
}

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

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

::selection {
    background-color: var(--color-cyan);
    color: var(--color-white);
}

/* --------------------------------------------------------------------------
   3. CONTAINER
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.container--narrow {
    max-width: 900px;
}

.container--wide {
    max-width: 1400px;
}

/* --------------------------------------------------------------------------
   4. TOP BAR
   -------------------------------------------------------------------------- */
.top-bar {
    background-color: var(--color-navy);
    color: var(--color-white);
    font-size: var(--text-sm);
    padding: 0.5rem 0;
    display: none;
}

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

.top-bar__left,
.top-bar__right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition-fast);
}

.top-bar__item:hover {
    color: var(--color-cyan);
}

.top-bar__item i,
.top-bar__item svg {
    font-size: var(--text-xs);
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.top-bar__social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.top-bar__social a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
}

.top-bar__social a:hover {
    color: var(--color-cyan);
}

/* --------------------------------------------------------------------------
   5. SITE HEADER
   -------------------------------------------------------------------------- */
.site-header {
    background-color: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition-base), background-color var(--transition-base);
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    min-height: 70px;
}

/* Logo */
.site-header__logo {
    flex-shrink: 0;
}

.site-header__logo img {
    max-height: 50px;
    width: auto;
}

.site-header__logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--text-xl);
    color: var(--color-navy);
    line-height: 1.2;
}

.site-header__logo-text span {
    color: var(--color-cyan);
}

/* Navigation */
.site-nav {
    display: none;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.site-nav__item {
    position: relative;
}

.site-nav__link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: var(--text-sm);
    color: var(--color-navy);
    text-transform: none;
    letter-spacing: 0.01em;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-fast);
}

.site-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-cyan);
    transition: width var(--transition-base);
}

.site-nav__link:hover,
.site-nav__link.active {
    color: var(--color-cyan);
}

.site-nav__link:hover::after,
.site-nav__link.active::after {
    width: 100%;
}

/* Dropdown */
.site-nav__item--has-dropdown {
    position: relative;
}

.site-nav__dropdown {
    position: absolute;
    top: 100%;
    left: -1rem;
    min-width: 220px;
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    z-index: 100;
}

.site-nav__item--has-dropdown:hover .site-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-nav__dropdown-link {
    display: block;
    padding: 0.5rem 1.25rem;
    font-size: var(--text-sm);
    color: var(--color-gray-text);
    transition: all var(--transition-fast);
}

.site-nav__dropdown-link:hover {
    color: var(--color-cyan);
    background-color: var(--color-light-bg);
    padding-left: 1.5rem;
}

/* Header Actions */
.site-header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-header__cta {
    display: none;
    padding: 0.6rem 1.5rem;
    background-color: var(--color-cyan);
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: var(--text-sm);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.site-header__cta:hover {
    background-color: var(--color-cyan-dark);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-cyan);
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 1100;
    position: relative;
}

.hamburger__line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-navy);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.hamburger__line + .hamburger__line {
    margin-top: 6px;
}

.hamburger.active .hamburger__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger__line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .hamburger__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   6. MOBILE MENU
   -------------------------------------------------------------------------- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: var(--color-navy);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

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

.mobile-menu__link {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--color-white);
    padding: 0.75rem 0;
    opacity: 0;
    transform: translateX(30px);
    transition: all var(--transition-base);
}

.mobile-menu.open .mobile-menu__link {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.open .mobile-menu__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu__link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu__link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-menu__link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-menu__link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.open .mobile-menu__link:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.open .mobile-menu__link:nth-child(7) { transition-delay: 0.4s; }

.mobile-menu__link:hover {
    color: var(--color-cyan);
}

.mobile-menu__cta {
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

.mobile-menu.open .mobile-menu__cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.45s;
}

.mobile-menu__contact {
    margin-top: 2.5rem;
    text-align: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.mobile-menu.open .mobile-menu__contact {
    opacity: 1;
    transition-delay: 0.5s;
}

.mobile-menu__contact a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    padding: 0.25rem 0;
}

.mobile-menu__contact a:hover {
    color: var(--color-cyan);
}

/* --------------------------------------------------------------------------
   7. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: var(--text-sm);
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

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

.btn:active {
    transform: translateY(0);
}

/* Primary - Cyan */
.btn--primary {
    background-color: var(--color-cyan);
    color: var(--color-white);
    border-color: var(--color-cyan);
}

.btn--primary:hover {
    background-color: var(--color-cyan-dark);
    border-color: var(--color-cyan-dark);
    color: var(--color-white);
    box-shadow: var(--shadow-cyan);
}

/* Outline */
.btn--outline {
    background-color: transparent;
    color: var(--color-cyan);
    border-color: var(--color-cyan);
}

.btn--outline:hover {
    background-color: var(--color-cyan);
    color: var(--color-white);
    box-shadow: var(--shadow-cyan);
}

/* Outline White (for dark bg) */
.btn--outline-white {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

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

/* Secondary - Navy */
.btn--secondary {
    background-color: var(--color-navy);
    color: var(--color-white);
    border-color: var(--color-navy);
}

.btn--secondary:hover {
    background-color: var(--color-navy-light);
    border-color: var(--color-navy-light);
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(27, 20, 100, 0.3);
}

/* White */
.btn--white {
    background-color: var(--color-white);
    color: var(--color-navy);
    border-color: var(--color-white);
}

.btn--white:hover {
    background-color: var(--color-light-bg);
    border-color: var(--color-light-bg);
    color: var(--color-navy);
}

/* Sizes */
.btn--lg {
    padding: 1rem 2.5rem;
    font-size: var(--text-base);
}

.btn--sm {
    padding: 0.5rem 1.25rem;
    font-size: var(--text-xs);
}

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

/* Button with icon */
.btn i,
.btn svg {
    font-size: 1.1em;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   8. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-navy) 50%, var(--color-navy-light) 100%);
    overflow: hidden;
    padding: 6rem 0 4rem;
}

/* Geometric pattern overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(0, 188, 212, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 188, 212, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(0, 188, 212, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

/* Grid pattern */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero__tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-cyan);
    background-color: rgba(0, 188, 212, 0.1);
    border: 1px solid rgba(0, 188, 212, 0.2);
    padding: 0.4rem 1.25rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero__title span {
    color: var(--color-cyan);
}

.hero__subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero__trust {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
}

.hero__trust-item i,
.hero__trust-item svg {
    color: var(--color-cyan);
}

/* Floating shapes */
.hero__shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    pointer-events: none;
}

.hero__shape--1 {
    width: 300px;
    height: 300px;
    background: var(--color-cyan);
    top: -100px;
    right: -100px;
    animation: floatShape 8s ease-in-out infinite;
}

.hero__shape--2 {
    width: 200px;
    height: 200px;
    background: var(--color-cyan);
    bottom: -50px;
    left: -50px;
    animation: floatShape 10s ease-in-out infinite reverse;
}

.hero__shape--3 {
    width: 100px;
    height: 100px;
    background: var(--color-cyan);
    top: 40%;
    right: 10%;
    animation: floatShape 6s ease-in-out infinite;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(15px, -20px); }
    66% { transform: translate(-10px, 15px); }
}

/* --------------------------------------------------------------------------
   9. SECTIONS
   -------------------------------------------------------------------------- */
.section {
    padding: 5rem 0;
    position: relative;
}

.section--gray {
    background-color: var(--color-light-bg);
}

.section--navy {
    background-color: var(--color-navy);
    color: var(--color-white);
}

.section--navy h2,
.section--navy h3,
.section--navy h4 {
    color: var(--color-white);
}

.section--navy p {
    color: rgba(255, 255, 255, 0.75);
}

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

.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--color-white);
}

/* --------------------------------------------------------------------------
   10. SECTION HEADERS
   -------------------------------------------------------------------------- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem;
}

.section-header--left {
    text-align: left;
    margin-left: 0;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-cyan);
    margin-bottom: 0.75rem;
}

.section-tag::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background-color: var(--color-cyan);
    vertical-align: middle;
    margin-right: 0.75rem;
}

.section-tag::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background-color: var(--color-cyan);
    vertical-align: middle;
    margin-left: 0.75rem;
}

.section-header--left .section-tag::after {
    display: none;
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.section--navy .section-title,
.section--dark .section-title {
    color: var(--color-white);
}

.section-subtitle {
    font-size: var(--text-base);
    color: var(--color-gray-text);
    line-height: 1.7;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.section-header--left .section-subtitle {
    margin-left: 0;
}

.section--navy .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* --------------------------------------------------------------------------
   11. SERVICE CARDS
   -------------------------------------------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-navy));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(0, 188, 212, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all var(--transition-base);
}

.service-card__icon i,
.service-card__icon svg {
    font-size: 1.75rem;
    color: var(--color-cyan);
    width: 28px;
    height: 28px;
}

.service-card__icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.service-card:hover .service-card__icon {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-cyan-dark));
}

.service-card:hover .service-card__icon i,
.service-card:hover .service-card__icon svg {
    color: var(--color-white);
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.service-card__description {
    font-size: var(--text-sm);
    color: var(--color-gray-text);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-cyan);
    transition: gap var(--transition-fast);
}

.service-card__link:hover {
    gap: 0.6rem;
    color: var(--color-cyan-dark);
}

/* --------------------------------------------------------------------------
   12. ABOUT SECTION
   -------------------------------------------------------------------------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about__image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.about__image-frame {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-navy), var(--color-cyan));
    background-size: 200% 200%;
    animation: gradientBorder 4s ease infinite;
    position: relative;
}

@keyframes gradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.about__image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.about__badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 0.75rem 1rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.about__badge-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-cyan-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: var(--text-sm);
}

.about__badge-text {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-navy);
    line-height: 1.3;
}

.about__content {
    text-align: center;
}

.about__text {
    margin-bottom: 1.5rem;
}

.about__certifications {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.about__cert {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    background-color: var(--color-light-bg);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-navy);
    border: 1px solid var(--color-border-light);
}

.about__cert i,
.about__cert svg {
    color: var(--color-cyan);
    font-size: var(--text-xs);
}

/* --------------------------------------------------------------------------
   13. TESTIMONIALS
   -------------------------------------------------------------------------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.testimonial-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    position: relative;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.testimonial-card__quote-icon {
    font-size: 2.5rem;
    color: rgba(0, 188, 212, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.testimonial-card__quote-icon::before {
    content: '\201C';
}

.testimonial-card__stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.testimonial-card__star {
    color: #FFB400;
    font-size: var(--text-sm);
}

.testimonial-card__star--empty {
    color: var(--color-border);
}

.testimonial-card__text {
    font-size: var(--text-sm);
    line-height: 1.8;
    color: var(--color-gray-text);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-card__avatar--placeholder {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-navy));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 600;
    font-size: var(--text-sm);
}

.testimonial-card__name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--color-navy);
    line-height: 1.3;
}

.testimonial-card__role {
    font-size: var(--text-xs);
    color: var(--color-gray-text);
}

/* --------------------------------------------------------------------------
   14. STATS BAR
   -------------------------------------------------------------------------- */
.stats-bar {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-dark) 100%);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 50%, rgba(0, 188, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(0, 188, 212, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.stats-bar .container {
    position: relative;
    z-index: 1;
}

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

.stat-item {
    padding: 1rem;
}

.stat-item__number {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--color-cyan);
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.stat-item__label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.stat-item__divider {
    display: none;
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    align-self: center;
}

/* --------------------------------------------------------------------------
   15. CTA SECTION
   -------------------------------------------------------------------------- */
.cta-section {
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-cyan-dark) 50%, #007C91 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section__title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-section__text {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section__buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* --------------------------------------------------------------------------
   16. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
    background-color: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.footer-col__title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1.25rem;
    position: relative;
}

.footer-col__title::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--color-cyan);
    margin-top: 0.5rem;
}

/* Footer Logo - invert black logo to white on dark bg */
.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    margin-bottom: 1rem;
    display: block;
}

/* Footer certification badges */
.footer-certifs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-certifs__badge {
    height: 38px;
    max-height: 38px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

/* Footer description text */
.footer-desc {
    font-size: var(--text-sm);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

/* Footer About (legacy) */
.footer-about__logo {
    margin-bottom: 1rem;
}

.footer-about__logo img {
    max-height: 40px;
}

.footer-about__logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-white);
}

.footer-about__logo-text span {
    color: var(--color-cyan);
}

.footer-about__text {
    font-size: var(--text-sm);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social__link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
}

.footer-social__link:hover {
    background-color: var(--color-cyan);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links__item {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links__item::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 1px;
    background-color: var(--color-cyan);
    transition: width var(--transition-fast);
}

.footer-links__item:hover {
    color: var(--color-cyan);
    padding-left: 0.25rem;
}

.footer-links__item:hover::before {
    width: 12px;
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact__icon {
    color: var(--color-cyan);
    flex-shrink: 0;
    width: 16px;
    margin-top: 0.15rem;
}

.footer-contact__item a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.footer-contact__item a:hover {
    color: var(--color-cyan);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0;
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.footer-bottom__copyright {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom__links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom__links a {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.4);
    transition: color var(--transition-fast);
}

.footer-bottom__links a:hover {
    color: var(--color-cyan);
}

/* --------------------------------------------------------------------------
   17. FLOATING CALL BUTTON
   -------------------------------------------------------------------------- */
.floating-call {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-cyan-dark));
    color: var(--color-white);
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 188, 212, 0.4);
    cursor: pointer;
    text-decoration: none;
    animation: pulse 2s infinite;
    transition: transform var(--transition-fast);
}

.floating-call:hover {
    color: var(--color-white);
    transform: scale(1.1);
    animation: none;
}

.floating-call i,
.floating-call svg {
    width: 24px;
    height: 24px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 188, 212, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 188, 212, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 188, 212, 0);
    }
}

/* Show only on mobile */
.floating-call {
    display: none;
}

/* --------------------------------------------------------------------------
   18. ANIMATIONS
   -------------------------------------------------------------------------- */

/* Fade In Up */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Left */
.slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide Right */
.slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale In */
.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children animations */
.stagger-children .fade-in:nth-child(1) { transition-delay: 0.05s; }
.stagger-children .fade-in:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .fade-in:nth-child(3) { transition-delay: 0.15s; }
.stagger-children .fade-in:nth-child(4) { transition-delay: 0.2s; }
.stagger-children .fade-in:nth-child(5) { transition-delay: 0.25s; }
.stagger-children .fade-in:nth-child(6) { transition-delay: 0.3s; }
.stagger-children .fade-in:nth-child(7) { transition-delay: 0.35s; }
.stagger-children .fade-in:nth-child(8) { transition-delay: 0.4s; }

/* General animate class (alias) */
.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .fade-in,
    .slide-left,
    .slide-right,
    .scale-in,
    .animate {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .floating-call {
        animation: none;
    }

    .about__image-frame {
        animation: none;
    }

    .hero__shape {
        animation: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* --------------------------------------------------------------------------
   19. PAGE TEMPLATES
   -------------------------------------------------------------------------- */

/* Page Hero - Inner pages */
.page-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-navy) 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0 3rem;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero__title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.page-hero__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
}

.page-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.page-hero__breadcrumb a:hover {
    color: var(--color-cyan);
}

.page-hero__breadcrumb-separator {
    color: rgba(255, 255, 255, 0.3);
}

.page-hero__breadcrumb-current {
    color: var(--color-cyan);
}

/* Content Section */
.content-section {
    padding: 4rem 0;
}

.content-section__body {
    max-width: 800px;
    margin: 0 auto;
}

.content-section__body h2 {
    font-size: var(--text-2xl);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.content-section__body h3 {
    font-size: var(--text-xl);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.content-section__body p {
    margin-bottom: 1.25rem;
    font-size: var(--text-base);
    line-height: 1.8;
}

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

.content-section__body ul {
    list-style: disc;
}

.content-section__body ol {
    list-style: decimal;
}

.content-section__body li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.content-section__body blockquote {
    border-left: 3px solid var(--color-cyan);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background-color: var(--color-light-bg);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--color-navy);
}

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

.content-section__body a {
    color: var(--color-cyan);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.content-section__body a:hover {
    color: var(--color-cyan-dark);
}

/* Service Detail */
.service-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4rem 0;
}

.service-detail__main {
    min-width: 0;
}

.service-detail__sidebar {
    order: -1;
}

.sidebar-widget {
    background-color: var(--color-light-bg);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-widget__title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-cyan);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sidebar-nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0.75rem;
    font-size: var(--text-sm);
    color: var(--color-gray-text);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.sidebar-nav__link:hover,
.sidebar-nav__link.active {
    color: var(--color-cyan);
    background-color: rgba(0, 188, 212, 0.05);
    padding-left: 1rem;
}

.sidebar-nav__link.active {
    font-weight: 600;
    color: var(--color-navy);
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--color-navy), var(--color-dark));
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    color: var(--color-white);
}

.sidebar-cta__title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.sidebar-cta__text {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.25rem;
}

/* --------------------------------------------------------------------------
   20. BLOG
   -------------------------------------------------------------------------- */

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.post-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

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

.post-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.post-card__category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--color-cyan);
    color: var(--color-white);
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
    z-index: 2;
}

.post-card__body {
    padding: 1.5rem;
}

.post-card__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: var(--text-xs);
    color: var(--color-gray-text);
}

.post-card__meta-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.post-card__meta-item i,
.post-card__meta-item svg {
    color: var(--color-cyan);
    width: 12px;
    height: 12px;
}

.post-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card__title a {
    color: inherit;
    transition: color var(--transition-fast);
}

.post-card__title a:hover {
    color: var(--color-cyan);
}

.post-card__excerpt {
    font-size: var(--text-sm);
    color: var(--color-gray-text);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-cyan);
    transition: gap var(--transition-fast);
}

.post-card__read-more:hover {
    gap: 0.6rem;
    color: var(--color-cyan-dark);
}

/* Blog Single */
.post-single {
    max-width: 760px;
    margin: 0 auto;
    padding: 3rem 0 5rem;
}

.post-single__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.post-single__category {
    display: inline-block;
    padding: 0.3rem 1rem;
    background-color: rgba(0, 188, 212, 0.1);
    color: var(--color-cyan);
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.post-single__title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.3;
    margin-bottom: 1.25rem;
}

.post-single__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: var(--text-sm);
    color: var(--color-gray-text);
}

.post-single__meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.post-single__featured-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.post-single__featured-image img {
    width: 100%;
    height: auto;
}

.post-single__content {
    font-size: var(--text-base);
    line-height: 1.9;
    color: var(--color-gray-text);
}

.post-single__content h2 {
    font-size: var(--text-2xl);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.post-single__content h3 {
    font-size: var(--text-xl);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.post-single__content p {
    margin-bottom: 1.5rem;
}

.post-single__content ul,
.post-single__content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.post-single__content ul {
    list-style: disc;
}

.post-single__content ol {
    list-style: decimal;
}

.post-single__content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.post-single__content blockquote {
    border-left: 3px solid var(--color-cyan);
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    background-color: var(--color-light-bg);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--color-navy);
    font-size: var(--text-lg);
}

.post-single__content img {
    border-radius: var(--radius-md);
    margin: 2rem 0;
}

.post-single__content a {
    color: var(--color-cyan);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.post-single__content a:hover {
    color: var(--color-cyan-dark);
}

.post-single__content pre {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
    overflow-x: auto;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: var(--text-sm);
    line-height: 1.6;
}

.post-single__content code {
    background-color: var(--color-light-bg);
    padding: 0.15rem 0.4rem;
    border-radius: var(--radius-sm);
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 0.9em;
    color: var(--color-navy);
}

.post-single__content pre code {
    background: none;
    padding: 0;
    color: inherit;
    font-size: inherit;
}

/* Post Tags */
.post-single__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border-light);
}

.post-single__tag {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background-color: var(--color-light-bg);
    color: var(--color-gray-text);
    font-size: var(--text-xs);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.post-single__tag:hover {
    background-color: var(--color-cyan);
    color: var(--color-white);
}

/* Post Navigation */
.post-nav {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border-light);
}

.post-nav__item {
    flex: 1;
}

.post-nav__item--next {
    text-align: right;
}

.post-nav__label {
    font-size: var(--text-xs);
    color: var(--color-gray-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.post-nav__title {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-navy);
    transition: color var(--transition-fast);
}

.post-nav__title:hover {
    color: var(--color-cyan);
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination__link,
.pagination__current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.5rem;
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.pagination__link {
    color: var(--color-gray-text);
    background-color: var(--color-light-bg);
}

.pagination__link:hover {
    color: var(--color-white);
    background-color: var(--color-cyan);
}

.pagination__current {
    color: var(--color-white);
    background-color: var(--color-navy);
    font-weight: 600;
}

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

.contact-form {
    width: 100%;
}

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

.form-group__label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.form-group__label--required::after {
    content: ' *';
    color: #E53935;
}

.form-group__input,
.form-group__textarea,
.form-group__select {
    width: 100%;
    padding: 0.75rem 0;
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-navy);
    background-color: transparent;
    border: none;
    border-bottom: 2px solid var(--color-border);
    outline: none;
    transition: border-color var(--transition-fast);
}

.form-group__input:focus,
.form-group__textarea:focus,
.form-group__select:focus {
    border-bottom-color: var(--color-cyan);
}

.form-group__input::placeholder,
.form-group__textarea::placeholder {
    color: #BBBBBB;
}

.form-group__textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.7;
}

.form-group__select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}

/* Focus highlight line */
.form-group__highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-cyan);
    transition: width var(--transition-base);
}

.form-group__input:focus ~ .form-group__highlight,
.form-group__textarea:focus ~ .form-group__highlight,
.form-group__select:focus ~ .form-group__highlight {
    width: 100%;
}

/* Boxed variant */
.form-group--boxed .form-group__input,
.form-group--boxed .form-group__textarea,
.form-group--boxed .form-group__select {
    padding: 0.85rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background-color: var(--color-white);
}

.form-group--boxed .form-group__input:focus,
.form-group--boxed .form-group__textarea:focus,
.form-group--boxed .form-group__select:focus {
    border-color: var(--color-cyan);
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

/* Checkbox / Radio */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.form-check__input {
    margin-top: 0.25rem;
    accent-color: var(--color-cyan);
}

.form-check__label {
    font-size: var(--text-sm);
    color: var(--color-gray-text);
    line-height: 1.5;
}

.form-check__label a {
    color: var(--color-cyan);
    text-decoration: underline;
}

/* Form row (side by side) */
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(0, 188, 212, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-cyan);
}

.contact-info__label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gray-text);
    margin-bottom: 0.15rem;
}

.contact-info__value {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-navy);
    font-size: var(--text-base);
}

.contact-info__value a {
    color: var(--color-navy);
    transition: color var(--transition-fast);
}

.contact-info__value a:hover {
    color: var(--color-cyan);
}

/* Contact Map */
.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 300px;
    margin-top: 1.5rem;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Form Messages */
.form-message {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    margin-bottom: 1.5rem;
}

.form-message--success {
    background-color: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #C8E6C9;
}

.form-message--error {
    background-color: #FFEBEE;
    color: #C62828;
    border: 1px solid #FFCDD2;
}

/* --------------------------------------------------------------------------
   22. UTILITY CLASSES
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-navy { color: var(--color-navy); }
.text-cyan { color: var(--color-cyan); }
.text-white { color: var(--color-white); }
.text-gray { color: var(--color-gray-text); }

.bg-white { background-color: var(--color-white); }
.bg-light { background-color: var(--color-light-bg); }
.bg-navy { background-color: var(--color-navy); }
.bg-dark { background-color: var(--color-dark); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --------------------------------------------------------------------------
   23. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */

/* 480px - Large phones */
@media (min-width: 480px) {
    .hero__title {
        font-size: var(--text-5xl);
    }

    .hero__buttons {
        flex-direction: row;
        justify-content: center;
    }

    .cta-section__buttons {
        flex-direction: row;
        justify-content: center;
    }

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

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

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

    .page-hero__title {
        font-size: var(--text-5xl);
    }
}

/* 768px - Tablets */
@media (min-width: 768px) {
    /* Show top bar */
    .top-bar {
        display: block;
    }

    /* Show floating call on mobile only - so hide here */
    .floating-call {
        display: none;
    }

    /* Header */
    .site-header .container {
        min-height: 80px;
    }

    .site-header__cta {
        display: inline-flex;
    }

    /* Section spacing */
    .section {
        padding: 5rem 0;
    }

    .section-title {
        font-size: var(--text-4xl);
    }

    /* Hero */
    .hero {
        padding: 8rem 0 6rem;
    }

    .hero__title {
        font-size: var(--text-5xl);
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .about__content {
        text-align: left;
    }

    .about__certifications {
        justify-content: flex-start;
    }

    .about__image-frame {
        width: 320px;
        height: 320px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .stat-item__number {
        font-size: var(--text-5xl);
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-bottom .container {
        flex-direction: row;
        justify-content: space-between;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Service Detail */
    .service-detail {
        grid-template-columns: 280px 1fr;
    }

    .service-detail__sidebar {
        order: 0;
    }

    /* CTA */
    .cta-section__title {
        font-size: var(--text-4xl);
    }

    /* Page Hero */
    .page-hero {
        padding: 8rem 0 4rem;
    }
}

/* 1024px - Desktop */
@media (min-width: 1024px) {
    /* Navigation */
    .site-nav {
        display: block;
    }

    .hamburger {
        display: none;
    }

    /* Hero */
    .hero__title {
        font-size: var(--text-6xl);
    }

    .hero__subtitle {
        font-size: var(--text-xl);
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Blog */
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }

    /* About */
    .about__image-frame {
        width: 360px;
        height: 360px;
    }

    /* Section headers */
    .section-title {
        font-size: var(--text-4xl);
    }

    /* Page Hero */
    .page-hero__title {
        font-size: var(--text-5xl);
    }
}

/* 1200px - Large Desktop */
@media (min-width: 1200px) {
    .hero {
        min-height: 90vh;
    }

    .hero__title {
        font-size: var(--text-6xl);
    }

    .service-detail {
        grid-template-columns: 300px 1fr;
        gap: 3.5rem;
    }
}

/* Small screens - below 480px */
@media (max-width: 479px) {
    :root {
        --text-5xl: 2.25rem;
        --text-4xl: 1.875rem;
        --text-3xl: 1.5rem;
        --text-2xl: 1.25rem;
    }

    .hero {
        min-height: 75vh;
        padding: 5rem 0 3rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .stats-bar {
        padding: 2.5rem 0;
    }

    .stat-item__number {
        font-size: var(--text-3xl);
    }

    .post-single__title {
        font-size: var(--text-2xl);
    }
}

/* Floating call - show only below 768px */
@media (max-width: 767px) {
    .floating-call {
        display: flex;
    }
}

/* --------------------------------------------------------------------------
   24. WORDPRESS SPECIFIC
   -------------------------------------------------------------------------- */

/* WordPress alignment classes */
.alignnone {
    margin: 1rem 0;
}

.aligncenter {
    display: block;
    margin: 1.5rem auto;
}

.alignleft {
    float: left;
    margin: 0.5rem 1.5rem 1rem 0;
}

.alignright {
    float: right;
    margin: 0.5rem 0 1rem 1.5rem;
}

.wp-caption {
    max-width: 100%;
    margin-bottom: 1.5rem;
}

.wp-caption-text {
    font-size: var(--text-sm);
    color: var(--color-gray-text);
    text-align: center;
    margin-top: 0.5rem;
    font-style: italic;
}

/* WordPress gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* WordPress navigation */
.wp-block-navigation {
    font-family: var(--font-body);
}

/* Admin bar offset */
.admin-bar .site-header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

/* Screen reader text (WordPress default) */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}

.screen-reader-text:focus {
    background-color: var(--color-light-bg);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    clip: auto;
    clip-path: none;
    color: var(--color-navy);
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* --------------------------------------------------------------------------
   25. FRONT-PAGE MISSING CLASSES (BEM variants matching front-page.php HTML)
   -------------------------------------------------------------------------- */

/* ---- HERO SECTION (HTML uses .hero-section instead of .hero) ---- */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-navy) 50%, var(--color-navy-light) 100%);
    overflow: hidden;
    padding: 6rem 0 4rem;
}

/* Geometric pattern overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(0, 188, 212, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 188, 212, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(0, 188, 212, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

/* Grid pattern */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-section__title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero-section__title span {
    color: var(--color-cyan);
}

.hero-section__subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section__buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

/* Hero buttons: outline variant should be white on dark bg */
.hero-section .btn--outline {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-section .btn--outline:hover {
    background-color: var(--color-white);
    color: var(--color-navy);
    border-color: var(--color-white);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.hero-section__badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-section__badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    font-weight: 400;
}

.hero-section__badge svg {
    color: var(--color-cyan);
    flex-shrink: 0;
}

/* ---- SECTION HEADER BEM VARIANTS ---- */
/* HTML uses .section-header__tag, .section-header__title, .section-header__subtitle */
.section-header__tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-cyan);
    margin-bottom: 0.75rem;
}

.section-header__tag::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background-color: var(--color-cyan);
    vertical-align: middle;
    margin-right: 0.75rem;
}

.section-header__tag::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background-color: var(--color-cyan);
    vertical-align: middle;
    margin-left: 0.75rem;
}

.section-header__title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.section--navy .section-header__title,
.section--dark .section-header__title {
    color: var(--color-white);
}

.section-header__subtitle {
    font-size: var(--text-base);
    color: var(--color-gray-text);
    line-height: 1.7;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.section--navy .section-header__subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* ---- SECTION CTA (centered button area below grids) ---- */
.section-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ---- SERVICE CARD DESC (HTML uses __desc, CSS had __description) ---- */
.service-card__desc {
    font-size: var(--text-sm);
    color: var(--color-gray-text);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

/* ---- SERVICES GRID MODIFIERS (5-col and 4-col variants) ---- */
/* Already have .services-grid base. These modifiers ensure correct col counts at desktop. */

/* ---- ABOUT GRID BEM VARIANTS (HTML uses .about-grid__image, .about-grid__content, etc.) ---- */
.about-grid__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.about-grid__text {
    font-size: var(--text-base);
    color: var(--color-gray-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-grid__certifs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.about-grid__certifs img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.about-grid__certif-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background-color: var(--color-light-bg);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-navy);
    border: 1px solid var(--color-border-light);
}

.about-grid__certif-label svg {
    color: var(--color-cyan);
    flex-shrink: 0;
}

/* Portrait Frame (circular image with gradient border) */
.portrait-frame {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-navy), var(--color-cyan));
    background-size: 200% 200%;
    animation: gradientBorder 4s ease infinite;
    position: relative;
    flex-shrink: 0;
}

.portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* ---- STATS BAR BEM VARIANTS (HTML uses .stats-bar__grid, .stats-bar__item, etc.) ---- */
.stats-bar__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

.stats-bar__item {
    padding: 1rem;
}

.stats-bar__number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--color-cyan);
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.stats-bar__label {
    display: block;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* ---- FEATURE CARDS (Why choose me section) ---- */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-navy));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card__icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(0, 188, 212, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all var(--transition-base);
}

.feature-card__icon svg {
    color: var(--color-cyan);
    width: 32px;
    height: 32px;
}

.feature-card:hover .feature-card__icon {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-cyan-dark));
}

.feature-card:hover .feature-card__icon svg {
    color: var(--color-white);
}

.feature-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.feature-card__desc {
    font-size: var(--text-sm);
    color: var(--color-gray-text);
    line-height: 1.7;
}

/* ---- ZONE TAGS (intervention cities) ---- */
.zone-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.zone-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: var(--color-white);
    color: var(--color-navy);
    font-size: var(--text-sm);
    font-weight: 500;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
    cursor: default;
}

.zone-tag:hover {
    background-color: var(--color-cyan);
    color: var(--color-white);
    border-color: var(--color-cyan);
    transform: translateY(-2px);
    box-shadow: var(--shadow-cyan);
}

/* ---- TESTIMONIALS on navy background: fix card colors & star colors ---- */
.section--navy .testimonial-card {
    background-color: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.section--navy .testimonial-card:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.15);
}

.section--navy .testimonial-card__text {
    color: rgba(255, 255, 255, 0.8);
}

.section--navy .testimonial-card__name {
    color: var(--color-white);
}

.section--navy .testimonial-card__role {
    color: rgba(255, 255, 255, 0.5);
}

/* Star icons inside .testimonial-card__stars (inline SVGs with fill=currentColor) */
.testimonial-card__stars svg {
    color: #FFB400;
}

/* Testimonial author without avatar: stack name + role vertically */
.testimonial-card__author {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

/* ---- TESTIMONIALS CTA (voir tous nos avis) ---- */
.testimonials-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.btn--outline-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    color: var(--color-white);
    font-weight: 600;
    font-size: var(--text-sm);
    text-decoration: none;
    transition: all var(--transition-base);
    background: transparent;
}

.btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn--outline-white svg {
    width: 18px;
    height: 18px;
}

/* Testimonial role with Google check icon */
.testimonial-card__role svg {
    vertical-align: -2px;
    margin-right: 0.2rem;
}

.section--navy .testimonial-card__role svg {
    fill: rgba(255, 255, 255, 0.5);
}

/* ---- SERVICES GRID 5-col and 4-col modifiers ---- */
/* By default .services-grid is 1fr on mobile; at 480px becomes 2fr.
   These modifiers control desktop column counts. */

/* --------------------------------------------------------------------------
   25b. FRONT-PAGE RESPONSIVE ADDITIONS
   -------------------------------------------------------------------------- */

/* 480px - Large phones */
@media (min-width: 480px) {
    .hero-section__title {
        font-size: var(--text-5xl);
    }

    .hero-section__buttons {
        flex-direction: row;
        justify-content: center;
    }

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

/* 768px - Tablets */
@media (min-width: 768px) {
    .hero-section {
        padding: 8rem 0 6rem;
    }

    .hero-section__title {
        font-size: var(--text-5xl);
    }

    /* About grid 2-column */
    .about-grid__content {
        text-align: left;
    }

    .about-grid__certifs {
        justify-content: flex-start;
    }

    .portrait-frame {
        width: 320px;
        height: 320px;
    }

    /* Stats bar: 4 columns on tablet+ */
    .stats-bar__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .stats-bar__number {
        font-size: var(--text-5xl);
    }

    /* Features: 3 columns */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Section header title bigger */
    .section-header__title {
        font-size: var(--text-4xl);
    }

    /* Services grid modifiers at tablet */
    .services-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* 1024px - Desktop */
@media (min-width: 1024px) {
    .hero-section__title {
        font-size: var(--text-6xl);
    }

    .hero-section__subtitle {
        font-size: var(--text-xl);
    }

    .portrait-frame {
        width: 360px;
        height: 360px;
    }

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

    .services-grid--5 {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* 1200px - Large Desktop */
@media (min-width: 1200px) {
    .hero-section {
        min-height: 90vh;
    }

    .hero-section__title {
        font-size: var(--text-6xl);
    }
}

/* Small screens - below 480px */
@media (max-width: 479px) {
    .hero-section {
        min-height: 75vh;
        padding: 5rem 0 3rem;
    }

    .hero-section__badges {
        flex-direction: column;
        gap: 0.75rem;
    }

    .stats-bar__number {
        font-size: var(--text-3xl);
    }

    .portrait-frame {
        width: 220px;
        height: 220px;
    }

    .zone-tag {
        padding: 0.4rem 1rem;
        font-size: var(--text-xs);
    }
}

/* --------------------------------------------------------------------------
   27. BREADCRUMB
   -------------------------------------------------------------------------- */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--color-cyan);
}

.breadcrumb__sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: var(--text-xs);
}

.breadcrumb__current {
    color: var(--color-cyan);
}

/* --------------------------------------------------------------------------
   28. PAGE HERO - SINGLE POST VARIANT
   -------------------------------------------------------------------------- */
.page-hero--single {
    min-height: 45vh;
    padding: 7rem 0 3.5rem;
}

.page-hero__subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.page-hero__categories {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.page-hero__category {
    display: inline-block;
    padding: 0.3rem 1rem;
    background-color: rgba(0, 188, 212, 0.15);
    color: var(--color-cyan);
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid rgba(0, 188, 212, 0.25);
    transition: all var(--transition-fast);
}

.page-hero__category:hover {
    background-color: var(--color-cyan);
    color: var(--color-white);
    border-color: var(--color-cyan);
}

.page-hero__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.25rem;
}

.page-hero__meta time,
.page-hero__author,
.page-hero__reading-time {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.page-hero__meta svg {
    color: var(--color-cyan);
    flex-shrink: 0;
}

.page-hero__meta-sep {
    color: rgba(255, 255, 255, 0.25);
    font-size: var(--text-xs);
}

/* --------------------------------------------------------------------------
   29. BLOG LISTING - CARDS
   -------------------------------------------------------------------------- */

/* Blog Card */
.blog-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

/* Blog Card Image */
.blog-card__image {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background-color: var(--color-light-bg);
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.08);
}

.blog-card__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-border);
}

.blog-card__image--placeholder svg {
    opacity: 0.4;
}

/* Blog Card Body */
.blog-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Blog Card Date */
.blog-card__date {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--text-xs);
    color: var(--color-gray-text);
    margin-bottom: 0.75rem;
}

.blog-card__date svg {
    color: var(--color-cyan);
    flex-shrink: 0;
}

/* Blog Card Categories */
.blog-card__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.blog-card__category {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    background-color: rgba(0, 188, 212, 0.1);
    color: var(--color-cyan);
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.blog-card__category:hover {
    background-color: var(--color-cyan);
    color: var(--color-white);
}

/* Blog Card Title */
.blog-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__title a {
    color: inherit;
    transition: color var(--transition-fast);
}

.blog-card__title a:hover {
    color: var(--color-cyan);
}

/* Blog Card Excerpt */
.blog-card__excerpt {
    font-size: var(--text-sm);
    color: var(--color-gray-text);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.blog-card__excerpt p {
    margin-bottom: 0;
}

/* Blog Card Link */
.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-cyan);
    transition: gap var(--transition-fast), color var(--transition-fast);
    margin-top: auto;
}

.blog-card__link:hover {
    gap: 0.7rem;
    color: var(--color-cyan-dark);
}

.blog-card__link svg {
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.blog-card__link:hover svg {
    transform: translateX(2px);
}

/* --------------------------------------------------------------------------
   30. BLOG PAGINATION (WordPress)
   -------------------------------------------------------------------------- */
.blog-pagination {
    margin-top: 3.5rem;
    text-align: center;
}

.blog-pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 0.75rem;
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-gray-text);
    background-color: var(--color-light-bg);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.blog-pagination .page-numbers:hover {
    color: var(--color-white);
    background-color: var(--color-cyan);
    border-color: var(--color-cyan);
    transform: translateY(-2px);
    box-shadow: var(--shadow-cyan);
}

.blog-pagination .page-numbers.current {
    color: var(--color-white);
    background-color: var(--color-navy);
    border-color: var(--color-navy);
    font-weight: 600;
}

.blog-pagination .page-numbers.dots {
    background: none;
    border: none;
    pointer-events: none;
    min-width: auto;
    padding: 0 0.25rem;
}

.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    color: var(--color-cyan);
    background-color: transparent;
    border-color: var(--color-cyan);
}

.blog-pagination .page-numbers.prev:hover,
.blog-pagination .page-numbers.next:hover {
    color: var(--color-white);
    background-color: var(--color-cyan);
}

.blog-pagination .page-numbers.prev svg,
.blog-pagination .page-numbers.next svg {
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   31. BLOG EMPTY STATE
   -------------------------------------------------------------------------- */
.blog-empty {
    text-align: center;
    padding: 4rem 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.blog-empty svg {
    color: var(--color-border);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.blog-empty h2 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.blog-empty p {
    font-size: var(--text-base);
    color: var(--color-gray-text);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* --------------------------------------------------------------------------
   32. SINGLE ARTICLE
   -------------------------------------------------------------------------- */
.single-article {
    background-color: var(--color-white);
}

.single-article__wrapper {
    max-width: 760px;
    margin: 0 auto;
}

/* Featured Image */
.single-article__featured-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-md);
}

.single-article__featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.single-article__featured-image figcaption {
    font-size: var(--text-sm);
    color: var(--color-gray-text);
    text-align: center;
    padding: 0.75rem 1rem;
    font-style: italic;
    background-color: var(--color-light-bg);
}

/* Article Content - Rich Typography */
.single-article__content {
    font-size: var(--text-base);
    line-height: 1.9;
    color: var(--color-gray-text);
}

.single-article__content h2 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-navy);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.single-article__content h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-navy);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.single-article__content h4 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-navy);
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
}

.single-article__content p {
    margin-bottom: 1.5rem;
}

.single-article__content ul,
.single-article__content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.single-article__content ul {
    list-style: disc;
}

.single-article__content ol {
    list-style: decimal;
}

.single-article__content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.single-article__content blockquote {
    border-left: 4px solid var(--color-cyan);
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    background-color: var(--color-light-bg);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--color-navy);
    font-size: var(--text-lg);
    line-height: 1.7;
}

.single-article__content blockquote p:last-child {
    margin-bottom: 0;
}

.single-article__content img {
    border-radius: var(--radius-md);
    margin: 2rem 0;
}

.single-article__content a {
    color: var(--color-cyan);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition-fast);
}

.single-article__content a:hover {
    color: var(--color-cyan-dark);
}

.single-article__content pre {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
    overflow-x: auto;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: var(--text-sm);
    line-height: 1.6;
}

.single-article__content code {
    background-color: var(--color-light-bg);
    padding: 0.15rem 0.4rem;
    border-radius: var(--radius-sm);
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 0.9em;
    color: var(--color-navy);
}

.single-article__content pre code {
    background: none;
    padding: 0;
    color: inherit;
    font-size: inherit;
}

.single-article__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: var(--text-sm);
}

.single-article__content table th,
.single-article__content table td {
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border-light);
    text-align: left;
}

.single-article__content table th {
    background-color: var(--color-light-bg);
    font-weight: 600;
    color: var(--color-navy);
}

/* Article Tags */
.single-article__tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border-light);
}

.single-article__tags-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-navy);
}

.single-article__tags-label svg {
    color: var(--color-cyan);
    flex-shrink: 0;
}

.single-article__tag {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    background-color: var(--color-light-bg);
    color: var(--color-gray-text);
    font-size: var(--text-xs);
    font-weight: 500;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-fast);
}

.single-article__tag:hover {
    background-color: var(--color-cyan);
    color: var(--color-white);
    border-color: var(--color-cyan);
}

/* --------------------------------------------------------------------------
   33. POST NAVIGATION (Prev/Next)
   -------------------------------------------------------------------------- */
.post-navigation {
    background-color: var(--color-light-bg);
}

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

.post-navigation__link {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    text-decoration: none;
    transition: all var(--transition-base);
}

.post-navigation__link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-cyan);
}

.post-navigation__link--placeholder {
    visibility: hidden;
}

.post-navigation__link--next {
    text-align: right;
}

.post-navigation__direction {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-cyan);
}

.post-navigation__direction svg {
    flex-shrink: 0;
}

.post-navigation__link--next .post-navigation__direction {
    justify-content: flex-end;
}

.post-navigation__title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-navy);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--transition-fast);
}

.post-navigation__link:hover .post-navigation__title {
    color: var(--color-cyan);
}

/* --------------------------------------------------------------------------
   34. ERROR 404 PAGE
   -------------------------------------------------------------------------- */
.error-404 {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--color-light-bg) 0%, var(--color-white) 100%);
}

.error-404__content {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* 404 Icon */
.error-404__icon {
    margin-bottom: 1.5rem;
    color: var(--color-border);
    opacity: 0.6;
}

.error-404__icon svg {
    stroke: var(--color-navy);
    opacity: 0.2;
}

/* 404 Title */
.error-404__title {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 404 Subtitle */
.error-404__subtitle {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

/* 404 Message */
.error-404__message {
    font-size: var(--text-base);
    color: var(--color-gray-text);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* 404 Search */
.error-404__search {
    margin-bottom: 2.5rem;
}

.search-form__wrapper {
    display: flex;
    gap: 0;
    max-width: 460px;
    margin: 0 auto;
    border-radius: var(--radius-full);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-border-light);
    transition: border-color var(--transition-fast);
}

.search-form__wrapper:focus-within {
    border-color: var(--color-cyan);
    box-shadow: var(--shadow-md), 0 0 0 3px rgba(0, 188, 212, 0.1);
}

.search-form__input {
    flex: 1;
    padding: 0.85rem 1.5rem;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-navy);
    background-color: var(--color-white);
    min-width: 0;
}

.search-form__input::placeholder {
    color: #BBBBBB;
}

.search-form__submit {
    flex-shrink: 0;
    padding: 0.85rem 1.5rem;
    border: none;
    border-radius: 0;
}

.search-form__submit svg {
    flex-shrink: 0;
}

/* 404 Links / Buttons */
.error-404__links {
    margin-top: 0.5rem;
}

.error-404__links-label {
    font-size: var(--text-sm);
    color: var(--color-gray-text);
    margin-bottom: 1.25rem;
}

.error-404__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* --------------------------------------------------------------------------
   35. BLOG / SINGLE / 404 RESPONSIVE
   -------------------------------------------------------------------------- */

/* 480px+ */
@media (min-width: 480px) {
    .post-navigation__wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .error-404__title {
        font-size: 10rem;
    }
}

/* 768px+ */
@media (min-width: 768px) {
    .page-hero--single {
        min-height: 50vh;
        padding: 9rem 0 4rem;
    }

    .single-article__featured-image {
        margin-bottom: 3rem;
    }

    .single-article__content {
        font-size: var(--text-lg);
        line-height: 1.9;
    }

    .error-404__title {
        font-size: 12rem;
    }

    .error-404__subtitle {
        font-size: var(--text-3xl);
    }
}

/* 1024px+ */
@media (min-width: 1024px) {
    .error-404 {
        min-height: 75vh;
    }
}

/* Below 480px */
@media (max-width: 479px) {
    .blog-card__title {
        font-size: var(--text-base);
    }

    .page-hero__meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .page-hero__meta-sep {
        display: none;
    }

    .error-404__title {
        font-size: 6rem;
    }

    .error-404__subtitle {
        font-size: var(--text-xl);
    }

    .search-form__wrapper {
        flex-direction: column;
        border-radius: var(--radius-lg);
    }

    .search-form__input {
        border-radius: var(--radius-md) var(--radius-md) 0 0;
    }

    .search-form__submit {
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        justify-content: center;
    }

    .error-404__buttons {
        flex-direction: column;
    }

    .error-404__buttons .btn {
        width: 100%;
    }

    .post-navigation__link {
        padding: 1.25rem;
    }
}

/* ==========================================================================
   INNER PAGE TEMPLATES - Missing CSS Classes
   Classes used in page-entreprises.php, page-particuliers.php,
   page-expertise.php, page-veille.php, page-contact.php, and page.php.
   ========================================================================== */

/* --------------------------------------------------------------------------
   37. PAGE HERO - INNER PAGES (Extended)
   -------------------------------------------------------------------------- */

/* page-hero__content - Centered content wrapper inside page hero */
.page-hero__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* page-hero__actions - Button row in hero */
.page-hero__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* .section-tag inside page-hero: cyan pill on dark background */
.page-hero .section-tag {
    color: var(--color-cyan);
    background-color: rgba(0, 188, 212, 0.1);
    border: 1px solid rgba(0, 188, 212, 0.2);
    padding: 0.4rem 1.25rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

/* .btn--outline inside page-hero: white text on dark background */
.page-hero .btn--outline {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.page-hero .btn--outline:hover {
    background-color: var(--color-white);
    color: var(--color-navy);
    border-color: var(--color-white);
}

/* Responsive: hero actions side-by-side on larger screens */
@media (min-width: 480px) {
    .page-hero__actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* --------------------------------------------------------------------------
   38. SERVICE DETAIL - 2-COLUMN LAYOUT (Entreprises & Particuliers)
   -------------------------------------------------------------------------- */

/*
 * Override the existing .service-detail grid (Section 19) which was
 * a sidebar/main layout. These rules restyle it for the icon + content
 * 2-column layout used in page-entreprises and page-particuliers.
 */
.service-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
    padding: 0;
}

/* Service detail icon circle - large gradient circle */
.service-detail__icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.12), rgba(0, 188, 212, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 auto;
    transition: all var(--transition-base);
}

.service-detail__icon svg {
    color: var(--color-cyan);
    stroke: var(--color-cyan);
    width: 48px;
    height: 48px;
}

/* Service detail content area */
.service-detail__content {
    min-width: 0;
}

/* Service detail title */
.service-detail__title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

/* Service detail description text */
.service-detail__desc {
    font-size: var(--text-base);
    color: var(--color-gray-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Service detail "Ce qui est inclus" list */
.service-detail__includes {
    margin-top: 1.5rem;
}

.service-detail__includes h3 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.service-detail__includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.service-detail__includes ul li {
    position: relative;
    padding-left: 1.75rem;
    font-size: var(--text-sm);
    color: var(--color-gray-text);
    line-height: 1.7;
}

/* Checkmark icon before each list item */
.service-detail__includes ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2300BCD4' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* section--alt: Alternating light gray background for sections */
.section--alt {
    background-color: var(--color-light-bg);
}

/* Desktop: 2-column side-by-side (icon left, content right) */
@media (min-width: 768px) {
    .service-detail {
        grid-template-columns: 120px 1fr;
        gap: 2.5rem;
        align-items: start;
        padding: 0;
    }

    .service-detail__icon {
        width: 120px;
        height: 120px;
        margin: 0;
    }

    /* Reverse variant: content left, icon right */
    .service-detail--reverse {
        grid-template-columns: 1fr 120px;
    }

    .service-detail--reverse .service-detail__icon {
        order: 2;
    }

    .service-detail--reverse .service-detail__content {
        order: 1;
    }
}

/* --------------------------------------------------------------------------
   39. SECTION CTA & CTA BUTTONS (used across all inner page templates)
   -------------------------------------------------------------------------- */

/* section--cta: Navy gradient CTA section */
.section--cta {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-navy) 50%, var(--color-navy-light) 100%);
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section--cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 30% 30%, rgba(0, 188, 212, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 188, 212, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section--cta .container {
    position: relative;
    z-index: 1;
}

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

.section--cta .section-header p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section--cta .btn--outline {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.section--cta .btn--outline:hover {
    background-color: var(--color-white);
    color: var(--color-navy);
    border-color: var(--color-white);
}

/* CTA buttons row */
.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 480px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* --------------------------------------------------------------------------
   40. SERVICE CARDS GRID (Entreprises - "Pourquoi un prestataire local")
   -------------------------------------------------------------------------- */

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

.service-card__desc {
    font-size: var(--text-sm);
    color: var(--color-gray-text);
    line-height: 1.7;
}

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

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

/* --------------------------------------------------------------------------
   41. PRICING INFO (page-particuliers.php - Tarification section)
   -------------------------------------------------------------------------- */

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

.pricing-info__card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

.pricing-info__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-info__icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(0, 188, 212, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.pricing-info__icon svg {
    color: var(--color-cyan);
    stroke: var(--color-cyan);
}

.pricing-info__card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.pricing-info__card p {
    font-size: var(--text-sm);
    color: var(--color-gray-text);
    line-height: 1.7;
}

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

/* --------------------------------------------------------------------------
   42. EXPERTISE PAGE (page-expertise.php)
   -------------------------------------------------------------------------- */

/* Expertise block: badge + content, 2-column layout */
.expertise-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

.expertise-block__badge {
    display: flex;
    align-items: center;
    justify-content: center;
}

.expertise-block__badge img {
    max-width: 220px;
    height: auto;
    border-radius: var(--radius-lg);
}

.expertise-block__badge svg {
    color: var(--color-cyan);
    stroke: var(--color-cyan);
}

.expertise-block__content {
    min-width: 0;
}

.expertise-block__title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.expertise-block__content p {
    font-size: var(--text-base);
    color: var(--color-gray-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.expertise-block__content h3 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-navy);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.expertise-block__content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.expertise-block__content ul li {
    position: relative;
    padding-left: 1.75rem;
    font-size: var(--text-sm);
    color: var(--color-gray-text);
    line-height: 1.7;
}

.expertise-block__content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2300BCD4' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Reverse variant: content left, badge right */
.expertise-block--reverse {
    direction: ltr;
}

@media (min-width: 768px) {
    .expertise-block {
        grid-template-columns: 240px 1fr;
        gap: 3rem;
    }

    .expertise-block--reverse {
        grid-template-columns: 1fr 240px;
    }

    .expertise-block--reverse .expertise-block__badge {
        order: 2;
    }

    .expertise-block--reverse .expertise-block__content {
        order: 1;
    }
}

/* Expertise icon (for grid variant) */
.expertise-block__icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(0, 188, 212, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--color-cyan);
}

/* Expertise list variants */
.expertise-block__list,
.expertise-block__items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.expertise-block__list li,
.expertise-block__items li {
    position: relative;
    padding-left: 1.5rem;
    font-size: var(--text-sm);
    color: var(--color-gray-text);
    line-height: 1.6;
}

.expertise-block__list li::before,
.expertise-block__items li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-cyan);
}

/* Expertise grid layout */
.expertise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

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

/* Skills grid */
.skills-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

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

/* Skill card */
.skill-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-navy));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.skill-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.skill-card:hover::before {
    transform: scaleX(1);
}

.skill-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(0, 188, 212, 0.15);
}

.skill-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.skill-card__list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: var(--text-sm);
    color: var(--color-gray-text);
    line-height: 1.6;
}

.skill-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-cyan-dark));
}

/* Timeline (certifications) */
.timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--color-cyan), var(--color-navy));
}

.timeline__item {
    position: relative;
    padding-bottom: 2rem;
    padding-left: 1.5rem;
}

.timeline__item:last-child {
    padding-bottom: 0;
}

.timeline__item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.25rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--color-cyan);
    border: 3px solid var(--color-white);
    box-shadow: 0 0 0 2px var(--color-cyan);
    z-index: 1;
}

.timeline__year {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.timeline__content {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
}

.timeline__content h3 {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.timeline__content p {
    font-size: var(--text-sm);
    color: var(--color-gray-text);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   43. VEILLE PAGE (page-veille.php)
   -------------------------------------------------------------------------- */

/* Veille intro */
.veille-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.veille-intro__text {
    font-size: var(--text-lg);
    color: var(--color-gray-text);
    line-height: 1.8;
}

/* RSS feeds grid */
.rss-feeds-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

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

/* RSS feed block card */
.rss-feed-block {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.rss-feed-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-navy));
}

.rss-feed-block:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* RSS feed block header */
.rss-feed-block__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* RSS feed block icon */
.rss-feed-block__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.12), rgba(0, 188, 212, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rss-feed-block__icon svg {
    color: var(--color-cyan);
    stroke: var(--color-cyan);
}

/* RSS feed block title */
.rss-feed-block__title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0;
}

/* RSS feed block description */
.rss-feed-block__desc {
    font-size: var(--text-sm);
    color: var(--color-gray-text);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

/* RSS feed block content area */
.rss-feed-block__content {
    margin-top: 1rem;
}

/* RSS feed block placeholder text */
.rss-feed-block__placeholder {
    font-size: var(--text-sm);
    color: var(--color-gray-text);
    font-style: italic;
    text-align: center;
    padding: 1rem 0;
}

/* RSS feed block list */
.rss-feed-block__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* RSS feed block item */
.rss-feed-block__item {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border-light);
}

.rss-feed-block__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* RSS feed block link */
.rss-feed-block__link {
    display: block;
    font-size: var(--text-sm);
    color: var(--color-navy);
    font-weight: 500;
    line-height: 1.5;
    transition: color var(--transition-fast);
}

.rss-feed-block__link:hover {
    color: var(--color-cyan);
}

/* RSS feeds note */
.rss-feeds-note {
    text-align: center;
    margin-top: 2rem;
    font-size: var(--text-sm);
    color: var(--color-gray-text);
}

/* --------------------------------------------------------------------------
   44. BLOG CARDS - VEILLE VARIANT (page-veille.php uses blog-card__content)
   -------------------------------------------------------------------------- */

/* blog-cards grid (for recent posts on veille page) */
.blog-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

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

/* blog-card__content (alternative to blog-card__body used on veille page) */
.blog-card__content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* No posts placeholder */
.no-posts {
    text-align: center;
    font-size: var(--text-base);
    color: var(--color-gray-text);
    padding: 3rem 0;
    font-style: italic;
}

/* Section CTA link/button row (centered below grids) */
.section-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* --------------------------------------------------------------------------
   45. CONTACT PAGE EXTENDED (page-contact.php)
   -------------------------------------------------------------------------- */

/* Contact info title */
.contact-info__title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
}

/* Contact info text block */
.contact-info__text {
    min-width: 0;
}

.contact-info__text h3 {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.25rem;
}

.contact-info__text p {
    font-size: var(--text-sm);
    color: var(--color-gray-text);
    line-height: 1.6;
    margin-bottom: 0.25rem;
}

.contact-info__text a {
    font-size: var(--text-sm);
    color: var(--color-navy);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.contact-info__text a:hover {
    color: var(--color-cyan);
}

.contact-info__note {
    font-size: var(--text-xs);
    color: var(--color-gray-text);
    font-style: italic;
}

/* Contact audit card (inside left column) */
.contact-audit {
    background: linear-gradient(135deg, var(--color-navy), var(--color-dark));
    border-radius: var(--radius-lg);
    padding: 2rem;
    color: var(--color-white);
    margin-top: 1rem;
}

.contact-audit__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 188, 212, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-audit__icon svg {
    color: var(--color-cyan);
    stroke: var(--color-cyan);
}

.contact-audit__title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.contact-audit__desc {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

/* Contact form wrapper */
.contact-form-wrapper {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border-light);
}

/* Contact form title */
.contact-form__title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
}

/* Fallback form fields (when Gravity Forms is not installed) */
.contact-form label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.contact-form label .required {
    color: #E53935;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-navy);
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--color-cyan);
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #BBBBBB;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.7;
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

/* Form consent checkbox group */
.form-group--consent {
    margin-bottom: 1.5rem;
}

.form-group--consent label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: var(--text-sm);
    color: var(--color-gray-text);
    line-height: 1.5;
    cursor: pointer;
}

.form-group--consent input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
    accent-color: var(--color-cyan);
    flex-shrink: 0;
}

.form-group--consent a {
    color: var(--color-cyan);
    text-decoration: underline;
}

/* Contact info card variant (standalone card) */
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.contact-info-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.12), rgba(0, 188, 212, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-cyan);
}

.contact-info-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.25rem;
}

.contact-info-card__text {
    font-size: var(--text-sm);
    color: var(--color-gray-text);
    line-height: 1.6;
}

.contact-info-card__text a {
    color: var(--color-navy);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.contact-info-card__text a:hover {
    color: var(--color-cyan);
}

/* Map section */
.section--map {
    padding-bottom: 0;
}

.map-wrapper {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.map-wrapper iframe {
    width: 100%;
    min-height: 350px;
    border: none;
    display: block;
}

.map-container,
.map-embed {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 1.5rem;
    line-height: 0;
}

.map-container iframe,
.map-embed iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* --------------------------------------------------------------------------
   46. DEFAULT PAGE TEMPLATE (page.php)
   -------------------------------------------------------------------------- */

/* page-content area for default WordPress pages */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}

.page-content h2 {
    font-size: var(--text-2xl);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.page-content h3 {
    font-size: var(--text-xl);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.page-content p {
    margin-bottom: 1.25rem;
    font-size: var(--text-base);
    line-height: 1.8;
}

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

.page-content ul {
    list-style: disc;
}

.page-content ol {
    list-style: decimal;
}

.page-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.page-content a {
    color: var(--color-cyan);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.page-content a:hover {
    color: var(--color-cyan-dark);
}

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

.page-content blockquote {
    border-left: 3px solid var(--color-cyan);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background-color: var(--color-light-bg);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--color-navy);
}

/* entry-content (used in page.php via the_content()) */
.entry-content {
    max-width: 800px;
    margin: 0 auto;
}

.entry-content h2 {
    font-size: var(--text-2xl);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.entry-content h3 {
    font-size: var(--text-xl);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

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

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

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

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

.entry-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.entry-content a {
    color: var(--color-cyan);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.entry-content a:hover {
    color: var(--color-cyan-dark);
}

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

.entry-content blockquote {
    border-left: 3px solid var(--color-cyan);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background-color: var(--color-light-bg);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--color-navy);
}

/* --------------------------------------------------------------------------
   47. PRINT STYLES
   -------------------------------------------------------------------------- */
@media print {
    *,
    *::before,
    *::after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .top-bar,
    .site-header,
    .floating-call,
    .mobile-menu,
    .cta-section,
    .site-footer {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .section {
        padding: 2rem 0;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #555;
    }

    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }

    h1, h2, h3 {
        page-break-after: avoid;
    }

    p {
        orphans: 3;
        widows: 3;
    }
}

/* ====================================
   Cookie Banner
   ==================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--color-navy, #0f172a);
    color: #fff;
    padding: 1rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-banner__inner p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.cookie-banner__inner a {
    color: var(--color-accent, #3b82f6);
    text-decoration: underline;
}

.cookie-banner__inner .btn {
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .cookie-banner__inner {
        flex-direction: column;
        text-align: center;
    }
}
