/*
 Theme Name:   Leshey Digital
 Theme URI:    https://lesheydigital.com
 Description:  Custom GeneratePress child theme for Leshey Digital Marketing Agency — Cameroon's growth partner for small businesses.
 Author:       Leshey Digital
 Author URI:   https://lesheydigital.com
 Template:     generatepress
 Version:      2.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  leshey-digital
*/

/* ══════════════════════════════════════════════════
   DESIGN SYSTEM — CSS Custom Properties
   ══════════════════════════════════════════════════ */

:root {
    /* ── Primary Palette (matched to Leshey Digital logo) ── */
    --ld-navy:          #072B43;
    --ld-navy-dark:     #041E30;
    --ld-navy-light:    #1A5C74;
    --ld-teal:          #1A5C74;
    --ld-teal-dark:     #134B60;
    --ld-teal-light:    #41B8D5;
    --ld-teal-glow:     rgba(65, 184, 213, 0.12);
    --ld-cyan:          #41B8D5;
    --ld-cyan-dark:     #2DA0BC;
    --ld-cyan-light:    #6ECFE5;

    /* ── Neutrals ── */
    --ld-white:         #FFFFFF;
    --ld-off-white:     #F7FAFA;
    --ld-light-bg:      #F0F7F7;
    --ld-border:        #E2EAEA;
    --ld-gray-300:      #CBD5D5;
    --ld-gray-500:      #6B7E7E;
    --ld-gray-700:      #3D4F4F;
    --ld-dark:          #1A2A2A;

    /* ── Accents ── */
    --ld-success:       #22C55E;
    --ld-warning:       #F59E0B;
    --ld-error:         #EF4444;

    /* ── Typography ── */
    --ld-font-primary:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ld-font-heading:  'Plus Jakarta Sans', 'Inter', sans-serif;
    --ld-font-mono:     'JetBrains Mono', 'Fira Code', monospace;

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

    /* ── Layout ── */
    --ld-max-width:     1200px;
    --ld-narrow-width:  800px;
    --ld-radius-sm:     6px;
    --ld-radius-md:     10px;
    --ld-radius-lg:     16px;
    --ld-radius-xl:     24px;
    --ld-radius-full:   9999px;

    /* ── Shadows ── */
    --ld-shadow-sm:     0 1px 3px rgba(27, 42, 74, 0.06);
    --ld-shadow-md:     0 4px 12px rgba(27, 42, 74, 0.08);
    --ld-shadow-lg:     0 8px 30px rgba(27, 42, 74, 0.12);
    --ld-shadow-xl:     0 16px 50px rgba(27, 42, 74, 0.16);
    --ld-shadow-teal:   0 4px 20px rgba(65, 184, 213, 0.25);

    /* ── Transitions ── */
    --ld-ease:          cubic-bezier(0.4, 0, 0.2, 1);
    --ld-duration:      0.3s;
}


/* ══════════════════════════════════════════════════
   GLOBAL RESET & BASE STYLES
   ══════════════════════════════════════════════════ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--ld-font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--ld-dark);
    background-color: var(--ld-white);
    overflow-x: hidden;
}

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

a {
    color: var(--ld-teal);
    text-decoration: none;
    transition: color var(--ld-duration) var(--ld-ease);
}

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

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


/* ══════════════════════════════════════════════════
   TYPOGRAPHY
   ══════════════════════════════════════════════════ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ld-font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--ld-navy);
    margin-top: 0;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); margin-bottom: var(--ld-space-lg); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); margin-bottom: var(--ld-space-md); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); margin-bottom: var(--ld-space-md); }
h4 { font-size: 1.25rem; margin-bottom: var(--ld-space-sm); }

p {
    margin-bottom: var(--ld-space-md);
    color: var(--ld-gray-700);
}

.ld-eyebrow {
    font-family: var(--ld-font-primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ld-teal);
    margin-bottom: var(--ld-space-sm);
    display: block;
}

.ld-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--ld-gray-500);
    max-width: 640px;
}

.ld-lead.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


/* ══════════════════════════════════════════════════
   LAYOUT UTILITIES
   ══════════════════════════════════════════════════ */

.ld-container {
    width: 100%;
    max-width: var(--ld-max-width);
    margin: 0 auto;
    padding-left: var(--ld-space-xl);
    padding-right: var(--ld-space-xl);
}

