/* ============================================================
   HOME-NEW.CSS  —  My Claim Sathi New Homepage Template
   ============================================================ */

/* ── Root Variables ── */
:root {
    --navy:        #1B2B6B;
    --navy-dark:   #152257;
    --green:       #2D8A4E;
    --green-light: #3DB868;
    --red-badge:   #E53935;
    --text-dark:   #1a1a2e;
    --text-gray:   #555;
    --text-light:  #888;
    --bg-light:    #F5F7FF;
    --border:      #E0E6F0;
    --white:       #FFFFFF;
    --shadow:      0 2px 16px rgba(27,43,107,0.10);
    --radius:      8px;
}

/* ── Reset for new template sections (scoped — does NOT affect inner page content) ── */
.new-template * { box-sizing: border-box; }
.header-new ul, .footer-new ul,
.hn-menu, .hn-dropdown, .fn-col ul,
.hero-new ul, .feature-bar-new ul, .how-we-help-new ul,
.hwh-bullets, .diff-list, .diff-inner ul,
.process-section-new ul, .difference-section-new ul,
.approach-section-new ul, .approach-items-row ul,
.testimonials-new ul, .cta-banner-new ul { list-style: none; padding: 0; margin: 0; }
.header-new a, .footer-new a,
.hero-new a, .feature-bar-new a, .how-we-help-new a,
.process-section-new a, .difference-section-new a,
.approach-section-new a, .testimonials-new a, .cta-banner-new a { text-decoration: none; }

/* ── Service Photo Cards (New Template) ── */
.how-we-help-new .row {
    display: flex;
    flex-wrap: wrap;
}
.how-we-help-new .ser-item-new {
    display: flex;
    flex-direction: column;
    margin-bottom: 28px;
    float: none;
}
.svc-card-new {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.svc-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(27,43,107,0.16);
}
.svc-card-photo {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center top;
    background-color: var(--bg-light);
    flex-shrink: 0;
}
.svc-card-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.svc-card-body h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.3;
}
.svc-card-body h3 a {
    color: var(--navy);
    text-decoration: none;
}
.svc-card-body h3 a:hover { color: var(--green); }
.svc-card-body p {
    font-size: 13.5px;
    color: var(--text-gray);
    margin: 0 0 14px;
    line-height: 1.6;
    flex: 1;
}
.svc-read-more {
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
    text-decoration: none;
    margin-top: auto;
}
.svc-read-more:hover { color: var(--navy); }

/* ── Inner Page Banner (New Template) ── */
.inner-banner-new {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 42px 0 32px;
    margin-top: 0;
}
.inner-banner-new h1 {
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.3;
}
.breadcrumb-new {
    font-size: 13px;
    color: rgba(255,255,255,0.70);
}
.breadcrumb-new a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
}
.breadcrumb-new a:hover { color: #fff; }
.breadcrumb-new .sep { margin: 0 6px; }

/* ── Inner Content Wrapper (New Template) ── */
.new-template .blog,
.new-template .service-detail-new,
.new-template .team-member-detail,
.new-template .faq,
.new-template .gallery,
.new-template .about-v2,
.new-template .contact-v1 {
    padding: 48px 0;
    background: #fff;
}

/* Override old page-banner so it doesn't appear in new template */
.new-template .page-banner { display: none; }

/* ============================================================
   HEADER NEW
   ============================================================ */
.header-new {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-new .header-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

/* Logo */
.header-new .hn-logo img {
    height: 60px;
    width: auto;
}
.header-new .hn-logo .tagline {
    font-size: 11px;
    color: var(--green);
    display: block;
    margin-top: 2px;
    letter-spacing: 0.3px;
}

/* Feature Badges in header */
.header-new .hn-badges {
    display: flex;
    gap: 18px;
    align-items: center;
}
.header-new .hn-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
}
.header-new .hn-badge-item .badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.header-new .hn-badge-item .badge-icon i {
    color: var(--white);
    font-size: 15px;
}
.header-new .hn-badge-item .badge-text span {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: var(--text-gray);
}

/* Header CTA button */
.header-new .hn-cta .btn-submit-case {
    background: var(--green);
    color: var(--white);
    padding: 11px 22px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.header-new .hn-cta .btn-submit-case:hover {
    background: var(--green-light);
    color: var(--white);
}

/* ── Premium Nav Bar ── */
.hn-nav-bar {
    background: var(--navy);
    position: relative;
    z-index: 998;
}
.hn-nav-wrap {
    display: flex;
    align-items: center;
    position: relative;
}

/* Desktop menu list */
.hn-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}
.hn-menu > li {
    position: relative;
}
.hn-menu > li > a {
    display: block;
    padding: 16px 18px;
    color: rgba(255,255,255,0.88);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
    position: relative;
    transition: color 0.2s;
}
.hn-menu > li > a i.fa-angle-down {
    font-size: 11px;
    margin-left: 4px;
    transition: transform 0.2s;
}
.hn-menu > li:hover > a i.fa-angle-down {
    transform: rotate(180deg);
}
.hn-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 3px;
    background: var(--green-light);
    border-radius: 2px 2px 0 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}
