/* ==========================================================================
   INNER-PAGES-V2.CSS — ESdesire V2 Inner Page Styles
   Extends homepage-v2.css with page-specific components
   ========================================================================== */

/* ── WhatsApp Float ── */
.v2-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .3);
}
.v2-whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, .4);
    color: #fff;
}

/* ── Page Hero ── */
.v2-page-hero {
    background: var(--v2-gray-900, #171717);
    padding: 140px 0 64px;
    position: relative;
    overflow: hidden;
}
.v2-page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--v2-green, #80b737), var(--v2-purple, #8b4486), var(--v2-blue, #118bbd));
}
.v2-page-hero .container {
    position: relative;
    z-index: 1;
}
.v2-page-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--v2-green, #80b737);
    font-family: var(--v2-font, 'Roboto', sans-serif);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.v2-page-hero-eyebrow .badge-dot {
    width: 8px;
    height: 8px;
    background: var(--v2-green, #80b737);
    display: inline-block;
}
.v2-page-hero h1 {
    font-family: var(--v2-font-head, 'Outfit', sans-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--v2-white, #fff);
    line-height: 1.15;
    margin-bottom: 16px;
    max-width: 800px;
}
.v2-page-hero h1 span {
    color: var(--v2-green, #80b737);
}
.v2-page-hero-copy {
    color: var(--v2-gray-400, #a3a3a3);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 640px;
    margin-bottom: 24px;
}
.v2-page-hero-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.v2-page-hero-meta-card {
    background: rgba(255,255,255,.05);
    border-left: 3px solid var(--v2-green, #80b737);
    padding: 14px 20px;
    min-width: 200px;
    flex: 1;
    max-width: 280px;
}
.v2-page-hero-meta-card:nth-child(2) { border-color: var(--v2-purple, #8b4486); }
.v2-page-hero-meta-card:nth-child(3) { border-color: var(--v2-blue, #118bbd); }
.v2-page-hero-meta-card strong {
    display: block;
    color: var(--v2-white, #fff);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}
.v2-page-hero-meta-card span {
    color: var(--v2-gray-400, #a3a3a3);
    font-size: 13px;
    line-height: 1.5;
}

/* Breadcrumbs */
.v2-breadcrumb {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 0;
    font-size: 13px;
}
.v2-breadcrumb li {
    color: var(--v2-gray-400, #a3a3a3);
}
.v2-breadcrumb li a {
    color: var(--v2-gray-400, #a3a3a3);
    transition: color .2s;
}
.v2-breadcrumb li a:hover {
    color: var(--v2-green, #80b737);
}
.v2-breadcrumb .separator {
    margin: 0 8px;
    font-size: 10px;
    color: var(--v2-gray-500, #737373);
}
.v2-breadcrumb .active {
    color: var(--v2-white, #fff);
}

/* ── Global Dark-Theme Text Overrides ──
   Bootstrap sets dark text by default; these ensure
   all inner-page text is light on our dark backgrounds. */
body.v2 h1, body.v2 h2, body.v2 h3,
body.v2 h4, body.v2 h5, body.v2 h6 {
    color: var(--v2-white, #fff);
}
body.v2 p, body.v2 li, body.v2 main span,
body.v2 label, body.v2 td, body.v2 th,
body.v2 dt, body.v2 dd, body.v2 figcaption,
body.v2 blockquote {
    color: var(--v2-gray-400, #a3a3a3);
}
body.v2 strong, body.v2 b {
    color: var(--v2-white, #fff);
}
body.v2 main a {
    color: var(--v2-gray-300, #d4d4d4);
}
body.v2 main a:hover {
    color: var(--v2-green, #80b737);
}

/* ── Section Styles ── */
.v2-inner-section {
    padding: 80px 0;
}
.v2-inner-section--light {
    background: var(--v2-gray-900, #171717);
    position: relative;
    z-index: 1;
}
.v2-inner-section--dark {
    background: transparent;
    position: relative;
    z-index: 1;
}

.v2-section-badge {
    display: inline-block;
    color: var(--v2-green, #80b737);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.v2-section-title {
    font-family: var(--v2-font-head, 'Outfit', sans-serif);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--v2-white, #fff);
    margin-bottom: 12px;
}
.v2-section-subtitle {
    color: var(--v2-gray-400, #a3a3a3);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 640px;
    margin-bottom: 40px;
}
.v2-section-heading-wrap {
    margin-bottom: 40px;
}
.v2-section-heading-wrap.text-left {
    text-align: left;
}

/* ── Card System ── */
.v2-card {
    background: var(--v2-gray-900, #171717);
    border: 1px solid var(--v2-gray-800, #262626);
    padding: 28px;
    transition: border-color .3s, transform .2s;
}
.v2-card:hover {
    border-color: var(--v2-green, #80b737);
    transform: translateY(-2px);
}

/* Service Card */
.v2-service-card {
    background: var(--v2-gray-900, #171717);
    border: 1px solid var(--v2-gray-800, #262626);
    padding: 32px;
    transition: border-color .3s, transform .2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.v2-service-card:hover {
    border-color: var(--v2-green, #80b737);
}
.v2-service-card .icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(128, 183, 55, .1);
    color: var(--v2-green, #80b737);
    font-size: 20px;
    margin-bottom: 20px;
}
.v2-service-card h5 {
    font-family: var(--v2-font-head, 'Outfit', sans-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--v2-white, #fff);
    margin-bottom: 12px;
}
.v2-service-card p {
    color: var(--v2-gray-400, #a3a3a3);
    font-size: .9rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 16px;
}
.v2-service-card .read-more,
.v2-blog-card .read-more,
.v2-portfolio-card .read-more {
    color: var(--v2-green, #80b737);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
}
.v2-service-card .read-more:hover,
.v2-blog-card .read-more:hover,
.v2-portfolio-card .read-more:hover {
    gap: 10px;
}

/* Blog Grid */
.v2-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.v2-blog-grid-item {
    display: flex;
}
@media (max-width: 1199px) {
    .v2-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .v2-blog-grid { grid-template-columns: 1fr; }
}

/* Blog Card */
.v2-blog-card {
    background: var(--v2-gray-900, #171717);
    border: 1px solid var(--v2-gray-800, #262626);
    overflow: hidden;
    transition: border-color .3s, transform .2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.v2-blog-card:hover {
    border-color: var(--v2-green, #80b737);
}
.v2-blog-card .blog-img,
.v2-blog-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.v2-blog-card .blog-img img,
.v2-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.v2-blog-card:hover .blog-img img,
.v2-blog-card:hover .v2-blog-img img {
    transform: scale(1.05);
}
.v2-blog-card .category-badge,
.v2-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--v2-green, #80b737);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
}
body.v2 .v2-category-badge {
    color: #fff;
}
.v2-blog-card .blog-body,
.v2-blog-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.v2-blog-card .blog-meta,
.v2-blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 12px;
    color: var(--v2-gray-500, #737373);
}
.v2-blog-card .blog-meta i {
    margin-right: 4px;
}
.v2-blog-card h5 {
    font-family: var(--v2-font-head, 'Outfit', sans-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--v2-white, #fff);
    margin-bottom: 10px;
    line-height: 1.4;
}
.v2-blog-card h5 a {
    color: inherit;
    transition: color .2s;
}
.v2-blog-card h5 a:hover {
    color: var(--v2-green, #80b737);
}
.v2-blog-card p {
    color: var(--v2-gray-400, #a3a3a3);
    font-size: .875rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 16px;
}

/* Portfolio Card */
.v2-portfolio-card {
    position: relative;
    overflow: hidden;
    background: var(--v2-gray-900, #171717);
    border: 1px solid var(--v2-gray-800, #262626);
    transition: border-color .3s;
    height: 100%;
}
.v2-portfolio-card:hover {
    border-color: var(--v2-green, #80b737);
}
.v2-portfolio-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform .4s;
}
.v2-portfolio-card:hover img {
    transform: scale(1.05);
}
.v2-portfolio-card .overlay,
.v2-portfolio-overlay {
    padding: 20px;
}
.v2-portfolio-card .category,
.v2-portfolio-overlay .v2-category-badge {
    display: inline-block;
    color: var(--v2-green, #80b737);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    background: none;
    padding: 0;
    position: static;
}
.v2-portfolio-card h5 {
    font-family: var(--v2-font-head, 'Outfit', sans-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--v2-white, #fff);
    margin-bottom: 8px;
}
.v2-portfolio-card p {
    color: var(--v2-gray-400, #a3a3a3);
    font-size: .85rem;
    line-height: 1.6;
    margin-bottom: 12px;
}
.v2-portfolio-card .portfolio-arrow,
.v2-portfolio-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--v2-green, #80b737);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .3s, transform .3s;
}
.v2-portfolio-card:hover .portfolio-arrow,
.v2-portfolio-card:hover .v2-portfolio-arrow {
    opacity: 1;
    transform: translateY(0);
}

/* ── Detail Page Layout ── */
.v2-detail-section {
    padding: 60px 0 80px;
}
.v2-detail-card {
    background: var(--v2-gray-900, #171717);
    border: 1px solid var(--v2-gray-800, #262626);
    padding: 32px;
    margin-bottom: 24px;
}
.v2-detail-card h2,
.v2-detail-header h2 {
    font-family: var(--v2-font-head, 'Outfit', sans-serif);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--v2-white, #fff);
    margin-bottom: 16px;
}
.v2-detail-chip {
    display: inline-block;
    background: rgba(128, 183, 55, .1);
    color: var(--v2-green, #80b737);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 14px;
    margin-bottom: 16px;
}
.v2-detail-media {
    margin-bottom: 24px;
    overflow: hidden;
}
.v2-detail-media img {
    width: 100%;
    height: auto;
}

/* Rich Content */
.v2-rich-copy {
    color: var(--v2-gray-400, #a3a3a3);
    font-size: .95rem;
    line-height: 1.85;
}
.v2-rich-copy h1, .v2-rich-copy h2, .v2-rich-copy h3,
.v2-rich-copy h4, .v2-rich-copy h5, .v2-rich-copy h6 {
    color: var(--v2-white, #fff);
    font-family: var(--v2-font-head, 'Outfit', sans-serif);
    margin: 24px 0 12px;
}
.v2-rich-copy p { margin-bottom: 16px; }
.v2-rich-copy img { margin: 16px 0; }
.v2-rich-copy ul, .v2-rich-copy ol {
    padding-left: 24px;
    margin-bottom: 16px;
}
.v2-rich-copy li { margin-bottom: 6px; }
.v2-rich-copy a {
    color: var(--v2-green, #80b737);
    text-decoration: underline;
}
.v2-rich-copy blockquote {
    border-left: 3px solid var(--v2-green, #80b737);
    padding: 16px 24px;
    margin: 24px 0;
    background: rgba(128,183,55,.05);
    color: var(--v2-gray-400, #a3a3a3);
}
.v2-rich-copy table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}
.v2-rich-copy th, .v2-rich-copy td {
    border: 1px solid var(--v2-gray-800, #262626);
    padding: 10px 14px;
    text-align: left;
}
.v2-rich-copy th {
    background: var(--v2-gray-800, #262626);
    color: var(--v2-white, #fff);
    font-weight: 600;
}

/* Sidebar Cards */
.v2-sidebar-card {
    background: var(--v2-gray-900, #171717);
    border: 1px solid var(--v2-gray-800, #262626);
    padding: 24px;
    margin-bottom: 24px;
}
.v2-sidebar-card h5,
.v2-sidebar-title {
    font-family: var(--v2-font-head, 'Outfit', sans-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--v2-white, #fff);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--v2-gray-800, #262626);
}

/* Detail List */
.v2-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.v2-detail-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--v2-gray-800, #262626);
    font-size: .875rem;
}
.v2-detail-list li:last-child { border-bottom: 0; }
.v2-detail-list li strong {
    color: var(--v2-white, #fff);
    font-weight: 600;
}
.v2-detail-list li span {
    color: var(--v2-gray-400, #a3a3a3);
    text-align: right;
}

/* Recent Posts Sidebar */
.v2-recent-entry {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--v2-gray-800, #262626);
}
.v2-recent-entry:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.v2-recent-entry-thumb,
.v2-recent-thumb {
    width: 70px;
    height: 55px;
    flex-shrink: 0;
    overflow: hidden;
}
.v2-recent-entry-thumb img,
.v2-recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.v2-recent-entry-copy a,
.v2-recent-copy a {
    display: block;
    font-size: .825rem;
    font-weight: 600;
    color: var(--v2-white, #fff);
    line-height: 1.4;
    margin-bottom: 4px;
    transition: color .2s;
}
.v2-recent-entry-copy a:hover,
.v2-recent-copy a:hover {
    color: var(--v2-green, #80b737);
}
.v2-recent-entry-copy span,
.v2-recent-copy span {
    font-size: .75rem;
    color: var(--v2-gray-500, #737373);
}
.v2-recent-entry-copy span i,
.v2-recent-copy span i {
    margin-right: 4px;
}

/* Share Pills */
.v2-share-row {
    display: flex;
    gap: 10px;
}
.v2-share-row a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--v2-gray-800, #262626);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--v2-gray-400, #a3a3a3);
    font-size: 16px;
    transition: background .2s, color .2s, border-color .2s;
}
.v2-share-row a:hover {
    background: var(--v2-green, #80b737);
    border-color: var(--v2-green, #80b737);
    color: #fff;
}

/* Tags */
.v2-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.v2-tags-row span {
    background: var(--v2-gray-800, #262626);
    color: var(--v2-gray-400, #a3a3a3);
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 500;
}

/* Category Pills */
.v2-pill-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.v2-pill-list li {
    margin-bottom: 6px;
}
.v2-pill-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: var(--v2-gray-800, #262626);
    color: var(--v2-gray-400, #a3a3a3);
    font-size: .85rem;
    transition: background .2s, color .2s;
}
.v2-pill-link:hover, .v2-pill-link.active {
    background: var(--v2-green, #80b737);
    color: #fff;
}
.v2-pill-link span {
    font-weight: 600;
}

/* Newsletter Card */
.v2-newsletter-card {
    background: linear-gradient(135deg, var(--v2-gray-900, #171717), var(--v2-gray-800, #262626));
    border: 1px solid var(--v2-gray-800, #262626);
    padding: 28px;
    text-align: center;
    margin-bottom: 24px;
}
.v2-newsletter-card .icon,
.v2-newsletter-icon {
    font-size: 36px;
    color: var(--v2-green, #80b737);
    margin-bottom: 14px;
}
.v2-newsletter-card h5,
.v2-newsletter-inner h5 {
    color: var(--v2-white, #fff);
    font-family: var(--v2-font-head, 'Outfit', sans-serif);
    font-weight: 700;
    margin-bottom: 8px;
}
.v2-newsletter-card p,
.v2-newsletter-inner p {
    color: var(--v2-gray-400, #a3a3a3);
    font-size: .85rem;
    margin-bottom: 16px;
}
.v2-newsletter-form {
    display: flex;
    overflow: hidden;
}
.v2-newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--v2-gray-800, #262626);
    background: var(--v2-black, #000);
    color: var(--v2-white, #fff);
    font-size: .875rem;
    outline: none;
}
.v2-newsletter-form input::placeholder {
    color: var(--v2-gray-500, #737373);
}
.v2-newsletter-form button {
    background: var(--v2-green, #80b737);
    border: none;
    color: #fff;
    padding: 10px 16px;
    cursor: pointer;
    transition: background .2s;
}
.v2-newsletter-form button:hover {
    background: #6da02e;
}

/* Sidebar Search */
.v2-search-row {
    display: flex;
    overflow: hidden;
    border: 1px solid var(--v2-gray-800, #262626);
}
.v2-search-row input {
    flex: 1;
    padding: 10px 14px;
    background: var(--v2-black, #000);
    border: none;
    color: var(--v2-white, #fff);
    font-size: .875rem;
    outline: none;
}
.v2-search-row input::placeholder {
    color: var(--v2-gray-500, #737373);
}
.v2-search-row button {
    background: var(--v2-green, #80b737);
    border: none;
    color: #fff;
    padding: 10px 16px;
    cursor: pointer;
}

/* ── Comments ── */
.v2-comment-thread {
    margin-top: 24px;
}
.v2-comment-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--v2-gray-800, #262626);
}
.v2-comment-item:last-child { border-bottom: 0; }
.v2-comment-avatar {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--v2-gray-800, #262626);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--v2-gray-500, #737373);
    font-size: 18px;
}
.v2-comment-copy h6 {
    color: var(--v2-white, #fff);
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.v2-comment-copy span {
    color: var(--v2-gray-500, #737373);
    font-size: .75rem;
    display: block;
    margin-bottom: 8px;
}
.v2-comment-copy span i { margin-right: 4px; }
.v2-comment-copy p {
    color: var(--v2-gray-400, #a3a3a3);
    font-size: .875rem;
    line-height: 1.7;
    margin: 0;
}

/* ── Forms ── */
.v2-comment-form-card .v2-sidebar-title {
    margin-bottom: 22px;
}

.v2-comment-form {
    --bs-gutter-x: 18px;
    --bs-gutter-y: 18px;
}

.v2-comment-form .row {
    row-gap: 2px;
}

.v2-comment-form .form-control {
    min-height: 54px;
}

.v2-comment-form textarea.form-control {
    min-height: 168px;
}

.v2-comment-form .col-md-12:last-child {
    padding-top: 6px;
}

.v2-form .form-control {
    background: var(--v2-black, #000);
    border: 1px solid var(--v2-gray-800, #262626);
    color: var(--v2-white, #fff);
    padding: 12px 16px;
    font-size: .9rem;
    border-radius: 0;
    transition: border-color .2s;
}
.v2-form .form-control::placeholder {
    color: var(--v2-gray-500, #737373);
}
.v2-form .form-control:focus {
    border-color: var(--v2-green, #80b737);
    box-shadow: none;
    outline: none;
}
.v2-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ── Buttons ── */
.v2-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--v2-green, #80b737);
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: .875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background .2s, transform .1s;
}
.v2-btn-primary:hover {
    background: #6da02e;
    color: #fff;
}
.v2-btn-primary:active {
    transform: scale(.98);
}

/* ── Pagination ── */
.v2-inner-section .pagination,
body.v2 .pagination {
    display: flex;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
    justify-content: center;
}
body.v2 .page-item .page-link {
    background: var(--v2-gray-900, #171717);
    border: 1px solid var(--v2-gray-800, #262626);
    color: var(--v2-gray-400, #a3a3a3);
    padding: 8px 14px;
    font-size: .85rem;
    border-radius: 0;
    transition: all .2s;
}
body.v2 .page-item .page-link:hover {
    background: var(--v2-gray-800, #262626);
    color: var(--v2-white, #fff);
    border-color: var(--v2-gray-700, #404040);
}
body.v2 .page-item.active .page-link {
    background: var(--v2-green, #80b737);
    border-color: var(--v2-green, #80b737);
    color: #fff;
}
body.v2 .page-item.disabled .page-link {
    background: var(--v2-gray-900, #171717);
    border-color: var(--v2-gray-800, #262626);
    color: var(--v2-gray-700, #404040);
}

/* ── Overview Strip (Services page) ── */
.v2-overview-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
.v2-overview-card {
    background: var(--v2-gray-900, #171717);
    border-left: 3px solid var(--v2-green, #80b737);
    padding: 20px 24px;
}
.v2-overview-card:nth-child(2) { border-color: var(--v2-purple, #8b4486); }
.v2-overview-card:nth-child(3) { border-color: var(--v2-blue, #118bbd); }
.v2-overview-card strong {
    display: block;
    color: var(--v2-white, #fff);
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.v2-overview-card span {
    color: var(--v2-gray-400, #a3a3a3);
    font-size: .85rem;
    line-height: 1.6;
}

/* ── About Page ── */
.v2-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.v2-about-story-copy {
    color: var(--v2-gray-400, #a3a3a3);
    font-size: .95rem;
    line-height: 1.85;
    margin-bottom: 24px;
}
.v2-about-story-copy p { margin-bottom: 14px; }
.v2-value-point {
    background: var(--v2-gray-900, #171717);
    border-left: 3px solid var(--v2-green, #80b737);
    padding: 12px 18px;
    margin-bottom: 12px;
    color: var(--v2-gray-400, #a3a3a3);
    font-size: .875rem;
    line-height: 1.6;
}
.v2-value-point:nth-child(2) { border-color: var(--v2-purple, #8b4486); }
.v2-value-point:nth-child(3) { border-color: var(--v2-blue, #118bbd); }
.v2-value-point strong {
    color: var(--v2-white, #fff);
}
.v2-about-figure img {
    width: 100%;
    height: auto;
}
.v2-metric-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.v2-metric-tile {
    background: var(--v2-gray-900, #171717);
    border: 1px solid var(--v2-gray-800, #262626);
    padding: 20px;
    text-align: center;
}
.v2-metric-tile strong {
    display: block;
    font-family: var(--v2-font-head, 'Outfit', sans-serif);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--v2-green, #80b737);
    margin-bottom: 4px;
}
.v2-metric-tile span {
    color: var(--v2-gray-400, #a3a3a3);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Value Cards Grid */
.v2-value-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.v2-value-card {
    background: var(--v2-gray-900, #171717);
    border: 1px solid var(--v2-gray-800, #262626);
    padding: 28px;
    transition: border-color .3s;
}
.v2-value-card:hover {
    border-color: var(--v2-green, #80b737);
}
.v2-value-card h3 {
    font-family: var(--v2-font-head, 'Outfit', sans-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--v2-white, #fff);
    margin-bottom: 10px;
}
.v2-value-card p {
    color: var(--v2-gray-400, #a3a3a3);
    font-size: .85rem;
    line-height: 1.7;
    margin: 0;
}

/* Leadership Grid */
.v2-leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}
.v2-leadership-card {
    background: var(--v2-gray-900, #171717);
    border: 1px solid var(--v2-gray-800, #262626);
    padding: 28px;
    text-align: center;
    transition: border-color .3s;
}
.v2-leadership-card:hover {
    border-color: var(--v2-green, #80b737);
}
.v2-leadership-card .photo {
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
    overflow: hidden;
    border-radius: 50%;
}
.v2-leadership-card .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.v2-leadership-card .photo span {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--v2-gray-800, #262626);
    color: var(--v2-gray-500, #737373);
    font-size: 36px;
}
.v2-leadership-card h3 {
    font-family: var(--v2-font-head, 'Outfit', sans-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--v2-white, #fff);
    margin-bottom: 4px;
}
.v2-leadership-card p {
    color: var(--v2-gray-500, #737373);
    font-size: .825rem;
    margin-bottom: 12px;
}
.v2-leadership-card .links {
    display: flex;
    justify-content: center;
    gap: 8px;
}
.v2-leadership-card .links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--v2-gray-800, #262626);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--v2-gray-400, #a3a3a3);
    font-size: 13px;
    transition: background .2s, color .2s, border-color .2s;
}
.v2-leadership-card .links a:hover {
    background: var(--v2-green, #80b737);
    border-color: var(--v2-green, #80b737);
    color: #fff;
}

/* ── Portfolio Filter ── */
.v2-portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}
.v2-filter-btn {
    background: var(--v2-gray-900, #171717);
    border: 1px solid var(--v2-gray-800, #262626);
    color: var(--v2-gray-400, #a3a3a3);
    padding: 8px 20px;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all .2s;
}
.v2-filter-btn:hover, .v2-filter-btn.active {
    background: var(--v2-green, #80b737);
    border-color: var(--v2-green, #80b737);
    color: #fff;
}

/* ── Portfolio Lightbox ── */
.v2-lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,.92);
    display: none;
    align-items: center;
    justify-content: center;
}
.v2-lightbox-overlay.active {
    display: flex;
}
.v2-lightbox-overlay img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
}
.v2-lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    color: var(--v2-white, #fff);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10;
}
.v2-lightbox-nav span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--v2-white, #fff);
    font-size: 2rem;
    cursor: pointer;
    padding: 12px;
    z-index: 10;
}
.v2-lightbox-prev { left: 24px; }
.v2-lightbox-next { right: 24px; }

/* ── Detail Gallery ── */
.v2-gallery-card .row img,
.v2-gallery-image {
    border: 1px solid var(--v2-gray-800, #262626);
    transition: opacity .2s;
    cursor: pointer;
}
.v2-gallery-card .row img:hover,
.v2-gallery-image:hover {
    opacity: .85;
}
.v2-gallery-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border: 1px solid var(--v2-gray-800, #262626);
    transition: opacity .2s;
    cursor: pointer;
}
.v2-gallery-grid img:hover {
    opacity: .85;
}

/* ── Blog Article Meta ── */
.v2-article-meta {
    display: flex;
    gap: 20px;
    color: var(--v2-gray-500, #737373);
    font-size: .825rem;
    margin-bottom: 20px;
}
.v2-article-meta i { margin-right: 4px; }

/* ── Work Management / Product Showcase ── */
.v2-showcase-section {
    padding: 64px 0;
    border-bottom: 1px solid var(--v2-gray-800, #262626);
}
.v2-showcase-section:last-child {
    border-bottom: 0;
}
.v2-showcase-section h2 {
    font-family: var(--v2-font-head, 'Outfit', sans-serif);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--v2-white, #fff);
    margin-bottom: 16px;
}
.v2-showcase-section p {
    color: var(--v2-gray-400, #a3a3a3);
    font-size: .95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}
.v2-showcase-img img {
    width: 100%;
    height: auto;
    border: 1px solid var(--v2-gray-800, #262626);
}
.v2-btn-demo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--v2-green, #80b737);
    color: #fff;
    padding: 10px 24px;
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: background .2s;
}
.v2-btn-demo:hover {
    background: #6da02e;
    color: #fff;
}
.v2-demo-credentials {
    background: var(--v2-gray-900, #171717);
    border: 1px solid var(--v2-gray-800, #262626);
    padding: 16px 20px;
    margin-bottom: 20px;
    font-size: .85rem;
    color: var(--v2-gray-400, #a3a3a3);
}
.v2-demo-credentials p {
    margin-bottom: 4px;
}
.v2-demo-credentials strong {
    color: var(--v2-white, #fff);
}

/* ── Alert / Flash Messages ── */
.v2-alert {
    padding: 14px 20px;
    margin-bottom: 24px;
    font-size: .875rem;
    border-left: 3px solid;
}
.v2-alert--success {
    background: rgba(128, 183, 55, .1);
    border-color: var(--v2-green, #80b737);
    color: var(--v2-green, #80b737);
}
.v2-alert--error {
    background: rgba(239, 68, 68, .1);
    border-color: #ef4444;
    color: #ef4444;
}

/* ── Fix Bootstrap overrides for v2 ── */
body.v2 .container {
    max-width: 1400px;
}
body.v2 .row { --bs-gutter-x: 1.5rem; }
body.v2 a:not(.v2-btn):not(.v2-btn-primary):not(.v2-btn-demo) {
    text-decoration: none;
}

/* Video Link */
.v2-video-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--v2-green, #80b737);
    font-weight: 600;
    font-size: .9rem;
    margin-top: 16px;
    transition: gap .2s;
}
.v2-video-link:hover { gap: 14px; }
.v2-video-link i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(128,183,55,.15);
    color: var(--v2-green, #80b737);
    font-size: 14px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .v2-page-hero { padding: 120px 0 48px; }
    .v2-page-hero h1 { font-size: 1.8rem; }
    .v2-page-hero-meta { flex-direction: column; gap: 12px; }
    .v2-page-hero-meta-card { max-width: 100%; }
    .v2-about-grid { grid-template-columns: 1fr; gap: 32px; }
    .v2-overview-strip { grid-template-columns: 1fr; }
    .v2-leadership-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .v2-inner-section { padding: 48px 0; }
    .v2-detail-card { padding: 20px; }
    .v2-sidebar-card { padding: 18px; }
    .v2-comment-form {
        --bs-gutter-y: 16px;
    }
    .v2-leadership-grid { grid-template-columns: 1fr; }
    .v2-metric-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .v2-whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
}

@media (max-width: 640px) {
    .v2-page-hero { padding: 100px 0 36px; }
    .v2-page-hero h1 { font-size: 1.5rem; }
}
