/* ============================================================
   PANACHE DIGITAL — PUBLIC STYLESHEET
   Stack: Bootstrap 5.3 + Custom
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES (Brand Variables)
   ============================================================ */

   @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap');

:root {
    /* Brand Colors */
    --pd-red:           #e8212e;
    --pd-red-dark:      #c41c27;
    --pd-red-light:     #ff4d57;
    --pd-navy:          #1a2a4a;
    --pd-navy-dark:     #111d35;
    --pd-navy-light:    #243558;
    --pd-cream:         #f5f0e8;
    --pd-cream-dark:    #ede8df;
    --pd-white:         #ffffff;
    --pd-gray-100:      #f8f9fa;
    --pd-gray-200:      #e9ecef;
    --pd-gray-500:      #6c757d;
    --pd-gray-700:      #495057;
    --pd-gray-900:      #212529;

    /* Typography */
    --pd-font-primary:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --pd-font-display:  'Inter', sans-serif;
    --pd-fs-xs:         0.75rem;
    --pd-fs-sm:         0.875rem;
    --pd-fs-base:       1rem;
    --pd-fs-lg:         1.125rem;
    --pd-fs-xl:         1.25rem;
    --pd-fs-2xl:        1.5rem;
    --pd-fs-3xl:        1.875rem;
    --pd-fs-4xl:        2.25rem;
    --pd-fs-5xl:        3rem;
    --pd-fs-6xl:        3.75rem;

    /* Spacing */
    --pd-section-py:    5rem;
    --pd-section-py-sm: 3rem;

    /* Shadows */
    --pd-shadow-sm:     0 2px 8px rgba(0,0,0,.06);
    --pd-shadow-md:     0 4px 20px rgba(0,0,0,.10);
    --pd-shadow-lg:     0 8px 40px rgba(0,0,0,.14);
    --pd-shadow-brand:  0 8px 30px rgba(232,33,46,.25);

    /* Border Radius */
    --pd-radius-sm:     0.5rem;
    --pd-radius-md:     1rem;
    --pd-radius-lg:     1.5rem;
    --pd-radius-xl:     2rem;
    --pd-radius-pill:   50rem;

    /* Transitions */
    --pd-transition:    all .3s ease;
    --pd-transition-slow: all .5s ease;

    /* Navbar */
    --navbar-height:    80px;
}

/* ============================================================
   2. BASE RESET & GLOBAL
   ============================================================ */
*, *::before, *::after { box-sizing: border-box;}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    max-width:100%;
}

body {
font-family:'Plus Jakarta Sans',sans-serif !important;
    color: #24345d;
    background: var(--pd-white);
    overflow-x: hidden;
       max-width:100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--pd-transition);
    box-shadow: var(--pd-shadow-brand);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--pd-transition);
}

a:hover { color: var(--pd-red); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--pd-font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--pd-gray-900);
}

p { line-height: 1.7; }

section { position: relative; }

/* ============================================================
   3. UTILITY CLASSES
   ============================================================ */
.text-brand       { color: var(--pd-red) !important; }
.text-navy        { color: var(--pd-navy) !important; }
.bg-brand         { background-color: var(--pd-red) !important; }
.bg-navy          { background-color: var(--pd-navy) !important; }
.bg-cream         { background-color: var(--pd-cream) !important; }
.bg-cream-dark    { background-color: var(--pd-cream-dark) !important; }

.section-py  { padding-top: var(--pd-section-py); padding-bottom: var(--pd-section-py); }
.section-label {
    font-size: var(--pd-fs-sm);
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--pd-red);
}

/* ============================================================
   4. BOOTSTRAP OVERRIDES
   ============================================================ */
.btn-brand {
    background-color: var(--pd-red);
    color: var(--pd-white);
    border: 2px solid var(--pd-red);
    font-weight: 600;
    transition: var(--pd-transition);
}
.btn-brand:hover, .btn-brand:focus {
    background-color: var(--pd-red-dark);
    border-color: var(--pd-red-dark);
    color: var(--pd-white);
    transform: translateY(-2px);
    box-shadow: var(--pd-shadow-brand);
}

.btn-brand-outline {
    background: transparent;
    color: var(--pd-red);
    border: 2px solid var(--pd-red);
    font-weight: 600;
    transition: var(--pd-transition);
}
.btn-brand-outline:hover {
    background: var(--pd-red);
    color: var(--pd-white);
    transform: translateY(-2px);
}

.btn-brand-outline-white {
    background: transparent;
    color: var(--pd-white);
    border: 2px solid var(--pd-white);
    font-weight: 600;
    transition: var(--pd-transition);
}
.btn-brand-outline-white:hover {
    background: var(--pd-white);
    color: var(--pd-navy);
    transform: translateY(-2px);
}

.btn-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--pd-gray-200);
    background: var(--pd-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--pd-transition);
    color: var(--pd-gray-700);
    padding: 0;
}
.btn-icon-circle:hover {
    border-color: var(--pd-red);
    color: var(--pd-red);
    background: rgba(232,33,46,.05);
}

/* ============================================================
   5. NAVBAR — DESKTOP
   ============================================================ */

#mainNavbar {
    height: var(--navbar-height);
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: var(--pd-transition);
    z-index: 1030;
}

#mainNavbar.scrolled {
    box-shadow: var(--pd-shadow-md);
    border-bottom-color: var(--pd-gray-200);
}

.navbar-logo {
    height: 60px;
    width: auto;
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: var(--pd-fs-sm);
    color: var(--pd-gray-900);
    padding: .5rem .75rem;
    border-radius: var(--pd-radius-sm);
    transition: var(--pd-transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--pd-red);
    background: rgba(232,33,46,.06);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--pd-shadow-lg);
    border-radius: var(--pd-radius-md);
    padding: .75rem;
    min-width: 220px;
    margin-top: .5rem;
}

.dropdown-menu-animated {
    animation: dropdownIn .2s ease;
}

@keyframes dropdownIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
    font-size: var(--pd-fs-sm);
    font-weight: 500;
    padding: .6rem 1rem;
    border-radius: var(--pd-radius-sm);
    color: var(--pd-gray-700);
    transition: var(--pd-transition);
}

.dropdown-item:hover {
    background: rgba(232,33,46,.07);
    color: var(--pd-red);
    padding-left: 1.25rem;
}

/* ============================================================
   5a. HAMBURGER BUTTON
   ============================================================ */

.hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: var(--pd-gray-100);
    border: none;
    border-radius: var(--pd-radius-sm);
    cursor: pointer;
    transition: var(--pd-transition);
    z-index: 1100;
    position: relative;
}

.hamburger-btn:hover {
    background: rgba(232,33,46,.08);
}

.hamburger-btn span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--pd-gray-900);
    border-radius: 2px;
    transition: transform .35s cubic-bezier(.4,0,.2,1),
                opacity .2s ease,
                width .3s ease;
    transform-origin: center;
}

/* Middle line shorter for style */
.hamburger-btn span:nth-child(2) {
    width: 75%;
}

/* Open state → X */
.hamburger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    width: 100%;
}
.hamburger-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    width: 100%;
}

/* ============================================================
   5b. MOBILE DRAWER
   ============================================================ */

/* Dark overlay behind drawer */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(17, 29, 53, 0.55);
    backdrop-filter: blur(3px);
    z-index: 1090;
    opacity: 0;
    transition: opacity .3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* Drawer panel */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100dvh;
    background: var(--pd-white);
    z-index: 1095;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -8px 0 40px rgba(0,0,0,.15);
    overflow-y: auto;
    overscroll-behavior: contain;
}

.mobile-drawer.open {
    transform: translateX(0);
}

/* Drawer Header */
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid var(--pd-gray-200);
    position: sticky;
    top: 0;
    background: var(--pd-white);
    z-index: 2;
}

.drawer-logo {
    height: 48px;
    width: auto;
}

.drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--pd-gray-200);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--pd-gray-700);
    font-size: 1rem;
    transition: var(--pd-transition);
}

.drawer-close:hover {
    background: rgba(232,33,46,.07);
    border-color: var(--pd-red);
    color: var(--pd-red);
}