.hn-menu > li:hover > a,
.hn-menu > li.active > a {
    color: #fff;
}
.hn-menu > li:hover > a::after,
.hn-menu > li.active > a::after {
    transform: scaleX(1);
}

/* Dropdown */
.hn-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 230px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.18);
    border-top: 3px solid var(--green);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 1000;
    padding: 8px 0;
    list-style: none;
    margin: 0;
}
.hn-menu > li:hover > .hn-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.hn-dropdown li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.15s;
    border-left: 3px solid transparent;
}
.hn-dropdown li a i {
    color: var(--green);
    font-size: 11px;
    flex-shrink: 0;
}
.hn-dropdown li a:hover {
    color: var(--green);
    background: var(--bg-light);
    border-left-color: var(--green);
    padding-left: 24px;
}
.hn-dropdown li + li {
    border-top: 1px solid #f0f0f0;
}

/* Hamburger button — hidden on desktop */
.hn-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
    z-index: 1001;
}
.hn-hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}
/* Animated X when open */
.hn-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hn-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hn-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav ── */
@media (max-width: 991px) {
    .hn-hamburger { display: flex; }
    .hn-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy-dark);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        z-index: 999;
    }
    .hn-nav.is-open { max-height: 600px; overflow-y: auto; }
    .hn-menu { flex-direction: column; align-items: stretch; }
    .hn-menu > li > a { padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .hn-menu > li > a::after { display: none; }
    .hn-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        border-radius: 0;
        background: rgba(0,0,0,0.2);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .hn-menu > li.sub-open > .hn-dropdown { max-height: 400px; }
    .hn-dropdown li a {
        color: rgba(255,255,255,0.8);
        padding: 11px 20px 11px 36px;
        border-left: none;
        font-size: 13px;
    }
    .hn-dropdown li a:hover { color: #fff; background: rgba(255,255,255,0.08); padding-left: 40px; }
    .hn-dropdown li + li { border-top: 1px solid rgba(255,255,255,0.06); }
}

/* ============================================================
   SECTION TITLE STYLE (shared)
   ============================================================ */
.nt-section-title {
    text-align: center;
    margin-bottom: 40px;
}
.nt-section-title .title-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 8px;
}
.nt-section-title .title-line::before,
.nt-section-title .title-line::after {
    content: '';
    flex: 1;
    max-width: 80px;
    height: 2px;
    background: var(--green);
}
.nt-section-title h2 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy);
    white-space: nowrap;
    margin: 0;
}
.nt-section-title p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-new {
    background: linear-gradient(135deg, #EEF2FF 0%, #F5F7FF 60%, #E8F5EE 100%);
    padding: 60px 0 50px;
    overflow: hidden;
}
.hero-new .hero-left {
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-new .hero-left h1 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--navy);
    margin-bottom: 16px;
}
.hero-new .hero-left h1 .text-green {
    color: var(--green);
}
.hero-new .hero-left .hero-sub {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 28px;
}
.hero-new .hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.btn-hero-primary {
    background: var(--green);
    color: var(--white) !important;
    padding: 13px 26px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s, transform 0.1s;
}
.btn-hero-primary:hover {
    background: var(--green-light) !important;
    transform: translateY(-1px);
}
.btn-hero-secondary {
    background: transparent;
    color: var(--navy) !important;
    padding: 12px 22px;
    border-radius: var(--radius);
    border: 2px solid var(--navy);
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.2s;
}
.btn-hero-secondary:hover {
    background: var(--navy);
    color: var(--white) !important;
}