.ld-container--narrow {
    max-width: var(--ld-narrow-width);
}

.ld-section {
    padding: var(--ld-space-5xl) 0;
}

.ld-section--sm {
    padding: var(--ld-space-3xl) 0;
}

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

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

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

.ld-section--navy .ld-eyebrow {
    color: var(--ld-teal-light);
}

.ld-section--light {
    background-color: var(--ld-off-white);
}

.ld-grid {
    display: grid;
    gap: var(--ld-space-xl);
}

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

@media (max-width: 992px) {
    .ld-grid--3,
    .ld-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

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

    .ld-container {
        padding-left: var(--ld-space-md);
        padding-right: var(--ld-space-md);
    }

    .ld-section {
        padding: var(--ld-space-3xl) 0;
    }
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }


/* ══════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════ */

.ld-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--ld-space-sm);
    font-family: var(--ld-font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: var(--ld-radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--ld-duration) var(--ld-ease);
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}

.ld-btn--primary {
    background: var(--ld-cyan);
    color: var(--ld-white);
    border-color: var(--ld-cyan);
}

.ld-btn--primary:hover {
    background: var(--ld-cyan-dark);
    border-color: var(--ld-cyan-dark);
    color: var(--ld-white);
    box-shadow: var(--ld-shadow-teal);
    transform: translateY(-2px);
}

.ld-btn--secondary {
    background: transparent;
    color: var(--ld-navy);
    border-color: var(--ld-navy);
}

.ld-btn--secondary:hover {
    background: var(--ld-navy);
    color: var(--ld-white);
    transform: translateY(-2px);
}

.ld-btn--white {
    background: var(--ld-white);
    color: var(--ld-navy);
    border-color: var(--ld-white);
}

.ld-btn--white:hover {
    background: transparent;
    color: var(--ld-white);
    border-color: var(--ld-white);
    transform: translateY(-2px);
}

.ld-btn--ghost {
    background: transparent;
    color: var(--ld-teal);
    border-color: transparent;
    padding-left: 0;
    padding-right: 0;
}

.ld-btn--ghost:hover {
    color: var(--ld-teal-dark);
    transform: none;
}

.ld-btn--ghost::after {
    content: '→';
    transition: transform var(--ld-duration) var(--ld-ease);
}

.ld-btn--ghost:hover::after {
    transform: translateX(4px);
}

.ld-btn--lg {
    font-size: 1.05rem;
    padding: 1.05rem 2.5rem;
    border-radius: var(--ld-radius-md);
}

.ld-btn--sm {
    font-size: 0.85rem;
    padding: 0.6rem 1.4rem;
}

.ld-btn--full {
    width: 100%;
}


/* ══════════════════════════════════════════════════
   HEADER / NAVIGATION
   ══════════════════════════════════════════════════ */

.ld-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ld-border);
    transition: all var(--ld-duration) var(--ld-ease);
}

.ld-header.scrolled {
    box-shadow: var(--ld-shadow-md);
}

.ld-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--ld-space-md) var(--ld-space-xl);
    max-width: var(--ld-max-width);
    margin: 0 auto;
}

.ld-header__logo {
    display: flex;
    align-items: center;
    gap: var(--ld-space-sm);
    text-decoration: none;
}

.ld-header__logo img {
    height: 36px;
    width: auto;
}

.ld-header__logo-text {
    font-family: var(--ld-font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--ld-navy);
    letter-spacing: -0.02em;
}

.ld-header__logo-text span {
    color: var(--ld-teal);
}

.ld-header__nav {
    display: flex;
    align-items: center;
    gap: var(--ld-space-xl);
}

.ld-header__nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--ld-space-lg);
}

.ld-header__nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ld-gray-700);
    text-decoration: none;
    padding: var(--ld-space-sm) 0;
    position: relative;
    transition: color var(--ld-duration) var(--ld-ease);
}

.ld-header__nav-link:hover,
.ld-header__nav-link.active {
    color: var(--ld-teal);
}

.ld-header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ld-teal);
    transition: width var(--ld-duration) var(--ld-ease);
}

.ld-header__nav-link:hover::after,
.ld-header__nav-link.active::after {
    width: 100%;
}

/* ── Mobile Menu Toggle ── */
.ld-header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--ld-space-sm);
}