/* Drawer Nav */
.drawer-nav {
    flex: 1;
    padding: 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1rem;
    border-radius: var(--pd-radius-sm);
    font-weight: 500;
    font-size: var(--pd-fs-base);
    color: var(--pd-gray-900);
    text-decoration: none;
    transition: var(--pd-transition);
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.drawer-link:hover,
.drawer-link.active {
    background: rgba(232,33,46,.07);
    color: var(--pd-red);
}

.drawer-link.active {
    font-weight: 600;
}

.drawer-link-icon {
    width: 18px;
    color: var(--pd-red);
    font-size: 0.95rem;
}

/* Chevron rotation */
.drawer-chevron {
    font-size: 0.75rem;
    transition: transform .3s ease;
    color: var(--pd-gray-500);
}

.drawer-dropdown-toggle[aria-expanded="true"] .drawer-chevron {
    transform: rotate(180deg);
}

/* Submenu */
.drawer-submenu {
    display: none;
    flex-direction: column;
    gap: 1px;
    padding: 0.4rem 0 0.4rem 1rem;
    margin-left: 1rem;
    border-left: 2px solid var(--pd-gray-200);
}

.drawer-submenu.open {
    display: flex;
}

.drawer-sublink {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.85rem;
    border-radius: var(--pd-radius-sm);
    font-size: var(--pd-fs-sm);
    font-weight: 500;
    color: var(--pd-gray-700);
    text-decoration: none;
    transition: var(--pd-transition);
}

.drawer-sublink:hover {
    background: rgba(232,33,46,.06);
    color: var(--pd-red);
}

/* Drawer Footer */
.drawer-footer {
    padding: 1.25rem;
    border-top: 1px solid var(--pd-gray-200);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: sticky;
    bottom: 0;
    background: var(--pd-white);
}

/* ============================================================
   6. HERO SECTION
   ============================================================ */
.hero {
    min-height: calc(100vh - var(--navbar-height));
    background: var(--pd-white);
    padding: 1rem 0;
    display: flex;
    align-items: center;
}

.hero__headline {
    font-size: 62px;
    line-height: .94;
    font-weight: 600;
    letter-spacing: -4px;
    color: #24345d;
    max-width: 560px;
    margin-bottom: 24px;
}

.hero__sub {
    font-size: 16px;
    line-height: 1.8;
    color: #6b7280;
    max-width: 470px;
}

.hero__trusted {
    font-size: var(--pd-fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--pd-gray-500);
}

.hero__logo-strip {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero__logo-strip img {
    height: 24px;
    width: auto;
    opacity: .5;
    filter: grayscale(1);
    transition: var(--pd-transition);
}
.hero__logo-strip img:hover {
    opacity: 1;
    filter: grayscale(0);
}



.trusted-wrap{display:flex;align-items:center;gap:20px;flex-wrap:wrap;margin-top:22px;}

.trusted-label{font-size:12px;font-weight:500;color:#9ca3af;max-width:85px;line-height:1.4;}

.trusted-divider{width:1px;height:36px;background:#d1d5db;flex-shrink:0;}

.trusted-logos{display:flex;align-items:center;gap:26px;flex-wrap:wrap;}

.trusted-logo{display:flex;align-items:center;gap:6px;color:#9ca3af;font-size:14px;font-weight:700;opacity:.75;}



/* ============================================================
   HERO RIGHT SIDE — PRECISE FIX
   ============================================================ */
.hero__cards {
    position: relative;
    height: 440px;
    width: 100%;
}

/* ── Image Card — asymmetric border radius ── */
.hero-card--image {
  
    position: absolute;
    top: 0;
    left: 0;
    width: 58%;
    height: 260px;
    overflow: hidden;
    border-radius: 220px 24px 24px 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .06);
}

.hero-card--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Red Badge — correct icon + position ── */
.hero__badge {
    position: absolute;
    top: -34px;              
    left: calc(45% - 46px);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(180deg, #ff5d52, #e52020);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    z-index: 5;
    box-shadow: 0 12px 30px rgba(255, 59, 48, .22);
    animation: pulse 2.5s infinite; /* keep the pulse */
}

@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(232,33,46,.5); }
    70%  { box-shadow: 0 0 0 18px rgba(232,33,46,0); }
    100% { box-shadow: 0 0 0 0 rgba(232,33,46,0); }
}

/* ── 230+ Stat Card ── */
.hero-card--stat {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(42% - 16px);
    height: 260px;
    padding: 24px 20px;
    background: #ececec;
    border-radius: 22px;
}

.hero-card--stat .stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--pd-navy);
    line-height: 1;
    letter-spacing: -.03em;
}

.hero-card--stat .stat-number span {
    color: var(--pd-red);
}

.hero-card--stat p {
    font-size: .78rem;
    color: var(--pd-gray-500);
    line-height: 1.55;
    margin-top: .6rem;
    margin-bottom: 0;
}

.hero-card--stat .stat-divider {
    height: 3px;
    border-radius: 3px;
    margin-top: 1.25rem;
    background: linear-gradient(
        to right,
        var(--pd-navy)     0%,
        var(--pd-navy)     40%,
        var(--pd-gray-200) 40%,
        var(--pd-gray-200) 100%
    );
}

/* ── Traffic Card — sits below with gap, full width ── */
.hero-card--traffic {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    /* gap from top row = container height - top row height - traffic card height */
    /* top row is 55% of 500px = 275px, gap ~20px, so top = 295px */
    top: auto;
    background: var(--pd-navy);
    border-radius: 1.75rem;
    padding: 1.75rem 2rem;
    box-shadow: var(--pd-shadow-lg);
    color: var(--pd-white);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    /* height = remaining space */
    height: 38%;
    overflow: hidden;
}

.traffic-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.hero-card--traffic .traffic-label {
    font-size: .72rem;
    letter-spacing: .01em;
    opacity: .6;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: .6rem;
    font-weight: 400;
    color: var(--pd-white);
}

.hero-card--traffic .traffic-label::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 1.5px;
    background: rgba(255,255,255,.5);
    flex-shrink: 0;
}

.hero-card--traffic .traffic-title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
    color: var(--pd-white);
}

/* ── Bar Chart — tall bold 3 bars ── */
.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    /* full height of card padding area */
    height: calc(100% + 0px);
    flex-shrink: 0;
    align-self: flex-end;
}

.bar-chart .bar {
    width: 46px;
    background: var(--pd-red);
    border-radius: 6px 6px 0 0;
    opacity: .95;
    transition: opacity .3s ease;
}

.bar-chart .bar:nth-child(1) { height: 55%; }
.bar-chart .bar:nth-child(2) { height: 78%; }
.bar-chart .bar:nth-child(3) { height: 100%; }
.bar-chart .bar:nth-child(n+4) { display: none; }

.bar-chart .bar:hover {
    opacity: 1;
    filter: brightness(1.1);
}



/* ============================================================
   7. SECTION — WE GROW BRANDS (Services)
   ============================================================ */
.section-tagline {
    background: var(--pd-cream);
    padding:45px 0;
}

.section-tagline__headline {
        font-size: 34px;
    line-height: 1.05;
    font-weight: 650;
    color: #EC1C24;
    max-width: 760px;
    margin: 0 auto 28px;
}

.section-tagline__sub {
    font-size: 16px;
    line-height: 1.8;
    color: #6b7280;
    margin: 0 auto;
    font-weight: 400;
}

/* Services Grid Card */
.services-grid {
    background: var(--pd-white);
    border-radius: var(--pd-radius-xl);
    padding: 2.5rem;
    box-shadow: var(--pd-shadow-sm);
}

.service-card {
    padding: 2rem;
    border: 1.5px solid var(--pd-gray-200);
    border-radius: var(--pd-radius-lg);
    height: 100%;
    transition: var(--pd-transition);
    background: var(--pd-white);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232,33,46,.04) 0%, transparent 60%);
    opacity: 0;
    transition: var(--pd-transition);
}

.service-card:hover {
    border-color: var(--pd-red);
    transform: translateY(-6px);
    box-shadow: var(--pd-shadow-md);
}

.service-card:hover::before { opacity: 1; }

.service-card__icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(232,33,46,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: var(--pd-transition);
}

.service-card__icon-wrap img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.service-card:hover .service-card__icon-wrap {
    background: var(--pd-red);
}

.service-card:hover .service-card__icon-wrap img {
    filter: brightness(0) invert(1);
}

.service-card__name {
    font-size: var(--pd-fs-lg);
    font-weight: 700;
    color: var(--pd-navy);
    margin-bottom: .75rem;
}

.service-card__desc {
    font-size: var(--pd-fs-sm);
    color: var(--pd-gray-500);
    line-height: 1.7;
    flex-grow: 1;
}

.service-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--pd-gray-200);
}

.service-card__price {
    font-size: var(--pd-fs-sm);
    font-weight: 600;
    color: var(--pd-gray-700);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--pd-red);
    color: var(--pd-white);
    font-size: var(--pd-fs-sm);
    font-weight: 600;
    padding: .45rem 1.1rem;
    border-radius: var(--pd-radius-pill);
    transition: var(--pd-transition);
    border: none;
}
.btn-read-more:hover {
    background: var(--pd-red-dark);
    color: var(--pd-white);
    transform: translateX(3px);
}

/* ============================================================
   8. STATS + ABOUT SECTION
   ============================================================ */
.stats-about {
    padding: var(--pd-section-py) 0;
    background: var(--pd-white);
}

.stats-card {
    background: var(--pd-cream);
    border-radius: var(--pd-radius-xl);
    padding: 2.5rem;
    height: 100%;
}

.stat-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--pd-cream-dark);
}
.stat-item:last-child { border-bottom: none; }

.stat-item__value {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--pd-navy);
    line-height: 1;
}

.stat-item__value span.text-brand {
    font-size: 1.5em;
}

.stat-item__label {
    font-size: var(--pd-fs-sm);
    color: var(--pd-gray-500);
    margin-top: .25rem;
    line-height: 1.4;
}

.about-content__headline {
    font-size: 25px;
    font-weight: 600;
    color: var(--pd-navy);
    line-height: 1.25;
}
.about-content__headline span { color: var(--pd-red); }

.about-content__body {
    color: var(--pd-gray-700);
    font-size: 14px;
    line-height: 1.8;
    color: #24345d;
}

/* Video Placeholder */
.video-placeholder {
    border-radius: var(--pd-radius-lg);
    overflow: hidden;
    background: var(--pd-gray-200);
    aspect-ratio: 16/6;
    position: relative;
    cursor: pointer;
}

.video-placeholder__label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: .3em;
    font-size: var(--pd-fs-sm);
    font-weight: 600;
    color: var(--pd-white);
    background: rgba(26,42,74,.4);
    text-transform: uppercase;
}

.video-play-btn {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: #b5ff4d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--pd-navy);
    transition: var(--pd-transition);
    box-shadow: var(--pd-shadow-md);
}
.video-play-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--pd-shadow-lg);
}

/* ============================================================
   9. PORTFOLIO SECTION
   ============================================================ */