.hero-new .hero-center {
    position: relative;
    text-align: center;
}
.hero-new .hero-center img {
    width: 100%;
    max-width: 560px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(27,43,107,0.15);
}
.hero-new .hero-center .claim-badge {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--red-badge);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 6px;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(229,57,53,0.4);
    pointer-events: none;
}

.hero-new .hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 16px;
    border-left: 1px solid var(--border);
}
.hero-new .hero-right p {
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 16px;
}
.hero-new .hero-right .green-line {
    width: 50px;
    height: 3px;
    background: var(--green);
    border-radius: 2px;
}

/* ============================================================
   FEATURE BAR
   ============================================================ */
.feature-bar-new {
    background: var(--white);
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
}
.feature-bar-new .fb-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 20px;
    border-right: 1px solid var(--border);
}
.feature-bar-new .fb-item:last-child {
    border-right: none;
}
.feature-bar-new .fb-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-bar-new .fb-icon i {
    color: var(--white);
    font-size: 20px;
}
.feature-bar-new .fb-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 4px;
}
.feature-bar-new .fb-text p {
    font-size: 12px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

/* ============================================================
   HOW WE HELP
   ============================================================ */
.how-we-help-new {
    background: var(--bg-light);
    padding: 60px 0;
}
.hwh-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 22px 24px;
    height: 100%;
    position: relative;
    transition: box-shadow 0.2s;
}
.hwh-card:hover {
    box-shadow: 0 6px 24px rgba(27,43,107,0.12);
}
.hwh-card .hwh-number {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hwh-card .hwh-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.hwh-card .hwh-icon i {
    color: var(--white);
    font-size: 26px;
}
.hwh-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.hwh-card .hwh-intro {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 10px;
}
.hwh-card ul.hwh-bullets li {
    font-size: 13px;
    color: var(--text-dark);
    padding: 4px 0 4px 20px;
    position: relative;
    line-height: 1.4;
}
.hwh-card ul.hwh-bullets li::before {
    content: '\f058';
    font-family: 'FontAwesome';
    color: var(--green);
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 13px;
}

/* ============================================================
   6-STEP PROCESS
   ============================================================ */
.process-section-new {
    background: var(--navy);
    padding: 60px 0;
}
.process-section-new .nt-section-title h2 {
    color: var(--white);
}
.process-section-new .nt-section-title .title-line::before,
.process-section-new .nt-section-title .title-line::after {
    background: var(--green-light);
}
.process-steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
}
.process-step {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 8px;
}
.process-step:not(:last-child)::after {
    content: '- - -';
    position: absolute;
    top: 28px;
    right: -18px;
    color: var(--green-light);
    font-size: 14px;
    letter-spacing: 2px;
    pointer-events: none;
}
.process-step .ps-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    border: 3px solid rgba(255,255,255,0.15);
}
.process-step .ps-icon-wrap i {
    color: var(--white);
    font-size: 22px;
}
.process-step .ps-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--green-light);
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.process-step .ps-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}
.process-step .ps-desc {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

/* ============================================================
   THE DIFFERENCE SECTION
   ============================================================ */
.difference-section-new {
    background: var(--navy-dark);
    padding: 60px 0;
}
.difference-section-new .nt-section-title h2 {
    color: var(--white);
}
.difference-section-new .nt-section-title .title-line::before,
.difference-section-new .nt-section-title .title-line::after {
    background: var(--green-light);
}
.diff-inner {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    overflow: hidden;
}
.diff-col {
    flex: 1;
    padding: 32px 24px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.diff-col:last-child { border-right: none; }

.diff-col.diff-image {
    flex: 0 0 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45,138,78,0.15);
}
.diff-col.diff-image img {
    width: 140px;
    opacity: 0.9;
}
.diff-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.diff-col p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin: 0;
}
.diff-col ul.diff-list li {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    padding: 5px 0 5px 20px;
    position: relative;
}
.diff-col ul.diff-list li::before {
    content: '\f058';
    font-family: 'FontAwesome';
    color: var(--green-light);
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 13px;
}
.diff-col .diff-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(45,138,78,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.diff-col .diff-icon i {
    color: var(--green-light);
    font-size: 20px;
}

/* ============================================================
   WHO CAN APPROACH
   ============================================================ */
.approach-section-new {
    background: var(--white);
    padding: 60px 0;
}
.approach-items-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}
.approach-item {
    text-align: center;
    width: 130px;
}
.approach-item .ap-icon {
    width: 70px;
    height: 70px;
    border: 2px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    background: var(--bg-light);
    transition: all 0.2s;
}
.approach-item:hover .ap-icon {
    border-color: var(--green);
    background: var(--green);
}
.approach-item .ap-icon i {
    font-size: 28px;
    color: var(--navy);
    transition: color 0.2s;
}
.approach-item:hover .ap-icon i {
    color: var(--white);
}
.approach-item .ap-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