.ld-header__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ld-navy);
    border-radius: 2px;
    transition: all var(--ld-duration) var(--ld-ease);
}

.ld-header__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.ld-header__toggle.active span:nth-child(2) {
    opacity: 0;
}
.ld-header__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .ld-header__toggle {
        display: flex;
    }

    .ld-header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--ld-white);
        flex-direction: column;
        align-items: flex-start;
        padding: var(--ld-space-4xl) var(--ld-space-xl);
        box-shadow: var(--ld-shadow-xl);
        transition: right var(--ld-duration) var(--ld-ease);
        z-index: 1001;
    }

    .ld-header__nav.open {
        right: 0;
    }

    .ld-header__nav-list {
        flex-direction: column;
        gap: var(--ld-space-md);
    }

    .ld-header__nav-link {
        font-size: 1.1rem;
    }
}


/* ══════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════ */

.ld-hero {
    position: relative;
    padding: calc(var(--ld-space-5xl) + 80px) 0 var(--ld-space-5xl);
    background: linear-gradient(135deg, var(--ld-navy) 0%, var(--ld-navy-dark) 60%, #031520 100%);
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.ld-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(65, 184, 213, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.ld-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(65, 184, 213, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes heroGlow {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.2) translate(30px, -20px); }
}

.ld-hero__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--ld-space-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.ld-hero__content {
    color: var(--ld-white);
}

.ld-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--ld-space-sm);
    background: rgba(65, 184, 213, 0.15);
    border: 1px solid rgba(65, 184, 213, 0.3);
    color: var(--ld-teal-light);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: var(--ld-radius-full);
    margin-bottom: var(--ld-space-lg);
    letter-spacing: 0.02em;
}

.ld-hero__badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--ld-cyan);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.ld-hero h1 {
    color: var(--ld-white);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: var(--ld-space-lg);
    letter-spacing: -0.03em;
}

.ld-hero h1 .highlight {
    color: var(--ld-teal-light);
    position: relative;
}

.ld-hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--ld-space-2xl);
    max-width: 520px;
}

.ld-hero__actions {
    display: flex;
    gap: var(--ld-space-md);
    flex-wrap: wrap;
}

.ld-hero__stats {
    display: flex;
    gap: var(--ld-space-2xl);
    margin-top: var(--ld-space-3xl);
    padding-top: var(--ld-space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ld-hero__stat-number {
    font-family: var(--ld-font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--ld-teal-light);
    display: block;
}

.ld-hero__stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

/* Hero Form */
.ld-hero__form-card {
    background: var(--ld-white);
    border-radius: var(--ld-radius-lg);
    padding: var(--ld-space-2xl);
    box-shadow: var(--ld-shadow-xl);
    position: relative;
}

.ld-hero__form-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--ld-radius-lg) + 2px);
    background: linear-gradient(135deg, var(--ld-cyan), var(--ld-navy-light));
    z-index: -1;
    opacity: 0.5;
}

.ld-hero__form-title {
    font-family: var(--ld-font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ld-navy);
    margin-bottom: var(--ld-space-sm);
}

.ld-hero__form-subtitle {
    font-size: 0.88rem;
    color: var(--ld-gray-500);
    margin-bottom: var(--ld-space-lg);
}

@media (max-width: 768px) {
    .ld-hero {
        min-height: auto;
        padding: calc(var(--ld-space-4xl) + 80px) 0 var(--ld-space-3xl);
    }

    .ld-hero__inner {
        grid-template-columns: 1fr;
        gap: var(--ld-space-2xl);
    }

    .ld-hero__stats {
        gap: var(--ld-space-xl);
    }

    .ld-hero__stat-number {
        font-size: 1.4rem;
    }
}


/* ══════════════════════════════════════════════════
   FORMS (for the plugin lead forms)
   ══════════════════════════════════════════════════ */

.ld-form__group {
    margin-bottom: var(--ld-space-md);
}

.ld-form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ld-navy);
    margin-bottom: var(--ld-space-xs);
}

.ld-form__input,
.ld-form__select,
.ld-form__textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--ld-font-primary);
    font-size: 0.95rem;
    color: var(--ld-dark);
    background: var(--ld-off-white);
    border: 2px solid var(--ld-border);
    border-radius: var(--ld-radius-sm);
    transition: all var(--ld-duration) var(--ld-ease);
    outline: none;
}