.portfolio-section {
    background: var(--pd-navy);
    padding: var(--pd-section-py) 0;
    color: var(--pd-white);
}

.portfolio-section h2 {
    color: var(--pd-white);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    text-align: center;
}

/* Filter Tabs */
.portfolio-filters {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem 0;
}

.portfolio-filters .filter-btn {
    padding: .5rem 1.25rem;
    border: 1.5px solid rgba(255,255,255,.25);
    border-radius: var(--pd-radius-pill);
    background: transparent;
    color: rgba(255,255,255,.75);
    font-size: var(--pd-fs-sm);
    font-weight: 500;
    cursor: pointer;
    transition: var(--pd-transition);
    white-space: nowrap;
}

.portfolio-filters .filter-btn:hover,
.portfolio-filters .filter-btn.active {
    background: var(--pd-red);
    border-color: var(--pd-red);
    color: var(--pd-white);
}

/* Portfolio Card */
.portfolio-card {
    border-radius: var(--pd-radius-lg);
    overflow: hidden;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    transition: var(--pd-transition);
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,.2);
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
}

.portfolio-card__thumb {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.portfolio-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.portfolio-card:hover .portfolio-card__thumb img {
    transform: scale(1.05);
}

.portfolio-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(232,33,46,.85);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: var(--pd-transition);
}

.portfolio-card:hover .portfolio-card__overlay { opacity: 1; }

.portfolio-card__overlay a {
    width: 48px;
    height: 48px;
    background: var(--pd-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pd-red);
    font-size: 1.1rem;
    transform: translateY(10px);
    transition: var(--pd-transition);
}

.portfolio-card:hover .portfolio-card__overlay a {
    transform: translateY(0);
}

.portfolio-card__body {
    padding: 1.5rem;
}

.portfolio-card__cat {
    font-size: var(--pd-fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--pd-red);
    margin-bottom: .5rem;
}

.portfolio-card__title {
    font-size: var(--pd-fs-lg);
    font-weight: 700;
    color: var(--pd-white);
    margin-bottom: .5rem;
}

.portfolio-card__desc {
    font-size: var(--pd-fs-sm);
    color: rgba(255,255,255,.6);
    line-height: 1.6;
}

/* ============================================================
   10. TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
    background: var(--pd-gray-100);
    padding: var(--pd-section-py) 0;
}

.testimonial-slide {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2rem 0;
}

.testimonial-slide__photo {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--pd-white);
    box-shadow: var(--pd-shadow-md);
}

.testimonial-slide__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-slide__quote {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 500;
    line-height: 1.8;
    color: var(--pd-gray-700);
    quotes: '\201C' '\201D';
}

.testimonial-slide__quote::before {
    content: open-quote;
    font-size: 3rem;
    color: var(--pd-red);
    line-height: 0;
    vertical-align: -0.6em;
    margin-right: .2rem;
}

.testimonial-slide__name {
    font-size: var(--pd-fs-base);
    font-weight: 700;
    color: var(--pd-gray-900);
    margin-top: 1.5rem;
}

.testimonial-slide__role {
    font-size: var(--pd-fs-sm);
    color: var(--pd-gray-500);
}

/* Swiper Navigation */
.testimonial-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-nav .nav-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid var(--pd-gray-300);
    background: var(--pd-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--pd-transition);
    color: var(--pd-gray-700);
    font-size: 1rem;
}

.testimonial-nav .nav-btn.active,
.testimonial-nav .nav-btn:hover {
    background: var(--pd-navy);
    border-color: var(--pd-navy);
    color: var(--pd-white);
}

.testimonial-nav .nav-counter {
    font-size: var(--pd-fs-sm);
    font-weight: 600;
    color: var(--pd-gray-700);
    min-width: 50px;
}

/* ============================================================
   11. FAQ SECTION
   ============================================================ */
.faq-section {
    background: var(--pd-white);
    padding: var(--pd-section-py) 0;
}

.faq-section__label {
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--pd-navy);
}

.faq-section__sub {
    color: var(--pd-gray-500);
    font-size: var(--pd-fs-base);
    margin-top: .75rem;
    line-height: 1.7;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid var(--pd-gray-200) !important;
    border-radius: 0 !important;
}

.accordion-button {
    font-weight: 600;
    font-size: var(--pd-fs-base);
    color: var(--pd-gray-900);
    background: transparent;
    padding: 1.25rem 0;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--pd-navy);
    background: transparent;
}

.accordion-button::after {
    background-image: none;
    content: '\002B';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--pd-red);
    transform: none !important;
}

.accordion-button:not(.collapsed)::after {
    content: '\2212';
}

.accordion-body {
    padding: 0 0 1.25rem 0;
    color: var(--pd-gray-500);
    font-size: var(--pd-fs-sm);
    line-height: 1.8;
}

/* ============================================================
   12. BLOG SECTION
   ============================================================ */
.blog-section {
    background: var(--pd-gray-100);
    padding: var(--pd-section-py) 0;
}

.blog-section__header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--pd-navy);
}

.blog-card {
    background: var(--pd-white);
    border-radius: var(--pd-radius-lg);
    overflow: hidden;
    height: 100%;
    transition: var(--pd-transition);
    border: 1px solid var(--pd-gray-200);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--pd-shadow-md);
    border-color: transparent;
}

.blog-card__image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.blog-card:hover .blog-card__image img { transform: scale(1.05); }

.blog-card__body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    height: calc(100% - 200px);
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
}

.blog-card__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--pd-red);
    flex-shrink: 0;
}

.blog-card__read-time {
    font-size: var(--pd-fs-xs);
    color: var(--pd-gray-500);
    font-weight: 500;
}

.blog-card__title {
    font-size: var(--pd-fs-xl);
    font-weight: 700;
    color: var(--pd-navy);
    line-height: 1.35;
    margin-bottom: .75rem;
    flex-grow: 1;
}

.blog-card__title a:hover { color: var(--pd-red); }

.blog-card__excerpt {
    font-size: var(--pd-fs-sm);
    color: var(--pd-gray-500);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--pd-gray-200);
}

.blog-arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--pd-navy);
    color: var(--pd-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--pd-transition);
}

.blog-arrow-btn:hover {
    background: var(--pd-red);
    color: var(--pd-white);
    transform: rotate(45deg);
}

/* ============================================================
   13. CTA BANNER
   ============================================================ */
.cta-banner {
    background: var(--pd-navy-dark);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232,33,46,.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner__title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--pd-white);
    line-height: 1.2;
}


/*conatct us ssection*/

/* ============================================================
   PAGE HEADER — shared across contact, portfolio, blog pages
   ============================================================ */
.page-header {
    background: var(--pd-cream);
    padding: 5rem 0 3rem;
}

.page-header__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--pd-navy);
    line-height: 1.15;
}

.page-header__sub {
    font-size: var(--pd-fs-lg);
    color: var(--pd-gray-500);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================================
   PAGE HEADER — DARK VARIANT
   ============================================================ */
.page-header--dark {
    background: var(--pd-navy);
    overflow: hidden;
    position: relative;
}

/* Subtle background pattern */
.page-header--dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 50%, rgba(232,33,46,.12) 0%, transparent 60%),
        radial-gradient(ellipse at 10% 80%, rgba(255,255,255,.03) 0%, transparent 50%);
    pointer-events: none;
}

.page-header--dark .page-header__title {
    color: var(--pd-white);
}

.page-header--dark .page-header__sub {
    color: rgba(255,255,255,.70);
    margin: 0;
}

/* Breadcrumb */
.page-header--dark .breadcrumb-item,
.page-header--dark .breadcrumb-item a {
    color: rgba(255,255,255,.55);
}
.page-header--dark .breadcrumb-item.active {
    color: var(--pd-white);
}
.page-header--dark .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,.30);
}

/* Section label pill */
.page-header--dark .section-label-pill {
    color: var(--pd-white);
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.20);
}

/* Service icon wrapper */
.page-header--dark .service-page__header-icon {
    background: rgba(232,33,46,.20);
    color: var(--pd-red-light);
    border: 1px solid rgba(232,33,46,.30);
}

/* Price badge */
.page-header--dark .service-page__price-badge {
    background: rgba(255,255,255,.08);
    color: var(--pd-white);
    border: 1px solid rgba(255,255,255,.20);
}

/* ── Decorative Right Column ── */
.page-header__deco {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Central big icon */
.page-header__deco-icon {
    width: 110px;
    height: 110px;
    border-radius: 28px;
    background: rgba(232,33,46,.15);
    border: 1px solid rgba(232,33,46,.30);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.75rem;
    color: var(--pd-red-light);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(8px);
}

/* Pulsing rings */
.page-header__deco-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.08);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ringPulse 3s ease-in-out infinite;
}
.page-header__deco-ring--1 {
    width: 160px; height: 160px;
    border-color: rgba(232,33,46,.20);
    animation-delay: 0s;
}
.page-header__deco-ring--2 {
    width: 230px; height: 230px;
    border-color: rgba(255,255,255,.08);
    animation-delay: .6s;
}
.page-header__deco-ring--3 {
    width: 310px; height: 310px;
    border-color: rgba(255,255,255,.04);
    animation-delay: 1.2s;
}

@keyframes ringPulse {
    0%, 100% { opacity: .6; transform: translate(-50%,-50%) scale(1); }
    50%       { opacity: 1;  transform: translate(-50%,-50%) scale(1.04); }
}

/* Floating stat badges */
.page-header__stat {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--pd-radius-pill);
    padding: 0.5rem 1rem;
    font-size: var(--pd-fs-sm);
    font-weight: 600;
    color: var(--pd-white);
    white-space: nowrap;
    animation: floatBadge 4s ease-in-out infinite;
}