/* ============================================================
   TESTIMONIALS (New Style)
   ============================================================ */
.testimonials-new {
    background: var(--bg-light);
    padding: 60px 0;
}
.testi-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
    height: 100%;
}
.testi-card .stars {
    color: #F5A623;
    font-size: 14px;
    margin-bottom: 10px;
}
.testi-card .testi-text {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}
.testi-card .testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testi-card .testi-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}
.testi-card .testi-author .author-info h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 2px;
}
.testi-card .testi-author .author-info span {
    font-size: 12px;
    color: var(--text-light);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner-new {
    background: linear-gradient(135deg, var(--navy) 0%, #0e6b3a 100%);
    padding: 36px 0;
}
.cta-banner-new .cta-left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.cta-banner-new .cta-left img {
    height: 52px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}
.cta-banner-new .cta-left .cta-text h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 4px;
}
.cta-banner-new .cta-left .cta-text p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin: 0;
}
.cta-banner-new .cta-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.cta-banner-new .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}
.cta-banner-new .cta-btn-phone {
    background: rgba(255,255,255,0.15);
    color: var(--white) !important;
    border: 1px solid rgba(255,255,255,0.3);
}
.cta-banner-new .cta-btn-phone:hover {
    background: rgba(255,255,255,0.25);
}
.cta-banner-new .cta-btn-email {
    background: rgba(255,255,255,0.15);
    color: var(--white) !important;
    border: 1px solid rgba(255,255,255,0.3);
}
.cta-banner-new .cta-btn-email:hover {
    background: rgba(255,255,255,0.25);
}
.cta-banner-new .cta-btn-whatsapp {
    background: #25D366;
    color: var(--white) !important;
    border: none;
}
.cta-banner-new .cta-btn-whatsapp:hover {
    background: #1ebe5d;
}

/* ============================================================
   FOOTER NEW
   ============================================================ */
.footer-new {
    background: var(--navy);
    padding: 50px 0 0;
    color: rgba(255,255,255,0.85);
}
.footer-new .fn-col h4 {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 18px 0 !important;
    padding-bottom: 10px !important;
    padding-top: 0 !important;
    border-bottom: 2px solid var(--green) !important;
    border-top: none !important;
    display: block !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3 !important;
}
.footer-new .fn-col p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
}
.footer-new .fn-col .fn-logo img {
    height: 48px;
    margin-bottom: 12px;
    filter: brightness(0) invert(1);
}
.footer-new .fn-col ul li {
    margin-bottom: 8px;
}
.footer-new .fn-col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-new .fn-col ul li a::before {
    content: '\f105';
    font-family: 'FontAwesome';
    color: var(--green-light);
    font-size: 12px;
}
.footer-new .fn-col ul li a:hover {
    color: var(--green-light);
}
.footer-new .fn-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}
.footer-new .fn-contact-item i {
    color: var(--green-light);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}