.ld-form__input:focus,
.ld-form__select:focus,
.ld-form__textarea:focus {
    border-color: var(--ld-teal);
    background: var(--ld-white);
    box-shadow: 0 0 0 4px var(--ld-teal-glow);
}

.ld-form__input::placeholder {
    color: var(--ld-gray-300);
}

.ld-form__textarea {
    min-height: 100px;
    resize: vertical;
}

.ld-form__select {
    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 d='M1 1l5 5 5-5' stroke='%236B7E7E' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.ld-form__success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    padding: var(--ld-space-md) var(--ld-space-lg);
    border-radius: var(--ld-radius-md);
    font-size: 0.95rem;
    display: none;
}

.ld-form__success.show {
    display: block;
}

.ld-form__error {
    color: var(--ld-error);
    font-size: 0.82rem;
    margin-top: var(--ld-space-xs);
}


/* ══════════════════════════════════════════════════
   SERVICE CARDS
   ══════════════════════════════════════════════════ */

.ld-service-card {
    background: var(--ld-white);
    border: 1px solid var(--ld-border);
    border-radius: var(--ld-radius-lg);
    padding: var(--ld-space-2xl);
    transition: all var(--ld-duration) var(--ld-ease);
    position: relative;
    overflow: hidden;
}

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

.ld-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--ld-teal);
    opacity: 0;
    transition: opacity var(--ld-duration) var(--ld-ease);
}

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

.ld-service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ld-teal-glow);
    border-radius: var(--ld-radius-md);
    margin-bottom: var(--ld-space-lg);
    color: var(--ld-teal);
    font-size: 1.5rem;
}

.ld-service-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--ld-teal);
    fill: none;
    stroke-width: 1.8;
}

.ld-service-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--ld-space-sm);
}

.ld-service-card p {
    font-size: 0.92rem;
    color: var(--ld-gray-500);
    margin-bottom: var(--ld-space-lg);
}

.ld-service-card .ld-btn--ghost {
    font-size: 0.88rem;
}


/* ══════════════════════════════════════════════════
   PROCESS / HOW WE WORK
   ══════════════════════════════════════════════════ */

.ld-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--ld-space-xl);
    position: relative;
    counter-reset: process;
}

.ld-process::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--ld-border);
    z-index: 0;
}

.ld-process__step {
    text-align: center;
    position: relative;
    z-index: 1;
    counter-increment: process;
}

.ld-process__number {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ld-cyan);
    color: var(--ld-white);
    font-family: var(--ld-font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50%;
    margin: 0 auto var(--ld-space-lg);
    box-shadow: var(--ld-shadow-teal);
}

.ld-process__step h4 {
    font-size: 1rem;
    margin-bottom: var(--ld-space-xs);
}

.ld-process__step p {
    font-size: 0.88rem;
    color: var(--ld-gray-500);
}

@media (max-width: 768px) {
    .ld-process {
        grid-template-columns: 1fr;
        gap: var(--ld-space-2xl);
    }

    .ld-process::before {
        display: none;
    }

    .ld-process__step {
        display: grid;
        grid-template-columns: 56px 1fr;
        gap: var(--ld-space-md);
        text-align: left;
    }

    .ld-process__number {
        margin: 0;
    }
}


/* ══════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════ */

.ld-testimonial-card {
    background: var(--ld-white);
    border-radius: var(--ld-radius-lg);
    padding: var(--ld-space-2xl);
    box-shadow: var(--ld-shadow-sm);
    border: 1px solid var(--ld-border);
    transition: all var(--ld-duration) var(--ld-ease);
}

.ld-testimonial-card:hover {
    box-shadow: var(--ld-shadow-md);
}

.ld-testimonial-card__quote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ld-gray-700);
    margin-bottom: var(--ld-space-lg);
    position: relative;
    padding-left: var(--ld-space-lg);
    border-left: 3px solid var(--ld-teal);
}

.ld-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--ld-space-md);
}

.ld-testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ld-teal-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ld-teal);
    font-weight: 700;
    font-size: 1rem;
}

.ld-testimonial-card__name {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--ld-navy);
}

.ld-testimonial-card__role {
    font-size: 0.82rem;
    color: var(--ld-gray-500);
}