.page-header__stat--1 {
    top: 15%;
    right: 0;
    animation-delay: 0s;
}

.page-header__stat--2 {
    bottom: 18%;
    left: 0;
    animation-delay: 2s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { background: var(--pd-white); }

/* Info Cards */
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--pd-gray-100);
    border-radius: var(--pd-radius-lg);
    border: 1px solid var(--pd-gray-200);
    transition: var(--pd-transition);
}

.contact-info-card:hover {
    border-color: var(--pd-red);
    box-shadow: var(--pd-shadow-sm);
    transform: translateX(4px);
}

.contact-info-card__icon {
    width: 48px;
    height: 48px;
    background: rgba(232,33,46,.08);
    border-radius: var(--pd-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pd-red);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-card__label {
    font-size: var(--pd-fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--pd-gray-500);
    margin-bottom: .35rem;
}

.contact-info-card__value {
    font-size: var(--pd-fs-base);
    font-weight: 600;
    color: var(--pd-navy);
    line-height: 1.5;
    text-decoration: none;
    display: block;
}

.contact-info-card__value:hover { color: var(--pd-red); }

/* Form Card */
.contact-form-card {
    background: var(--pd-white);
    border: 1.5px solid var(--pd-gray-200);
    border-radius: var(--pd-radius-xl);
    padding: 2.5rem;
    box-shadow: var(--pd-shadow-sm);
}

.contact-form-card__title {
    font-size: var(--pd-fs-2xl);
    font-weight: 800;
    color: var(--pd-navy);
    margin-bottom: .4rem;
}

.contact-form-card__sub {
    color: var(--pd-gray-500);
    font-size: var(--pd-fs-sm);
    margin-bottom: 2rem;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border: 1.5px solid var(--pd-gray-200);
    border-radius: var(--pd-radius-md);
    padding: .75rem 1rem;
    font-size: var(--pd-fs-sm);
    color: var(--pd-gray-900);
    transition: var(--pd-transition);
    background: var(--pd-gray-100);
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--pd-red);
    background: var(--pd-white);
    box-shadow: 0 0 0 3px rgba(232,33,46,.1);
    outline: none;
}

.contact-form-card .form-label {
    font-size: var(--pd-fs-sm);
    font-weight: 600;
    color: var(--pd-gray-700);
    margin-bottom: .4rem;
}

.contact-form-card textarea.form-control { resize: vertical; min-height: 140px; }

@media (max-width: 767.98px) {
    .contact-form-card { padding: 1.5rem; }
}


/* ============================================================
   INPUT WITH ICON WRAPPER
   ============================================================ */
.input-group-icon {
    position: relative;
}

.input-group-icon > i {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: var(--pd-gray-500);
    font-size: .875rem;
    pointer-events: none;
    z-index: 5;
    transition: var(--pd-transition);
}

/* For textarea the icon sits at top not middle */
.input-group-icon.textarea-icon > i {
    top: 1rem;
    transform: none;
}

.input-group-icon .form-control,
.input-group-icon .form-select {
    padding-left: 2.75rem;
}

.input-group-icon .form-control:focus ~ i,
.input-group-icon .form-select:focus + i,
.input-group-icon:focus-within > i {
    color: var(--pd-red);
}

/* Valid/Invalid state colors */
.form-control.is-valid  { border-color: #198754 !important; }
.form-control.is-invalid,
.form-select.is-invalid { border-color: var(--pd-red) !important; }

.invalid-feedback {
    display: none;
    font-size: .78rem;
    color: var(--pd-red);
    margin-top: .3rem;
}

/* reCAPTCHA */
.recaptcha-notice {
    font-size: .75rem;
    color: var(--pd-gray-500);
    margin: 0;
    line-height: 1.6;
}
.recaptcha-notice a {
    color: var(--pd-gray-500);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.recaptcha-notice a:hover { color: var(--pd-red); }
.grecaptcha-badge         { visibility: hidden !important; }


/*end of contact us section*/

/* ============================================================
   14. FOOTER
   ============================================================ */
.site-footer {
    background: var(--pd-gray-100);
    padding: 5rem 0 2rem;
}

.footer-desc {
    font-size: var(--pd-fs-sm);
    color: var(--pd-gray-500);
    line-height: 1.8;
    max-width: 340px;
}

.footer-heading {
    font-size: var(--pd-fs-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--pd-gray-900);
    margin-bottom: 1.25rem;
}

.footer-links li { margin-bottom: .6rem; }
.footer-links a {
    font-size: var(--pd-fs-sm);
    color: var(--pd-gray-500);
    transition: var(--pd-transition);
}
.footer-links a:hover {
    color: var(--pd-red);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: 1rem;
    font-size: var(--pd-fs-sm);
    color: var(--pd-gray-500);
}
.footer-contact i {
    margin-top: 3px;
    flex-shrink: 0;
}
.footer-contact a { color: var(--pd-gray-500); }
.footer-contact a:hover { color: var(--pd-red); }

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--pd-white);
    border: 1.5px solid var(--pd-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pd-gray-700);
    font-size: .95rem;
    transition: var(--pd-transition);
}
.social-icon:hover {
    background: var(--pd-red);
    border-color: var(--pd-red);
    color: var(--pd-white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--pd-gray-200);
    padding-top: 2rem;
    color: var(--pd-gray-500);
}

/* ============================================================
   15. COOKIE BANNER
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--pd-navy-dark);
    color: var(--pd-white);
    padding: 1.25rem 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}

.cookie-banner__text {
    font-size: var(--pd-fs-sm);
    color: rgba(255,255,255,.85);
}

.cookie-link {
    color: var(--pd-red);
    text-decoration: underline;
}
.cookie-link:hover { color: var(--pd-red-light); }

/* ============================================================
   16. RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 991.98px) {
    :root {
        --pd-section-py: 4rem;
        --navbar-height: 70px;
    }

    .hero { padding: 3rem 0; min-height: auto; }
    .hero__cards { height: 300px; margin-top: 3rem; }
    .hero-card--stat { width: 45%; }

    .testimonial-slide {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .testimonial-nav { justify-content: center; }

    .faq-section .row > div:first-child {
        margin-bottom: 2rem;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    :root {
        --pd-section-py: 3rem;
        --navbar-height: 65px;
    }

    .hero__cards {
        display: none; /* Hide complex card layout on mobile */
    }

    .hero__sub { max-width: 100%; }

    .services-grid { padding: 1.5rem; }

    .portfolio-filters {
        gap: .5rem;
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: .5rem;
        scrollbar-width: none;
    }
    .portfolio-filters::-webkit-scrollbar { display: none; }

    .cta-banner { padding: 3rem 0; text-align: center; }
    .cta-banner__inner { text-align: center; }

    .blog-section__header { text-align: center; }
    .blog-section__header .text-md-end { text-align: center !important; }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .navbar-logo { height: 50px; }
    .hero__headline { font-size: 4rem; }
    .stats-card { padding: 1.5rem; }
    .service-card { padding: 1.5rem; }
    .footer-desc { max-width: 100%; }
}



/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */
.portfolio-page { background: var(--pd-white); }

/* Filter count badge */
.filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.2);
    color: inherit;
    font-size: .65rem;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 50rem;
    padding: 0 5px;
    margin-left: .4rem;
    transition: var(--pd-transition);
}

.filter-btn.active .filter-count,
.filter-btn:hover .filter-count {
    background: rgba(255,255,255,.3);
}

/* On white background (portfolio page — not dark section) */
.portfolio-page .portfolio-filters .filter-btn {
    border-color: var(--pd-gray-300);
    color: var(--pd-gray-700);
}

.portfolio-page .portfolio-filters .filter-btn:hover,
.portfolio-page .portfolio-filters .filter-btn.active {
    background: var(--pd-red);
    border-color: var(--pd-red);
    color: var(--pd-white);
}

/* Portfolio card on white bg */
.portfolio-page .portfolio-card {
    background: var(--pd-white);
    border: 1.5px solid var(--pd-gray-200);
}

.portfolio-page .portfolio-card__title {
    color: var(--pd-navy);
}

.portfolio-page .portfolio-card__cat {
    color: var(--pd-red);
}

.portfolio-page .portfolio-card__desc {
    color: var(--pd-gray-500);
}

/* Empty state */
.empty-state {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ============================================================
   PORTFOLIO DETAIL PAGE
   ============================================================ */
.page-header--dark {
    background: var(--pd-navy);
}

.page-header--dark .page-header__title {
    color: var(--pd-white);
}

.page-header--dark .page-header__sub {
    color: rgba(255,255,255,.7);
}

/* Breadcrumb light */
.breadcrumb-light .breadcrumb-item a {
    color: rgba(255,255,255,.65);
    text-decoration: none;
    transition: var(--pd-transition);
}

.breadcrumb-light .breadcrumb-item a:hover {
    color: var(--pd-white);
}

.breadcrumb-light .breadcrumb-item.active {
    color: var(--pd-white);
}

.breadcrumb-light .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,.4);
}

/* Main image */
.portfolio-detail__main-image {
    position: relative;
    border-radius: var(--pd-radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.portfolio-detail__main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .5s ease;
}

.portfolio-detail__main-image:hover img {
    transform: scale(1.02);
}

/* Gallery thumbnails */
.portfolio-detail__gallery-thumb {
    position: relative;
    display: block;
    border-radius: var(--pd-radius-md);
    overflow: hidden;
    cursor: pointer;
}

.portfolio-detail__gallery-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform .5s ease;
}