.footer-new .fn-contact-item span {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}
.footer-new .fn-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}
.footer-new .fn-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    transition: background 0.2s;
}
.footer-new .fn-social a:hover {
    background: var(--green);
}
.footer-new .fn-bottom {
    background: rgba(0,0,0,0.2);
    text-align: center;
    padding: 14px;
    margin-top: 40px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* ============================================================
   SLICKNAV (Mobile nav) overrides for new header
   ============================================================ */
.header-new .slicknav_menu {
    background: var(--navy);
    display: none;
}
.header-new .slicknav_btn {
    background: var(--green);
    margin: 8px 0;
}
.header-new .slicknav_nav {
    background: var(--navy);
}
.header-new .slicknav_nav a {
    color: var(--white);
}
.header-new .slicknav_nav a:hover {
    background: var(--green);
    color: var(--white);
}

/* ── Footer about text (HTML content from DB) ── */
.fn-about-text {
    font-size: 13.5px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin: 10px 0 16px;
}
.fn-about-text p { margin: 0 0 8px; }
.fn-about-text strong { color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── Tablet (≤991px) ── */
@media (max-width: 991px) {
    /* Header */
    .header-new .hn-badges { display: none; }
    .header-new .header-top-row { flex-wrap: wrap; gap: 10px; padding: 10px 0; }
    .header-new .hn-logo img { height: 48px; }

    /* Hero */
    .hero-new .hero-right { display: none; }
    .hero-new .hero-left h1 { font-size: 26px; }
    .hero-new { padding: 40px 0 30px; }

    /* Process */
    .process-steps-row { flex-wrap: wrap; gap: 20px; justify-content: center; }
    .process-step { width: 140px; }
    .process-step:not(:last-child)::after { display: none; }

    /* Difference */
    .diff-inner { flex-direction: column; gap: 0; }
    .diff-col { border-right: none !important; border-bottom: 1px solid var(--border); }
    .diff-col:last-child { border-bottom: none; }

    /* CTA */
    .cta-banner-new .cta-actions { justify-content: flex-start; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

    /* Services grid — 2 columns on tablet */
    .how-we-help-new .ser-item-new.col-md-4 { width: 50%; }

    /* Footer */
    .footer-new .fn-col { margin-bottom: 28px; }
}

/* ── Mobile (≤767px) ── */
@media (max-width: 767px) {
    /* Header top row */
    .header-new .header-top-row { flex-direction: row; justify-content: space-between; align-items: center; }
    .header-new .hn-logo img { height: 42px; }
    .header-new .hn-cta .btn-submit-case { padding: 9px 14px; font-size: 12px; }

    /* Nav */
    .hn-nav-bar { display: block; }

    /* Hero */
    .hero-new { padding: 30px 0 24px; }
    .hero-new .hero-left h1 { font-size: 22px; line-height: 1.35; }
    .hero-new .hero-left .hero-sub { font-size: 13px; }
    .hero-new .hero-btns { flex-direction: column; gap: 10px; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; text-align: center; justify-content: center; }
    .hero-new .hero-center { margin-top: 24px; }
    .hero-new .hero-center img { max-width: 100%; }

    /* Feature bar */
    .feature-bar-new .fb-item { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 14px; margin-bottom: 14px; }
    .feature-bar-new .col-sm-6 { margin-bottom: 0; }
    .fb-icon { width: 42px; height: 42px; font-size: 18px; }

    /* Services — 1 column on mobile */
    .how-we-help-new .row { display: block; }
    .how-we-help-new .ser-item-new.col-md-4 { width: 100%; margin-bottom: 20px; }
    .svc-card-photo { height: 180px; }

    /* Section titles */
    .nt-section-title h2 { font-size: 18px; letter-spacing: 1px; }

    /* Process steps — 2 per row */
    .process-step { width: 130px; }
    .ps-title { font-size: 12px; }
    .ps-desc { font-size: 11px; }

    /* Approach */
    .approach-item { width: 90px; }
    .ap-icon { width: 52px; height: 52px; font-size: 20px; }
    .ap-title { font-size: 11px; }

    /* Testimonials */
    .testi-card { margin-bottom: 16px; }

    /* CTA Banner */
    .cta-banner-new { padding: 30px 0; }
    .cta-banner-new .cta-left { flex-direction: column; text-align: center; gap: 10px; margin-bottom: 16px; }
    .cta-btn { width: 100%; justify-content: center; font-size: 13px; }

    /* Inner banner */
    .inner-banner-new { padding: 28px 0 22px; }
    .inner-banner-new h1 { font-size: 22px; }

    /* Footer */
    .footer-new { padding: 40px 0 0; }
    .footer-new .fn-col { margin-bottom: 26px; }
    .footer-new .fn-col h4 { font-size: 14px; }
    .footer-new .fn-col ul li a { font-size: 13px; }
    .fn-about-text { font-size: 13px; }
    .fn-contact-item { font-size: 13px; }
}

/* ── Small mobile (≤480px) ── */
@media (max-width: 480px) {
    .header-new .hn-cta .btn-submit-case { display: none; }
    .hero-new .hero-left h1 { font-size: 20px; }
    .cta-banner-new .cta-actions { flex-direction: column; }
}