.ld-testimonial-card__stars {
    color: var(--ld-warning);
    font-size: 0.9rem;
    margin-bottom: var(--ld-space-md);
    letter-spacing: 2px;
}


/* ══════════════════════════════════════════════════
   CTA SECTIONS
   ══════════════════════════════════════════════════ */

.ld-cta {
    background: linear-gradient(135deg, var(--ld-navy) 0%, var(--ld-navy-dark) 100%);
    border-radius: var(--ld-radius-xl);
    padding: var(--ld-space-4xl) var(--ld-space-3xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ld-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(65, 184, 213, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.ld-cta h2 {
    color: var(--ld-white);
    position: relative;
    z-index: 1;
}

.ld-cta p {
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
    max-width: 540px;
    margin: 0 auto var(--ld-space-xl);
}

.ld-cta .ld-btn {
    position: relative;
    z-index: 1;
}


/* ══════════════════════════════════════════════════
   BLOG CARDS
   ══════════════════════════════════════════════════ */

.ld-blog-card {
    background: var(--ld-white);
    border-radius: var(--ld-radius-lg);
    overflow: hidden;
    border: 1px solid var(--ld-border);
    transition: all var(--ld-duration) var(--ld-ease);
}

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

.ld-blog-card__image {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--ld-light-bg);
}

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

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

.ld-blog-card__body {
    padding: var(--ld-space-lg);
}

.ld-blog-card__category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ld-teal);
    margin-bottom: var(--ld-space-sm);
}

.ld-blog-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ld-navy);
    margin-bottom: var(--ld-space-sm);
    line-height: 1.35;
}

.ld-blog-card__title a {
    color: inherit;
    text-decoration: none;
}

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

.ld-blog-card__meta {
    font-size: 0.82rem;
    color: var(--ld-gray-500);
    display: flex;
    align-items: center;
    gap: var(--ld-space-md);
}

.ld-blog-card__reading-time {
    display: flex;
    align-items: center;
    gap: 4px;
}


/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */

.ld-footer {
    background: var(--ld-navy-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--ld-space-4xl) 0 var(--ld-space-xl);
}

.ld-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--ld-space-3xl);
    margin-bottom: var(--ld-space-3xl);
}

.ld-footer__brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: var(--ld-space-lg);
}

.ld-footer__social {
    display: flex;
    gap: var(--ld-space-sm);
}

.ld-footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--ld-radius-sm);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: all var(--ld-duration) var(--ld-ease);
}

.ld-footer__social a:hover {
    background: var(--ld-teal);
    color: var(--ld-white);
}

.ld-footer h4 {
    color: var(--ld-white);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--ld-space-lg);
}

.ld-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ld-footer__links li {
    margin-bottom: var(--ld-space-sm);
}

.ld-footer__links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color var(--ld-duration) var(--ld-ease);
}

.ld-footer__links a:hover {
    color: var(--ld-teal-light);
}

.ld-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--ld-space-sm);
    margin-bottom: var(--ld-space-md);
    font-size: 0.9rem;
}

.ld-footer__contact-icon {
    color: var(--ld-teal);
    flex-shrink: 0;
    margin-top: 2px;
}

.ld-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: var(--ld-space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .ld-footer__grid {
        grid-template-columns: 1fr;
        gap: var(--ld-space-2xl);
    }

    .ld-footer__bottom {
        flex-direction: column;
        gap: var(--ld-space-sm);
        text-align: center;
    }
}


/* ══════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ══════════════════════════════════════════════════ */

.ld-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.ld-whatsapp__btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--ld-duration) var(--ld-ease);
    cursor: pointer;
    text-decoration: none;
}

.ld-whatsapp__btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.ld-whatsapp__btn svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.ld-whatsapp__tooltip {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--ld-white);
    color: var(--ld-dark);
    padding: 0.6rem 1rem;
    border-radius: var(--ld-radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--ld-shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ld-duration) var(--ld-ease);
}

.ld-whatsapp:hover .ld-whatsapp__tooltip {
    opacity: 1;
}


/* ══════════════════════════════════════════════════
   PAGE TEMPLATE: SERVICE DETAIL
   ══════════════════════════════════════════════════ */

.ld-service-hero {
    padding: calc(var(--ld-space-5xl) + 80px) 0 var(--ld-space-3xl);
    background: var(--ld-off-white);
}