.portfolio-detail__gallery-thumb:hover img {
    transform: scale(1.05);
}

/* Zoom icon overlay */
.portfolio-detail__zoom {
    position: absolute;
    inset: 0;
    background: rgba(232,33,46,.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--pd-transition);
    color: var(--pd-white);
    font-size: 1.5rem;
}

.portfolio-detail__main-image:hover .portfolio-detail__zoom,
.portfolio-detail__gallery-thumb:hover .portfolio-detail__zoom {
    opacity: 1;
}

/* Case Study Blocks */
.case-study-block {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: var(--pd-radius-lg);
    background: var(--pd-gray-100);
    border: 1px solid var(--pd-gray-200);
    margin-bottom: 1.5rem;
    transition: var(--pd-transition);
}

.case-study-block:hover {
    border-color: var(--pd-red);
    box-shadow: var(--pd-shadow-sm);
}

.case-study-block--result {
    background: rgba(232,33,46,.04);
    border-color: rgba(232,33,46,.2);
}

.case-study-block__icon {
    width: 48px;
    height: 48px;
    background: var(--pd-red);
    border-radius: var(--pd-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pd-white);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.case-study-block__title {
    font-size: var(--pd-fs-lg);
    font-weight: 700;
    color: var(--pd-navy);
    margin-bottom: .75rem;
}

.case-study-block__body {
    font-size: var(--pd-fs-base);
    color: var(--pd-gray-700);
    line-height: 1.8;
    margin: 0;
}

/* Sidebar */
.portfolio-sidebar__card {
    background: var(--pd-gray-100);
    border-radius: var(--pd-radius-lg);
    padding: 1.75rem;
    border: 1px solid var(--pd-gray-200);
}

.portfolio-sidebar__heading {
    font-size: var(--pd-fs-base);
    font-weight: 700;
    color: var(--pd-navy);
    margin-bottom: 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--pd-gray-200);
}

.portfolio-sidebar__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.portfolio-sidebar__list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .75rem 0;
    border-bottom: 1px solid var(--pd-gray-200);
    gap: 1rem;
}

.portfolio-sidebar__list li:last-child {
    border-bottom: none;
}

.portfolio-sidebar__label {
    font-size: var(--pd-fs-sm);
    color: var(--pd-gray-500);
    font-weight: 500;
    white-space: nowrap;
}

.portfolio-sidebar__value {
    font-size: var(--pd-fs-sm);
    font-weight: 600;
    color: var(--pd-navy);
    text-align: right;
}

.portfolio-sidebar__link {
    color: var(--pd-red);
    text-decoration: none;
}

.portfolio-sidebar__link:hover {
    text-decoration: underline;
}

/* CTA Card */
.portfolio-sidebar__cta {
    background: var(--pd-navy);
    border-radius: var(--pd-radius-lg);
    padding: 1.75rem;
    color: var(--pd-white);
}

.portfolio-sidebar__cta h4 {
    color: var(--pd-white);
    font-size: var(--pd-fs-lg);
    font-weight: 700;
    margin-bottom: .75rem;
}

.portfolio-sidebar__cta p {
    color: rgba(255,255,255,.7);
    font-size: var(--pd-fs-sm);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.portfolio-sidebar__share {
    padding: 1rem 0;
}


/* ============================================================
   BLOG PAGE — LISTING
   ============================================================ */
.blog-page { background: var(--pd-white); }

/* Category filter pills */
.blog-cat-filter {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.blog-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem 1.1rem;
    border-radius: var(--pd-radius-pill);
    border: 1.5px solid var(--pd-gray-300);
    background: transparent;
    color: var(--pd-gray-700);
    font-size: var(--pd-fs-sm);
    font-weight: 500;
    text-decoration: none;
    transition: var(--pd-transition);
}

.blog-cat-pill:hover,
.blog-cat-pill.active {
    background: var(--pd-red);
    border-color: var(--pd-red);
    color: var(--pd-white);
}

.blog-cat-pill__count {
    background: rgba(0,0,0,.1);
    border-radius: 50rem;
    font-size: .65rem;
    font-weight: 700;
    padding: 1px 6px;
    min-width: 20px;
    text-align: center;
}

.blog-cat-pill.active .blog-cat-pill__count,
.blog-cat-pill:hover .blog-cat-pill__count {
    background: rgba(255,255,255,.25);
}

/* Blog card updated meta */
.blog-card__cat-badge {
    display: inline-block;
    background: rgba(232,33,46,.08);
    color: var(--pd-red);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .25rem .75rem;
    border-radius: var(--pd-radius-pill);
}

.blog-card__date {
    font-size: var(--pd-fs-xs);
    color: var(--pd-gray-500);
}

/* Pagination */
.blog-pagination .page-link {
    border-radius: var(--pd-radius-md) !important;
    border: 1.5px solid var(--pd-gray-200);
    color: var(--pd-gray-700);
    font-weight: 500;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--pd-transition);
}

.blog-pagination .page-link:hover {
    background: var(--pd-red);
    border-color: var(--pd-red);
    color: var(--pd-white);
}

.blog-pagination .page-item.active .page-link {
    background: var(--pd-red);
    border-color: var(--pd-red);
    color: var(--pd-white);
}

.blog-pagination .page-item.disabled .page-link {
    opacity: .4;
    pointer-events: none;
}

/* ============================================================
   BLOG SIDEBAR
   ============================================================ */
.blog-sidebar__widget {
    background: var(--pd-gray-100);
    border-radius: var(--pd-radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--pd-gray-200);
}

.blog-sidebar__title {
    font-size: var(--pd-fs-base);
    font-weight: 700;
    color: var(--pd-navy);
    margin-bottom: 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--pd-gray-200);
}

.blog-sidebar__cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-sidebar__cat-list li { margin-bottom: .4rem; }

.blog-sidebar__cat-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .6rem .75rem;
    border-radius: var(--pd-radius-sm);
    color: var(--pd-gray-700);
    font-size: var(--pd-fs-sm);
    font-weight: 500;
    text-decoration: none;
    transition: var(--pd-transition);
}

.blog-sidebar__cat-list a:hover,
.blog-sidebar__cat-list a.active {
    background: rgba(232,33,46,.07);
    color: var(--pd-red);
    padding-left: 1rem;
}

/* Latest posts */
.blog-sidebar__latest { display: flex; flex-direction: column; gap: 1rem; }

.blog-sidebar__latest-item {
    display: flex;
    gap: .875rem;
    text-decoration: none;
    transition: var(--pd-transition);
}

.blog-sidebar__latest-item:hover {
    transform: translateX(4px);
}

.blog-sidebar__latest-img {
    width: 64px;
    height: 64px;
    border-radius: var(--pd-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.blog-sidebar__latest-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-sidebar__latest-title {
    font-size: var(--pd-fs-sm);
    font-weight: 600;
    color: var(--pd-navy);
    line-height: 1.4;
    margin-bottom: .3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-sidebar__latest-item:hover .blog-sidebar__latest-title {
    color: var(--pd-red);
}

.blog-sidebar__latest-date {
    font-size: .72rem;
    color: var(--pd-gray-500);
}

/* Sidebar CTA */
.blog-sidebar__cta {
    background: var(--pd-navy);
    border-radius: var(--pd-radius-lg);
    padding: 1.75rem;
    color: var(--pd-white);
    text-align: center;
    margin-bottom: 1.5rem;
}

.blog-sidebar__cta i { color: var(--pd-red); }

.blog-sidebar__cta h5 {
    color: var(--pd-white);
    font-weight: 700;
    margin: .75rem 0 .5rem;
}

.blog-sidebar__cta p {
    color: rgba(255,255,255,.7);
    font-size: var(--pd-fs-sm);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

/* Sticky sidebar on single post */
.blog-sidebar--sticky {
    position: sticky;
    top: calc(var(--navbar-height) + 1rem);
}

/* ============================================================
   BLOG SINGLE POST
   ============================================================ */
.page-header--blog {
    background: var(--pd-cream);
    padding-bottom: 3rem;
}

.blog-single__title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--pd-navy);
    line-height: 1.2;
    max-width: 800px;
}

.blog-single__meta {
    font-size: var(--pd-fs-sm);
    color: var(--pd-gray-500);
}

.blog-single__meta a {
    color: var(--pd-gray-500);
    text-decoration: none;
}

.blog-single__meta a:hover { color: var(--pd-red); }

/* Featured image */
.blog-single__featured-img {
    border-radius: var(--pd-radius-lg);
    overflow: hidden;
}

.blog-single__featured-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Article body — Summernote output */
.blog-single__body {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--pd-gray-700);
}

.blog-single__body h2,
.blog-single__body h3,
.blog-single__body h4 {
    color: var(--pd-navy);
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.blog-single__body h2 { font-size: 1.6rem; }
.blog-single__body h3 { font-size: 1.3rem; }

.blog-single__body p { margin-bottom: 1.5rem; }

.blog-single__body ul,
.blog-single__body ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-single__body li { margin-bottom: .5rem; }

.blog-single__body blockquote {
    border-left: 4px solid var(--pd-red);
    padding: 1rem 1.5rem;
    background: var(--pd-cream);
    border-radius: 0 var(--pd-radius-md) var(--pd-radius-md) 0;
    font-style: italic;
    color: var(--pd-gray-700);
    margin: 2rem 0;
}

.blog-single__body img {
    max-width: 100%;
    border-radius: var(--pd-radius-md);
    margin: 1.5rem 0;
}

.blog-single__body a {
    color: var(--pd-red);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blog-single__body pre,
.blog-single__body code {
    background: var(--pd-gray-900);
    color: #e2e8f0;
    border-radius: var(--pd-radius-sm);
    font-size: .875rem;
}

.blog-single__body pre {
    padding: 1.25rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.blog-single__body code {
    padding: .2em .45em;
}

/* Tags */
.blog-tag {
    display: inline-flex;
    align-items: center;
    padding: .35rem .9rem;
    background: rgba(232,33,46,.08);
    color: var(--pd-red);
    border-radius: var(--pd-radius-pill);
    font-size: var(--pd-fs-sm);
    font-weight: 600;
    text-decoration: none;
    transition: var(--pd-transition);
}

.blog-tag:hover {
    background: var(--pd-red);
    color: var(--pd-white);
}

/* Share icons */
.share-icon {
    width: 40px;
    height: 40px;
    font-size: .9rem;
}

/* Author CTA */
.blog-single__author-cta {
    background: var(--pd-gray-100);
    border-radius: var(--pd-radius-lg);
    padding: 1.75rem;
    border: 1px solid var(--pd-gray-200);
}

.blog-author__avatar {
    width: 64px;
    height: 64px;
    background: rgba(232,33,46,.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE — BLOG
   ============================================================ */
@media (max-width: 991.98px) {
    .blog-sidebar--sticky { position: static; }
}

@media (max-width: 767.98px) {
    .blog-cat-filter {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: .5rem;
        scrollbar-width: none;
    }
    .blog-cat-filter::-webkit-scrollbar { display: none; }
    .blog-single__title { font-size: 1.8rem; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Story Section */
.about-story__image-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.about-story__main-img {
    width: 100%;
    border-radius: var(--pd-radius-xl);
    object-fit: cover;
    max-height: 520px;
    display: block;
}

.about-story__badge {
    position: absolute;
    bottom: 2rem;
    left: -1.5rem;
    background: var(--pd-red);
    color: var(--pd-white);
    border-radius: var(--pd-radius-lg);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--pd-shadow-brand);
    text-align: center;
    min-width: 120px;
}

.about-story__badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.about-story__badge-label {
    font-size: .75rem;
    opacity: .9;
    line-height: 1.4;
}

.about-story__badge-2 {
    position: absolute;
    top: 2rem;
    right: -1.5rem;
    background: var(--pd-white);
    border-radius: var(--pd-radius-lg);
    padding: 1rem 1.25rem;
    box-shadow: var(--pd-shadow-lg);
    text-align: center;
    min-width: 110px;
    font-size: .8rem;
    color: var(--pd-navy);
}

/* Value Cards */
.about-value-card {
    background: var(--pd-gray-100);
    border: 1.5px solid var(--pd-gray-200);
    border-radius: var(--pd-radius-lg);
    padding: 1.25rem;
    height: 100%;
    transition: var(--pd-transition);
}

.about-value-card:hover {
    border-color: var(--pd-red);
    transform: translateY(-4px);
    box-shadow: var(--pd-shadow-sm);
}

.about-value-card__icon {
    width: 40px;
    height: 40px;
    background: rgba(232,33,46,.08);
    border-radius: var(--pd-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pd-red);
    margin-bottom: .75rem;
    font-size: 1rem;
}

.about-value-card h5 {
    font-size: var(--pd-fs-base);
    font-weight: 700;
    color: var(--pd-navy);
    margin-bottom: .4rem;
}

.about-value-card p {
    font-size: var(--pd-fs-sm);
    color: var(--pd-gray-500);
    line-height: 1.6;
    margin: 0;
}

/* Stats Section */
.about-stats {
    background: var(--pd-navy);
    padding: 4rem 0;
}

.about-stats__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.about-stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    border-right: 1px solid rgba(255,255,255,.1);
}

.about-stat-item:last-child { border-right: none; }

.about-stat-item__icon {
    width: 48px;
    height: 48px;
    background: rgba(232,33,46,.15);
    border-radius: var(--pd-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pd-red);
    font-size: 1.1rem;
    margin: 0 auto 1rem;
}

.about-stat-item__value {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--pd-white);
    line-height: 1;
    margin-bottom: .5rem;
}

.about-stat-item__label {
    font-size: .78rem;
    color: rgba(255,255,255,.6);
    line-height: 1.5;
    margin: 0;
}

/* Mission Cards */
.mission-card {
    border-radius: var(--pd-radius-xl);
    padding: 2.5rem 2rem;
    height: 100%;
    transition: var(--pd-transition);
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--pd-shadow-lg);
}

.mission-card--red {
    background: var(--pd-red);
    color: var(--pd-white);
}

.mission-card--navy {
    background: var(--pd-navy);
    color: var(--pd-white);
}

.mission-card--cream {
    background: var(--pd-cream);
    color: var(--pd-navy);
    border: 1.5px solid var(--pd-cream-dark);
}

.mission-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,.15);
    border-radius: var(--pd-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--pd-white);
    margin-bottom: 1.25rem;
}

.mission-card--cream .mission-card__icon {
    background: rgba(232,33,46,.1);
    color: var(--pd-red);
}

.mission-card h3 {
    font-size: var(--pd-fs-xl);
    font-weight: 700;
    margin-bottom: .75rem;
    color: inherit;
}

.mission-card p {
    font-size: var(--pd-fs-sm);
    line-height: 1.7;
    margin: 0;
    opacity: .9;
}

/* Why List */
.why-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.why-item__number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--pd-red);
    line-height: 1;
    flex-shrink: 0;
    min-width: 42px;
    opacity: .3;
    font-family: var(--pd-font-display);
}

.why-item__title {
    font-size: var(--pd-fs-base);
    font-weight: 700;
    color: var(--pd-navy);
    margin-bottom: .35rem;
}

.why-item__desc {
    font-size: var(--pd-fs-sm);
    color: var(--pd-gray-500);
    line-height: 1.7;
    margin: 0;
}

/* Why image */
.about-why__image-wrap {
    position: relative;
}

.about-why__image-wrap img {
    border-radius: var(--pd-radius-xl);
    width: 100%;
    object-fit: cover;
    max-height: 500px;
}

.about-why__float-card {
    position: absolute;
    bottom: 2rem;
    left: -1.5rem;
    background: var(--pd-white);
    border-radius: var(--pd-radius-lg);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--pd-shadow-lg);
    min-width: 200px;
}

.about-why__float-icon {
    width: 44px;
    height: 44px;
    background: rgba(232,33,46,.08);
    border-radius: var(--pd-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Location */
.about-location__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-location__list li {
    display: flex;
    align-items: flex-start;
    gap: .875rem;
    font-size: var(--pd-fs-sm);
    color: var(--pd-gray-700);
    line-height: 1.6;
}

.about-location__list i {
    margin-top: 3px;
    flex-shrink: 0;
}

.about-location__list a {
    color: var(--pd-gray-700);
    text-decoration: none;
}

.about-location__list a:hover { color: var(--pd-red); }

.about-map {
    border-radius: var(--pd-radius-xl);
    overflow: hidden;
    box-shadow: var(--pd-shadow-lg);
}

/* ============================================================
   RESPONSIVE — ABOUT
   ============================================================ */
@media (max-width: 991.98px) {
    .about-stats__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .about-story__badge   { left: 0; }
    .about-story__badge-2 { right: 0; }
    .about-why__float-card { left: 0; }
}

@media (max-width: 767.98px) {
    .about-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
    .about-stat-item:last-child { border-bottom: none; }
    .about-story__badge,
    .about-story__badge-2 {
        position: static;
        display: inline-block;
        margin-top: 1rem;
    }
    .about-why__float-card { position: static; margin-top: 1rem; }
}

@media (max-width: 575.98px) {
    .about-stats__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   SERVICE PAGE
   ============================================================ */

/* Header icon */
.service-page__header-icon {
    width: 56px;
    height: 56px;
    background: rgba(232,33,46,.15);
    border-radius: var(--pd-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pd-red);
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* Price badge */
.service-page__price-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: var(--pd-white);
    padding: .5rem 1.25rem;
    border-radius: var(--pd-radius-pill);
    font-size: var(--pd-fs-sm);
    font-weight: 600;
}

/* Service body — rich text output */
.service-page__body {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--pd-gray-700);
}

.service-page__body h2,
.service-page__body h3,
.service-page__body h4 {
    color: var(--pd-navy);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-page__body h2 { font-size: 1.5rem; }
.service-page__body h3 { font-size: 1.25rem; }

.service-page__body p  { margin-bottom: 1.25rem; }

.service-page__body ul,
.service-page__body ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.service-page__body li { margin-bottom: .5rem; }

.service-page__body blockquote {
    border-left: 4px solid var(--pd-red);
    padding: 1rem 1.5rem;
    background: var(--pd-cream);
    border-radius: 0 var(--pd-radius-md) var(--pd-radius-md) 0;
    font-style: italic;
    color: var(--pd-gray-700);
    margin: 1.5rem 0;
}

/* Process Steps */
.service-process__title {
    font-size: var(--pd-fs-xl);
    font-weight: 700;
    color: var(--pd-navy);
    margin-bottom: 0;
}

.process-step {
    background: var(--pd-gray-100);
    border: 1.5px solid var(--pd-gray-200);
    border-radius: var(--pd-radius-lg);
    padding: 1.75rem;
    height: 100%;
    transition: var(--pd-transition);
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--pd-red);
    transform: scaleX(0);
    transition: var(--pd-transition);
}

.process-step:hover {
    border-color: var(--pd-red);
    transform: translateY(-4px);
    box-shadow: var(--pd-shadow-sm);
}

.process-step:hover::before { transform: scaleX(1); }

.process-step__number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--pd-red);
    opacity: .15;
    line-height: 1;
    margin-bottom: .75rem;
    font-family: var(--pd-font-display);
}