.ld-service-hero .ld-container {
    max-width: 800px;
    text-align: center;
}

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

.ld-service-includes__item {
    display: flex;
    gap: var(--ld-space-md);
    align-items: flex-start;
}

.ld-service-includes__check {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background: var(--ld-teal-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ld-teal);
    font-size: 0.85rem;
    margin-top: 2px;
}

@media (max-width: 640px) {
    .ld-service-includes {
        grid-template-columns: 1fr;
    }
}


/* ══════════════════════════════════════════════════
   FAQ ACCORDION
   ══════════════════════════════════════════════════ */

.ld-faq__item {
    border-bottom: 1px solid var(--ld-border);
}

.ld-faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    padding: var(--ld-space-lg) 0;
    font-family: var(--ld-font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ld-navy);
    cursor: pointer;
    text-align: left;
    transition: color var(--ld-duration) var(--ld-ease);
}

.ld-faq__question:hover {
    color: var(--ld-teal);
}

.ld-faq__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
    transition: transform var(--ld-duration) var(--ld-ease);
}

.ld-faq__item.active .ld-faq__icon {
    transform: rotate(45deg);
}

.ld-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ld-ease);
}

.ld-faq__item.active .ld-faq__answer {
    max-height: 500px;
}

.ld-faq__answer p {
    padding-bottom: var(--ld-space-lg);
    font-size: 0.95rem;
    line-height: 1.7;
}


/* ══════════════════════════════════════════════════
   BLOG ENHANCEMENTS (plugin-driven)
   ══════════════════════════════════════════════════ */

.ld-reading-time {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.82rem;
    color: var(--ld-gray-500);
}

.ld-post-cta {
    background: var(--ld-off-white);
    border: 1px solid var(--ld-border);
    border-left: 4px solid var(--ld-teal);
    border-radius: var(--ld-radius-md);
    padding: var(--ld-space-xl);
    margin: var(--ld-space-2xl) 0;
}

.ld-post-cta h4 {
    margin-bottom: var(--ld-space-sm);
}

.ld-post-cta p {
    font-size: 0.92rem;
    margin-bottom: var(--ld-space-md);
}

.ld-related-posts {
    margin-top: var(--ld-space-3xl);
    padding-top: var(--ld-space-2xl);
    border-top: 1px solid var(--ld-border);
}

.ld-related-posts h3 {
    margin-bottom: var(--ld-space-xl);
}

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

@media (max-width: 640px) {
    .ld-related-posts__grid {
        grid-template-columns: 1fr;
    }
}


/* ══════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════ */

.ld-fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ld-ease), transform 0.6s var(--ld-ease);
}

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

.ld-stagger > * {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s var(--ld-ease), transform 0.4s var(--ld-ease);
}

.ld-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.ld-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.ld-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.ld-stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }

.ld-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}


/* ══════════════════════════════════════════════════
   UTILITY: SCREEN READER ONLY
   ══════════════════════════════════════════════════ */

.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;
}


/* ══════════════════════════════════════════════════
   PAGE-LEVEL FIXES
   ══════════════════════════════════════════════════ */

/* Hide page title on front page and pages with hero sections */
.home .entry-title,
.home .page-header,
.page .entry-title {
    display: none;
}

/* Hide GeneratePress default footer credit */
.site-info {
    display: none !important;
}

/* Fix: Remove default GP content container padding on front page */
.home .site-content .entry-content,
.home .inside-article {
    padding: 0;
    margin: 0;
    max-width: 100%;
}

.home .site-main .entry-content {
    max-width: 100%;
}

/* Remove default GP article styling on pages using custom layouts */
.page .inside-article {
    padding: 0;
}

.page .entry-content {
    max-width: 100%;
}

/* Fix container width for full-width sections */
.home .site-content,
.page .site-content {
    max-width: 100%;
}

.home .container.grid-container,
.page .container.grid-container {
    max-width: 100%;
    padding: 0;
}

/* Ensure hero sections go full width */
.ld-hero,
.ld-section,
.ld-section--light,
.ld-section--navy,
.ld-section--sm {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
}

/* Fix sidebar showing on pages */
.page .site-main {
    width: 100%;
}

.page #right-sidebar {
    display: none;
}