.process-step h5 {
    font-size: var(--pd-fs-base);
    font-weight: 700;
    color: var(--pd-navy);
    margin-bottom: .5rem;
}

.process-step p {
    font-size: var(--pd-fs-sm);
    color: var(--pd-gray-500);
    line-height: 1.7;
    margin: 0;
}

/* Portfolio in service page */
.service-portfolio .portfolio-card {
    background: var(--pd-white);
    border: 1.5px solid var(--pd-gray-200);
}

.service-portfolio .portfolio-card__title {
    color: var(--pd-navy);
}

.service-portfolio .portfolio-card__cat {
    color: var(--pd-red);
}

/* Service Testimonial */
.service-testimonial__card {
    background: var(--pd-navy);
    border-radius: var(--pd-radius-xl);
    padding: 2.5rem;
    position: relative;
}

.service-testimonial__quote-icon {
    font-size: 2rem;
    color: var(--pd-red);
    margin-bottom: 1rem;
}

.service-testimonial__text {
    font-size: 1rem;
    color: rgba(255,255,255,.85);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 0;
}

.service-testimonial__photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--pd-red);
}

/* ── Service Sidebar ── */
.service-sidebar {
    position: sticky;
    top: calc(var(--navbar-height) + 1rem);
}

.service-sidebar__cta {
    background: var(--pd-navy);
    border-radius: var(--pd-radius-xl);
    padding: 1.75rem;
    color: var(--pd-white);
}

.service-sidebar__cta h4 {
    color: var(--pd-white);
    font-weight: 700;
    margin-bottom: .5rem;
    font-size: var(--pd-fs-lg);
}

.service-sidebar__price {
    display: inline-block;
    background: rgba(232,33,46,.2);
    color: var(--pd-white);
    font-size: var(--pd-fs-sm);
    font-weight: 700;
    padding: .3rem .9rem;
    border-radius: var(--pd-radius-pill);
    margin-bottom: .75rem;
}

.service-sidebar__cta p:not(.service-sidebar__price) {
    color: rgba(255,255,255,.7);
    font-size: var(--pd-fs-sm);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.service-sidebar__widget {
    background: var(--pd-gray-100);
    border: 1px solid var(--pd-gray-200);
    border-radius: var(--pd-radius-xl);
    padding: 1.5rem;
}

.service-sidebar__heading {
    font-size: var(--pd-fs-base);
    font-weight: 700;
    color: var(--pd-navy);
    margin-bottom: 1rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--pd-gray-200);
}

/* Other services list */
.service-sidebar__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-sidebar__list li {
    border-bottom: 1px solid var(--pd-gray-200);
}

.service-sidebar__list li:last-child {
    border-bottom: none;
}

.service-sidebar__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem .25rem;
    color: var(--pd-gray-700);
    font-size: var(--pd-fs-sm);
    font-weight: 500;
    text-decoration: none;
    transition: var(--pd-transition);
}

.service-sidebar__link:hover {
    color: var(--pd-red);
    padding-left: .5rem;
}

/* Why us list */
.service-sidebar__why {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.service-sidebar__why li {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: var(--pd-fs-sm);
    color: var(--pd-gray-700);
}

.service-sidebar__why i { flex-shrink: 0; }

/* ============================================================
   RESPONSIVE — SERVICE PAGE
   ============================================================ */
@media (max-width: 991.98px) {
    .service-sidebar { position: static; }
}


/* ============================================================
   SHOP — GENERAL
   ============================================================ */
.shop-page { background: var(--pd-white); }

/* Category filter */
.shop-cat-filter {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.shop-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem 1.1rem;
    border-radius: var(--pd-radius-pill);
    border: 1.5px solid var(--pd-gray-300);
    background: transparent;
    color: var(--pd-gray-700);
    font-size: var(--pd-fs-sm);
    font-weight: 500;
    text-decoration: none;
    transition: var(--pd-transition);
    white-space: nowrap;
}

.shop-cat-pill:hover,
.shop-cat-pill.active {
    background: var(--pd-red);
    border-color: var(--pd-red);
    color: var(--pd-white);
}

.shop-cat-pill__count {
    background: rgba(0,0,0,.1);
    border-radius: 50rem;
    font-size: .65rem;
    font-weight: 700;
    padding: 1px 6px;
}

/* Shop group heading */
.shop-group__title {
    font-size: var(--pd-fs-xl);
    font-weight: 700;
    color: var(--pd-navy);
    margin-bottom: 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--pd-gray-200);
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.product-card {
    background: var(--pd-white);
    border: 1.5px solid var(--pd-gray-200);
    border-radius: var(--pd-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--pd-transition);
}

.product-card:hover {
    border-color: var(--pd-red);
    transform: translateY(-5px);
    box-shadow: var(--pd-shadow-md);
}

.product-card__image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--pd-gray-100);
    position: relative;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pd-gray-100);
    aspect-ratio: 4/3;
}

.product-card__badge {
    position: absolute;
    top: .75rem;
    left: .75rem;
    background: var(--pd-red);
    color: var(--pd-white);
    font-size: .7rem;
    font-weight: 700;
    padding: .25rem .75rem;
    border-radius: var(--pd-radius-pill);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.product-card__body {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card__cat {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--pd-red);
    margin-bottom: .5rem;
}

.product-card__name {
    font-size: var(--pd-fs-base);
    font-weight: 700;
    color: var(--pd-navy);
    margin-bottom: .75rem;
    line-height: 1.35;
    flex-grow: 1;
}

.product-card__name a { color: inherit; text-decoration: none; }
.product-card__name a:hover { color: var(--pd-red); }

.product-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 .75rem;
}

.product-card__features li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .78rem;
    color: var(--pd-gray-500);
    margin-bottom: .35rem;
    line-height: 1.4;
}

.product-card__features i { margin-top: 2px; flex-shrink: 0; }

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--pd-gray-200);
    background: var(--pd-gray-100);
}

.product-card__price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--pd-navy);
    margin: 0;
}

.product-card__unit {
    font-size: .72rem;
    color: var(--pd-gray-500);
    margin: 0;
}

.btn-add-to-cart {
    width: 42px;
    height: 42px;
    background: var(--pd-red);
    color: var(--pd-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--pd-transition);
    flex-shrink: 0;
}

.btn-add-to-cart:hover {
    background: var(--pd-red-dark);
    transform: scale(1.1);
}

/* ============================================================
   SHOP SIDEBAR
   ============================================================ */
.shop-sidebar__cart {
    background: var(--pd-gray-100);
    border: 1.5px solid var(--pd-gray-200);
    border-radius: var(--pd-radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.shop-sidebar__heading {
    font-size: var(--pd-fs-base);
    font-weight: 700;
    color: var(--pd-navy);
    margin-bottom: 1rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--pd-gray-200);
}

.shop-sidebar__widget {
    background: var(--pd-gray-100);
    border: 1px solid var(--pd-gray-200);
    border-radius: var(--pd-radius-lg);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.shop-sidebar__cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shop-sidebar__cat-list li { margin-bottom: .3rem; }

.shop-sidebar__cat-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .55rem .75rem;
    border-radius: var(--pd-radius-sm);
    color: var(--pd-gray-700);
    font-size: var(--pd-fs-sm);
    font-weight: 500;
    text-decoration: none;
    transition: var(--pd-transition);
}

.shop-sidebar__cat-list a:hover,
.shop-sidebar__cat-list a.active {
    background: rgba(232,33,46,.07);
    color: var(--pd-red);
    padding-left: 1rem;
}

/* WhatsApp CTA */
.shop-sidebar__whatsapp {
    background: #075e54;
    border-radius: var(--pd-radius-lg);
    padding: 1.5rem;
    color: var(--pd-white);
    text-align: center;
}

.shop-sidebar__whatsapp i { color: #25d366; }

.shop-sidebar__whatsapp h5 {
    color: var(--pd-white);
    font-weight: 700;
    margin: .75rem 0 .5rem;
}

.shop-sidebar__whatsapp p {
    color: rgba(255,255,255,.75);
    font-size: var(--pd-fs-sm);
    margin-bottom: 1rem;
}

/* WhatsApp Button */
.btn-whatsapp {
    background: #25d366;
    color: var(--pd-white) !important;
    border: 2px solid #25d366;
    font-weight: 600;
    transition: var(--pd-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

.btn-whatsapp:hover {
    background: #128c7e;
    border-color: #128c7e;
    color: var(--pd-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,.35);
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.shop-product__image {
    border-radius: var(--pd-radius-lg);
    overflow: hidden;
    background: var(--pd-gray-100);
}

.shop-product__image img {
    width: 100%;
    height: auto;
    display: block;
}

.shop-product__image-placeholder {
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--pd-gray-100);
    border-radius: var(--pd-radius-lg);
}

.shop-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.shop-features-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: var(--pd-fs-sm);
    color: var(--pd-gray-700);
    line-height: 1.5;
}

.shop-features-list i { margin-top: 3px; flex-shrink: 0; }

/* Order Panel */
.shop-order-panel {
    background: var(--pd-white);
    border: 1.5px solid var(--pd-gray-200);
    border-radius: var(--pd-radius-xl);
    padding: 2rem;
    position: sticky;
    top: calc(var(--navbar-height) + 1rem);
    box-shadow: var(--pd-shadow-md);
}

.shop-order-panel__price {
    display: flex;
    align-items: baseline;
    gap: .5rem;
    margin-bottom: .5rem;
}

.shop-order-panel__amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--pd-navy);
    line-height: 1;
}

.shop-order-panel__unit {
    font-size: var(--pd-fs-sm);
    color: var(--pd-gray-500);
}

.shop-order-panel__popular {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(232,33,46,.08);
    color: var(--pd-red);
    font-size: .75rem;
    font-weight: 700;
    padding: .3rem .9rem;
    border-radius: var(--pd-radius-pill);
}

.shop-order-panel__subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .75rem;
    background: var(--pd-gray-100);
    border-radius: var(--pd-radius-md);
    font-size: var(--pd-fs-sm);
    color: var(--pd-gray-700);
}

.shop-order-panel__info {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    padding-top: 1rem;
    border-top: 1px solid var(--pd-gray-200);
}

.shop-order-info-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: var(--pd-fs-sm);
    color: var(--pd-gray-600);
}

/* Qty Selector */
.qty-selector {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--pd-gray-300);
    border-radius: var(--pd-radius-md);
    overflow: hidden;
}

.qty-selector--sm .qty-btn { width: 34px; height: 34px; font-size: .8rem; }
.qty-selector--sm .qty-input { width: 50px; height: 34px; font-size: .85rem; }

.qty-btn {
    width: 44px;
    height: 44px;
    background: var(--pd-gray-100);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--pd-gray-700);
    font-size: .9rem;
    transition: var(--pd-transition);
}

.qty-btn:hover {
    background: var(--pd-red);
    color: var(--pd-white);
}

.qty-input {
    width: 70px;
    height: 44px;
    border: none;
    border-left: 1.5px solid var(--pd-gray-300);
    border-right: 1.5px solid var(--pd-gray-300);
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--pd-navy);
    outline: none;
}

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-table-wrap {
    overflow-x: auto;
    border-radius: var(--pd-radius-lg);
    border: 1px solid var(--pd-gray-200);
}

.cart-table { border-collapse: collapse; }

.cart-table thead th {
    background: var(--pd-gray-100);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--pd-gray-500);
    padding: .875rem 1rem;
    border-bottom: 1px solid var(--pd-gray-200);
    white-space: nowrap;
}

.cart-table tbody td {
    padding: 1rem;
    border-bottom: 1px solid var(--pd-gray-200);
    vertical-align: middle;
}

.cart-table tbody tr:last-child td { border-bottom: none; }

.cart-product-img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: var(--pd-radius-sm);
    flex-shrink: 0;
}

.cart-product-img-placeholder {
    width: 64px;
    height: 64px;
    background: var(--pd-gray-100);
    border-radius: var(--pd-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-product-name {
    font-weight: 600;
    font-size: var(--pd-fs-sm);
    color: var(--pd-navy);
}

.cart-price {
    font-size: var(--pd-fs-sm);
    color: var(--pd-gray-700);
    font-weight: 500;
}

.cart-remove-btn {
    width: 32px;
    height: 32px;
    background: rgba(220,53,69,.1);
    border: none;
    border-radius: 50%;
    color: #dc3545;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    transition: var(--pd-transition);
    margin: 0 auto;
}

.cart-remove-btn:hover {
    background: #dc3545;
    color: var(--pd-white);
}

/* Cart Summary */
.cart-summary {
    background: var(--pd-gray-100);
    border: 1.5px solid var(--pd-gray-200);
    border-radius: var(--pd-radius-xl);
    padding: 1.75rem;
    position: sticky;
    top: calc(var(--navbar-height) + 1rem);
}

.cart-summary__title {
    font-size: var(--pd-fs-lg);
    font-weight: 700;
    color: var(--pd-navy);
    margin-bottom: 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--pd-gray-200);
}

.cart-summary__line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: .6rem 0;
    font-size: var(--pd-fs-sm);
    color: var(--pd-gray-700);
    border-bottom: 1px solid var(--pd-gray-200);
}

.cart-summary__line--note {
    display: block;
    font-size: .75rem;
    color: var(--pd-gray-500);
    padding: .75rem 0;
}

.cart-summary__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0 0;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--pd-navy);
}

.cart-summary__security {
    font-size: .75rem;
    color: var(--pd-gray-500);
    text-align: center;
    margin: 0;
}

.empty-cart-icon {
    width: 100px;
    height: 100px;
    background: var(--pd-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cart nav badge */
.cart-nav-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--pd-red);
    color: var(--pd-white);
    font-size: .65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout-form-card {
    background: var(--pd-white);
    border: 1.5px solid var(--pd-gray-200);
    border-radius: var(--pd-radius-xl);
    padding: 2.5rem;
    box-shadow: var(--pd-shadow-sm);
}

.checkout-form-card__title {
    font-size: var(--pd-fs-xl);
    font-weight: 700;
    color: var(--pd-navy);
    margin-bottom: .4rem;
}

.checkout-form-card__sub {
    color: var(--pd-gray-500);
    font-size: var(--pd-fs-sm);
    margin-bottom: 1.75rem;
}

.checkout-form-card .form-control {
    border: 1.5px solid var(--pd-gray-200);
    border-radius: var(--pd-radius-md);
    padding: .75rem 1rem .75rem 2.75rem;
    font-size: var(--pd-fs-sm);
    background: var(--pd-gray-100);
    transition: var(--pd-transition);
}

.checkout-form-card .form-control:focus {
    border-color: var(--pd-red);
    background: var(--pd-white);
    box-shadow: 0 0 0 3px rgba(232,33,46,.1);
}

.checkout-whatsapp-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(37,211,102,.07);
    border: 1px solid rgba(37,211,102,.2);
    border-radius: var(--pd-radius-md);
    padding: 1rem 1.25rem;
}

/* Order Summary (checkout) */
.checkout-order-summary {
    background: var(--pd-navy);
    border-radius: var(--pd-radius-xl);
    padding: 2rem;
    color: var(--pd-white);
    position: sticky;
    top: calc(var(--navbar-height) + 1rem);
}

.checkout-order-summary__title {
    color: var(--pd-white);
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.checkout-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.checkout-item:last-child { border-bottom: none; }

.checkout-item__name {
    font-size: var(--pd-fs-sm);
    font-weight: 600;
    color: var(--pd-white);
    margin-bottom: .2rem;
}

.checkout-item__meta {
    font-size: .75rem;
    color: rgba(255,255,255,.55);
    margin: 0;
}

.checkout-item__subtotal {
    font-size: var(--pd-fs-sm);
    font-weight: 700;
    color: var(--pd-white);
    white-space: nowrap;
}

.checkout-order-summary__total {
    display: flex;
    justify-content: space-between;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--pd-white);
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,.2);
}

.checkout-order-summary__note {
    font-size: .78rem;
    color: rgba(255,255,255,.55);
    margin-top: 1rem;
    line-height: 1.6;
}

/* ============================================================
   RESPONSIVE — SHOP
   ============================================================ */
@media (max-width: 991.98px) {
    .shop-order-panel,
    .cart-summary,
    .checkout-order-summary { position: static; }
}

@media (max-width: 767.98px) {
    .shop-cat-filter {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: .5rem;
        scrollbar-width: none;
    }
    .shop-cat-filter::-webkit-scrollbar { display: none; }
    .cart-table { min-width: 600px; }
    .checkout-form-card { padding: 1.5rem; }
}

/* ============================================================
   WHATSAPP REDIRECT PAGE
   ============================================================ */
.whatsapp-redirect-page {
    background: var(--pd-gray-100);
    min-height: calc(100vh - var(--navbar-height));
    display: flex;
    align-items: center;
}

.min-vh-page {
    min-height: calc(100vh - var(--navbar-height) - 4rem);
}

.whatsapp-redirect__card {
    background: var(--pd-white);
    border: 1.5px solid var(--pd-gray-200);
    border-radius: var(--pd-radius-xl);
    padding: 2.5rem;
    box-shadow: var(--pd-shadow-lg);
}

/* Icon */
.whatsapp-success__icon {
    width: 80px;
    height: 80px;
    background: rgba(37,211,102,.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #25d366;
}

/* Title */
.whatsapp-redirect__title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--pd-navy);
    margin-bottom: .75rem;
}

/* Description */
.whatsapp-redirect__desc {
    font-size: var(--pd-fs-base);
    color: var(--pd-gray-600);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

/* Large WhatsApp button */
.btn-whatsapp--large {
    font-size: 1.1rem;
    padding: 1rem 2rem !important;
    box-shadow: 0 8px 30px rgba(37,211,102,.35);
    animation: waPulse 2s infinite;
}

@keyframes waPulse {
    0%   { box-shadow: 0 8px 30px rgba(37,211,102,.35); }
    50%  { box-shadow: 0 8px 40px rgba(37,211,102,.6); }
    100% { box-shadow: 0 8px 30px rgba(37,211,102,.35); }
}

.btn-whatsapp--large:hover {
    animation: none;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37,211,102,.5);
}

/* Countdown */
.whatsapp-redirect__auto {
    font-size: .8rem;
    color: var(--pd-gray-500);
}

/* What happens next */
.whatsapp-next-steps {
    background: var(--pd-gray-100);
    border-radius: var(--pd-radius-lg);
    padding: 1.25rem 1.5rem;
    text-align: left;
}

.whatsapp-next-steps__label {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--pd-gray-500);
    margin-bottom: .875rem;
}

.whatsapp-next-steps__list {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.whatsapp-next-step {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: var(--pd-fs-sm);
    color: var(--pd-gray-700);
    line-height: 1.5;
}

.whatsapp-next-step i { margin-top: 2px; flex-shrink: 0; }