/* 
 * Custom Theme for Nissa Express
 * Based on Logo Colors: Navy Blue (#1B3A6B) and Orange (#F26522)
 */

/* ===================================
   HEADER & NAVIGATION REDESIGN
   =================================== */

/* Transparent Header for Hero */
.header-modern-hero {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
}

.main__header--transparent {
    background: rgba(27, 58, 107, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.4s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.main__header--transparent.sticky {
    background: white;
    box-shadow: 0 4px 20px rgba(27, 58, 107, 0.15);
}

/* Main Header */
.header__section {
    box-shadow: none;
    margin: 0;
    padding: 0;
}

.main__header {
    background: #ffffff;
    padding: 15px 0;
    transition: all 0.3s ease;
    margin: 0;
}

.main__header.header__sticky.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: white;
    box-shadow: 0 4px 15px rgba(27, 58, 107, 0.15);
    animation: slideDown 0.4s ease;
    margin: 0;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Logo Sizing */
.main__logo--hero .main__logo--img {
    max-height: 65px;
    width: auto;
    transition: all 0.3s ease;
}

.main__header.sticky .main__logo--img {
    max-height: 50px;
}

.main__logo--img {
    max-height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.main__logo--link:hover .main__logo--img {
    transform: scale(1.05);
}

/* Desktop Navigation */
.header__menu {
    display: block !important;
}

.header__menu--navigation {
    display: block !important;
}

.offcanvas__header--menu__open {
    display: none !important;
}

.header__menu--wrapper {
    gap: 8px;
    display: flex !important;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.header__menu--items {
    position: relative;
    display: block;
}

/* Default menu link styling - always visible */
.header__menu--link {
    color: #1B3A6B !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    padding: 10px 18px !important;
    border-radius: 0;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease !important;
    position: relative;
    display: inline-block !important;
    text-decoration: none;
}

/* When header is transparent (over hero slider) */
.main__header--transparent .header__menu--link {
    color: #1B3A6B !important; /* Navy blue untuk kontras dengan background terang/putih */
    text-shadow: none;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
}

.main__header--transparent .header__menu--link:hover {
    border-bottom-color: #F26522;
    color: #F26522 !important;
    background: rgba(255, 255, 255, 1);
}

.main__header--transparent .header__menu--link.active {
    border-bottom-color: #F26522;
    color: #F26522 !important;
    background: rgba(255, 255, 255, 1);
}

/* When header is sticky (scrolled) */
.main__header.sticky .header__menu--link {
    color: #1B3A6B !important;
    border-bottom: 3px solid transparent;
}

.main__header.sticky .header__menu--link:hover {
    border-bottom-color: #F26522;
    color: #F26522 !important;
}

.main__header.sticky .header__menu--link.active {
    border-bottom-color: #F26522;
    color: #F26522 !important;
}

.header__menu--link:hover {
    color: #F26522 !important;
    background: rgba(242, 101, 34, 0.08);
}

.header__menu--link.active {
    color: #F26522 !important;
    background: rgba(242, 101, 34, 0.1);
}

.header__menu--link.active::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 20px;
    right: 20px;
    height: 3px;
    background: linear-gradient(90deg, #F26522, #ff7b47);
    border-radius: 2px;
}

/* Mobile Menu Button */
.offcanvas__header--menu__open--btn {
    background: #1B3A6B;
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.offcanvas__header--menu__open--btn:hover {
    background: #F26522;
    transform: scale(1.05);
}

.offcanvas__header--menu__open--svg {
    width: 24px;
    height: 24px;
}

/* Offcanvas Mobile Menu */
.offcanvas__header {
    background: linear-gradient(135deg, #1B3A6B 0%, #2a5189 100%);
}

.offcanvas__inner {
    background: transparent;
}

.offcanvas__logo {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(242, 101, 34, 0.3);
}

.offcanvas__close--btn {
    background: #F26522 !important;
    color: #ffffff !important;
    width: 35px !important;
    height: 35px !important;
    border-radius: 8px !important;
    font-size: 20px !important;
    transition: all 0.3s ease !important;
}

.offcanvas__close--btn:hover {
    background: #d65519 !important;
    transform: rotate(90deg);
}

/* Offcanvas Menu Items */
.offcanvas__menu {
    padding: 20px 0;
}

.offcanvas__menu_ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offcanvas__menu_li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas__menu_item {
    color: #ffffff !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    padding: 15px 25px !important;
    display: block !important;
    transition: all 0.3s ease !important;
    border-left: 4px solid transparent;
}

.offcanvas__menu_item:hover {
    background: rgba(242, 101, 34, 0.2);
    border-left-color: #F26522;
    padding-left: 30px !important;
}

.offcanvas__menu_item.active {
    background: rgba(242, 101, 34, 0.25);
    border-left-color: #F26522;
}

/* Sticky Bottom Toolbar (Mobile) */
.offcanvas__stikcy--toolbar {
    background: #ffffff;
    border-top: 2px solid #1B3A6B;
    box-shadow: 0 -4px 15px rgba(27, 58, 107, 0.1);
}

.offcanvas__stikcy--toolbar__list {
    flex: 1;
}

.offcanvas__stikcy--toolbar__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 5px;
    color: #1B3A6B;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.offcanvas__stikcy--toolbar__btn:hover {
    background: rgba(242, 101, 34, 0.1);
    color: #F26522;
}

.offcanvas__stikcy--toolbar__icon {
    width: 28px !important;
    height: 28px !important;
    margin-bottom: 5px;
    transition: transform 0.3s ease;
}

.offcanvas__stikcy--toolbar__btn:hover .offcanvas__stikcy--toolbar__icon {
    transform: translateY(-3px);
}

.offcanvas__stikcy--toolbar__label {
    font-size: 11px;
    font-weight: 600;
    text-transform: capitalize;
}

/* WhatsApp Float Button */
.whatsapp-ico {
    fill: white !important;
    width: 60px !important;
    height: 60px !important;
    padding: 12px !important;
    background: linear-gradient(135deg, #25D366, #20BA5A) !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
    position: fixed !important;
    bottom: 25px !important;
    left: 25px !important;
    z-index: 9999 !important;
    transition: all 0.3s ease !important;
}

.whatsapp-ico:hover {
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6) !important;
    transform: scale(1.1) rotate(10deg) !important;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .main__header {
        padding: 10px 0;
    }
    
    .main__logo--img {
        max-height: 40px;
    }
}

@media (max-width: 575px) {
    .whatsapp-ico {
        width: 50px !important;
        height: 50px !important;
        bottom: 80px !important;
        left: 15px !important;
    }
    
    .offcanvas__stikcy--toolbar__label {
        font-size: 10px;
    }
}

/* ===================================
   HOMEPAGE MODERN REDESIGN
   =================================== */

/* ===== HERO SLIDER SECTION ===== */
.hero__slider--section {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.hero__slider--section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(27, 58, 107, 0.05) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* ===== SHIPPING/FEATURES SECTION ===== */
.shipping__section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 50px 0;
    margin-top: -20px;
    position: relative;
    z-index: 10;
}

.shipping__inner.style2 {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 10px 40px rgba(27, 58, 107, 0.1);
    border: 1px solid rgba(242, 101, 34, 0.1);
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.shipping__items.style2 {
    flex: 1;
    min-width: 280px;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.shipping__items.style2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #F26522, #ff8547);
    transition: height 0.4s ease;
}

.shipping__items.style2:hover {
    background: linear-gradient(135deg, rgba(27, 58, 107, 0.03), rgba(242, 101, 34, 0.03));
    transform: translateY(-5px);
}

.shipping__items.style2:hover::before {
    height: 100%;
}

.shipping__icon {
    margin-right: 20px;
    transition: transform 0.4s ease;
}

.shipping__items.style2:hover .shipping__icon {
    transform: scale(1.1) rotate(5deg);
}

.shipping__icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.shipping__content--title {
    color: #1B3A6B !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    margin: 0 !important;
    transition: color 0.3s ease;
}

.shipping__items.style2:hover .shipping__content--title {
    color: #F26522 !important;
}

/* ===== SECTION HEADINGS ===== */
.contact__section--heading {
    margin-bottom: 50px;
}

.contact__section--heading__maintitle {
    color: #1B3A6B;
    font-weight: 800;
    font-size: 42px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.contact__section--heading__maintitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #F26522, #ff8547);
    border-radius: 2px;
}

.text-center .contact__section--heading__maintitle::after {
    left: 50%;
    transform: translateX(-50%);
}

.contact__section--heading__desc {
    color: #6c757d;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== ABOUT SECTION ===== */
.about__section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.about__thumb {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(27, 58, 107, 0.15);
}

.about__thumb::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(242, 101, 34, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.about__thumb:hover::before {
    top: 100%;
}

.about__thumb--img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.about__thumb:hover .about__thumb--img {
    transform: scale(1.05);
}

.about__content {
    padding-left: 40px;
}

.about__content--maintitle {
    color: #1B3A6B;
    font-weight: 800;
    font-size: 36px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about__content--desc {
    color: #495057;
    font-size: 16px;
    line-height: 1.9;
    text-align: justify;
}

.about__content--desc b {
    color: #F26522;
    font-weight: 700;
}

/* ===== KENAPA SECTION (Why Choose Us) ===== */
.hows, .layanans {
    color: #495057;
    font-size: 16px;
    line-height: 1.9;
    text-align: justify;
    padding: 30px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(27, 58, 107, 0.08);
    border-left: 5px solid #F26522;
}

/* ===== PRICING SECTION ===== */
.banner__section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.ot-pricing-table {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 5px 25px rgba(27, 58, 107, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.ot-pricing-table::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1B3A6B, #F26522);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.ot-pricing-table:hover {
    border-color: #F26522;
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(242, 101, 34, 0.2);
}

.ot-pricing-table:hover::before {
    transform: scaleX(1);
}

.title-table {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #1B3A6B;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 3px solid #F26522;
    text-align: center;
}

.ot-pricing-table .card-body {
    padding: 0;
}

.ot-pricing-table .card-text {
    color: #495057;
    font-size: 15px;
    line-height: 2;
    text-align: center;
}

.mtop-40 {
    margin-top: 25px;
}

/* ===== BLOG SECTION ===== */
.blog__section {
    background: #ffffff;
}

.section__heading--maintitle {
    color: #1B3A6B;
    font-weight: 800;
    font-size: 36px;
}

.view__all--link {
    color: #F26522;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.view__all--link::after {
    content: '→';
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

.view__all--link:hover {
    color: #1B3A6B;
}

.view__all--link:hover::after {
    margin-left: 15px;
}

.blog__card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(27, 58, 107, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(27, 58, 107, 0.15);
}

.blog__card--thumbnail {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog__card--thumbnail__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog__card:hover .blog__card--thumbnail__img {
    transform: scale(1.1);
}

.blog__card--meta__date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: linear-gradient(135deg, #F26522, #ff7b47);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(242, 101, 34, 0.3);
}

.blog__card--content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog__card--title {
    color: #1B3A6B;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog__card--title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog__card--title a:hover {
    color: #F26522;
}

.blog__card--desc {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.blog__card--footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid #f8f9fa;
}

.blog__card--btn__link {
    color: #F26522;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog__card--btn__link:hover {
    color: #1B3A6B;
    gap: 12px;
}

.blog__card--btn__link svg {
    transition: transform 0.3s ease;
}

.blog__card--btn__link:hover svg {
    transform: translateX(5px);
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial__section {
    background: linear-gradient(135deg, #1B3A6B 0%, #2a5189 100%);
    position: relative;
    overflow: hidden;
}

.testimonial__section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(242, 101, 34, 0.15), transparent);
    border-radius: 50%;
}

.testimonial__section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(242, 101, 34, 0.1), transparent);
    border-radius: 50%;
}

.section__heading.style2 .section__heading--maintitle {
    color: #ffffff;
    font-weight: 800;
}

.section__heading.style2 .section__heading--maintitle::after {
    background: linear-gradient(90deg, #F26522, #ff8547);
}

.testimonial__items--content {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.4s ease;
}

.testimonial__items--content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.testimonial__items--content::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    font-weight: 800;
    color: rgba(242, 101, 34, 0.1);
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial__items--desc {
    color: #495057;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial__rating {
    justify-content: center;
    gap: 5px;
    margin-bottom: 0;
}

.rating__icon {
    color: #F26522;
    font-size: 18px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
    .about__content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .contact__section--heading__maintitle {
        font-size: 32px;
    }
    
    .about__content--maintitle {
        font-size: 28px;
    }
    
    .shipping__inner.style2 {
        flex-direction: column;
    }
    
    .shipping__items.style2 {
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .contact__section--heading__maintitle {
        font-size: 28px;
    }
    
    .section__heading--maintitle {
        font-size: 28px;
    }
    
    .blog__card--thumbnail {
        height: 200px;
    }
    
    .testimonial__items--content {
        padding: 30px 25px;
    }
}

@media (max-width: 575px) {
    .contact__section--heading__maintitle {
        font-size: 24px;
    }
    
    .about__content--maintitle {
        font-size: 24px;
    }
    
    .shipping__inner.style2 {
        padding: 25px 15px;
    }
    
    .shipping__icon img {
        width: 40px;
        height: 40px;
    }
    
    .shipping__content--title {
        font-size: 16px !important;
    }
    
    .ot-pricing-table {
        padding: 30px 20px;
    }
    
    .title-table {
        font-size: 20px;
    }
}

/* ===== FOOTER STYLING ===== */
.footer__section {
    background: linear-gradient(135deg, #1B3A6B 0%, #162d52 100%);
    position: relative;
    overflow: hidden;
}

.footer__section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(242, 101, 34, 0.1), transparent);
    border-radius: 50%;
}

.footer__widget--title {
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer__widget--title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #F26522, #ff7b47);
}

.footer__widget--menu li {
    margin-bottom: 12px;
}

.footer__widget--menu__text {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.footer__widget--menu__text::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #F26522;
    transition: left 0.3s ease;
}

.footer__widget--menu__text:hover {
    color: #F26522;
    padding-left: 25px;
}

.footer__widget--menu__text:hover::before {
    left: 5px;
}

.footer__bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright__content--text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.copyright__content--text a {
    color: #F26522;
    font-weight: 600;
    transition: color 0.3s ease;
}

.copyright__content--text a:hover {
    color: #ff8547;
}

/* ===================================
   ENHANCED HOMEPAGE SECTIONS
   =================================== */

/* ===== QUICK TRACKING WIDGET ===== */
.quick-tracking-widget {
    padding: 0;
    margin-top: -307px;
    position: relative;
    z-index: 100;
}

.tracking-widget-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 40px;
    box-shadow: 0 15px 60px rgba(27, 58, 107, 0.15);
    border: 2px solid rgba(242, 101, 34, 0.1);
}

.tracking-widget-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tracking-widget-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #F26522, #ff7b47);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.tracking-widget-title {
    color: #1B3A6B;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 5px;
}

.tracking-widget-desc {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
}

.tracking-widget-form {
    width: 100%;
}

.tracking-form-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.tracking-input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.tracking-input:focus {
    outline: none;
    border-color: #F26522;
    box-shadow: 0 0 0 4px rgba(242, 101, 34, 0.1);
}

.tracking-submit-btn {
    background: linear-gradient(135deg, #F26522, #ff7b47);
    color: #ffffff;
    border: none;
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tracking-submit-btn:hover {
    background: linear-gradient(135deg, #1B3A6B, #2a5189);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(242, 101, 34, 0.3);
}

/* ===== STATS COUNTER SECTION ===== */
.stats-section {
    padding: 80px 0 60px;
    background: #ffffff;
}

.stats-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(27, 58, 107, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    margin-bottom: 30px;
}

.stats-card:hover {
    border-color: #F26522;
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(242, 101, 34, 0.15);
}

.stats-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(27, 58, 107, 0.1), rgba(242, 101, 34, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #F26522;
    transition: all 0.4s ease;
}

.stats-card:hover .stats-icon {
    background: linear-gradient(135deg, #F26522, #ff7b47);
    color: #ffffff;
    transform: scale(1.1) rotate(10deg);
}

.stats-number {
    font-size: 48px;
    font-weight: 800;
    color: #1B3A6B;
    margin-bottom: 10px;
    line-height: 1;
}

.stats-number::after {
    content: '+';
    color: #F26522;
    margin-left: 5px;
}

.stats-label {
    color: #6c757d;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works-section {
    background: #ffffff;
}

.section-subtitle {
    display: inline-block;
    color: #F26522;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    padding: 8px 20px;
    background: rgba(242, 101, 34, 0.1);
    border-radius: 50px;
}

.process-step-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(27, 58, 107, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    margin-bottom: 30px;
    height: 100%;
}

.process-step-card::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -25px;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, rgba(242, 101, 34, 0.3), transparent);
}

.col-lg-3:last-child .process-step-card::before {
    display: none;
}

.process-step-card:hover {
    border-color: #F26522;
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(242, 101, 34, 0.15);
}

.process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F26522, #ff7b47);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
}

.process-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(27, 58, 107, 0.05), rgba(242, 101, 34, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #1B3A6B;
    transition: all 0.4s ease;
}

.process-step-card:hover .process-icon {
    background: linear-gradient(135deg, #1B3A6B, #2a5189);
    color: #ffffff;
    transform: scale(1.1);
}

.process-title {
    color: #1B3A6B;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 15px;
}

.process-desc {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* ===== ABOUT FEATURES LIST ===== */
.about-features-list {
    margin: 30px 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(242, 101, 34, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    background: rgba(242, 101, 34, 0.1);
    transform: translateX(10px);
}

.about-feature-item svg {
    color: #F26522;
    flex-shrink: 0;
}

.about-feature-item span {
    color: #495057;
    font-size: 16px;
    font-weight: 500;
}

.about-cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-cta-btn.primary {
    background: linear-gradient(135deg, #F26522, #ff7b47);
    color: #ffffff;
}

.about-cta-btn.primary:hover {
    background: linear-gradient(135deg, #1B3A6B, #2a5189);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(242, 101, 34, 0.3);
}

.about-cta-btn.secondary {
    background: transparent;
    color: #1B3A6B;
    border: 2px solid #1B3A6B;
}

.about-cta-btn.secondary:hover {
    background: #1B3A6B;
    color: #ffffff;
    transform: translateY(-3px);
}

/* ===== WHY CHOOSE US / ADVANTAGES ===== */
.why-choose-section {
    position: relative;
}

.advantage-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(27, 58, 107, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    height: 100%;
}

.advantage-card:hover {
    border-color: #F26522;
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(242, 101, 34, 0.15);
}

.advantage-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(27, 58, 107, 0.1), rgba(242, 101, 34, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #F26522;
    transition: all 0.4s ease;
}

.advantage-card:hover .advantage-icon {
    background: linear-gradient(135deg, #F26522, #ff7b47);
    color: #ffffff;
    transform: scale(1.1) rotate(-5deg);
}

.advantage-title {
    color: #1B3A6B;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 15px;
}

.advantage-desc {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* ===== RESPONSIVE FOR NEW SECTIONS ===== */
@media (max-width: 991px) {
    .tracking-widget-card {
        padding: 30px 25px;
    }
    
    .tracking-widget-info {
        flex-direction: column;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .tracking-form-group {
        flex-direction: column;
    }
    
    .tracking-submit-btn {
        width: 100%;
        justify-content: center;
    }
    
    .stats-card {
        padding: 30px 20px;
    }
    
    .stats-number {
        font-size: 38px;
    }
    
    .process-step-card::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .quick-tracking-widget {
        margin-top: -40px;
    }
    
    .tracking-widget-card {
        padding: 25px 20px;
    }
    
    .tracking-widget-icon {
        width: 60px;
        height: 60px;
    }
    
    .tracking-widget-title {
        font-size: 20px;
    }
    
    .stats-section {
        padding: 60px 0 40px;
    }
    
    .stats-icon {
        width: 70px;
        height: 70px;
    }
    
    .stats-number {
        font-size: 32px;
    }
    
    .process-icon {
        width: 80px;
        height: 80px;
    }
    
    .about-cta-buttons {
        flex-direction: column;
    }
    
    .about-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .tracking-input {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .tracking-submit-btn {
        padding: 15px 25px;
        font-size: 14px;
    }
    
    .stats-number {
        font-size: 28px;
    }
    
    .stats-label {
        font-size: 14px;
    }
    
    .process-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Override Additional Colors */
.text-secondary {
    color: #F26522 !important;
}

.bg__secondary {
    background: #F26522 !important;
}

/* Search Filter Styling */
.search__filter--area {
    background: linear-gradient(135deg, #1B3A6B 0%, #2A5088 100%);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(27, 58, 107, 0.2);
}

.search__filter--title {
    color: #fff;
}

.search__filter--desc {
    color: rgba(255, 255, 255, 0.9);
}

.search__filter--btn {
    background: #F26522 !important;
    border: none;
    transition: all 0.3s ease;
}

.search__filter--btn:hover {
    background: #D9551C !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 101, 34, 0.3);
}

/* Shipping Section */
.shipping__section {
    background: #f8f9fa;
}

.shipping__items {
    transition: all 0.3s ease;
}

.shipping__items:hover {
    transform: translateY(-5px);
}

.shipping__content--title {
    color: #1B3A6B;
}

/* About Section */
.about__content--maintitle {
    color: #1B3A6B;
}

/* Button Styles */
.primary__btn,
button.primary__btn,
a.primary__btn {
    background: #F26522 !important;
    border: none;
    transition: all 0.3s ease;
}

.primary__btn:hover {
    background: #1B3A6B !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(27, 58, 107, 0.3);
}

/* Section Headings */
.section__heading--maintitle,
.contact__section--heading__maintitle {
    color: #1B3A6B;
    position: relative;
    padding-bottom: 15px;
}

.section__heading--maintitle::after,
.contact__section--heading__maintitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #F26522 0%, #1B3A6B 100%);
    border-radius: 2px;
}

/* Pricing Table */
.ot-pricing-table {
    border: 2px solid #E5E5E5;
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.ot-pricing-table:hover {
    border-color: #F26522;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(242, 101, 34, 0.2);
}

.ot-pricing-table .title-table {
    background: linear-gradient(135deg, #1B3A6B 0%, #2A5088 100%);
    color: #fff;
    padding: 20px;
    font-weight: 700;
    font-size: 1.6rem;
}

/* Blog Cards */
.blog__card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.blog__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.blog__card--meta__date {
    background: #F26522;
    color: #fff;
}

.blog__card--title a {
    color: #1B3A6B;
}

.blog__card--title a:hover {
    color: #F26522;
}

.blog__card--btn__link {
    color: #F26522;
}

.blog__card--btn__link:hover {
    color: #1B3A6B;
}

/* Testimonial */
.testimonial__items--desc {
    font-style: italic;
    color: #555;
}

.rating__icon {
    color: #F26522;
}

/* Footer */
.footer__widget--button {
    color: #1B3A6B;
}

/* Navigation */
.header__sticky {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header__menu--items a:hover {
    color: #F26522 !important;
}

/* Tracking Page Styles */
.vertical-timeline::before {
    background: #E5E5E5;
}

.badge-dot-xl {
    background: #F26522;
    box-shadow: 0 0 0 5px #fff, 0 0 0 7px #F26522;
}

.timeline-title {
    color: #1B3A6B;
    font-weight: 600;
}

/* Contact Form */
.contact__form--input:focus {
    border-color: #F26522;
    box-shadow: 0 0 0 0.2rem rgba(242, 101, 34, 0.25);
}

/* Alert Messages */
.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

/* Swiper Navigation Buttons */
.swiper__nav--btn {
    background: #fff;
    color: #1B3A6B;
    border: 2px solid #E5E5E5;
}

.swiper__nav--btn:hover {
    background: #F26522;
    color: #fff;
    border-color: #F26522;
}

/* Breadcrumb */
.breadcrumb__link:hover {
    color: #F26522 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section__heading--maintitle::after,
    .contact__section--heading__maintitle::after {
        width: 60px;
    }
}

/* ===================================
   MODERN SECTION STYLES
   =================================== */

/* Section Headings Modern */
.section-heading-modern {
    margin-bottom: 50px;
}

.section-badge,
.section-badge-navy {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-badge {
    background: linear-gradient(135deg, #F26522 0%, #d94d0a 100%);
    color: white;
}

.section-badge-navy {
    background: linear-gradient(135deg, #1B3A6B 0%, #143052 100%);
    color: white;
}

.section-title-modern {
    font-size: 42px;
    font-weight: 700;
    color: #1B3A6B;
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-desc-modern {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-heading-modern-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

/* ===================================
   WHY NISSA EXPRESS SECTION
   =================================== */

.why-nissa-section {
    position: relative;
    overflow: hidden;
}

.why-nissa-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(242, 101, 34, 0.05);
    border-radius: 0 0 0 100px;
}

.why-nissa-content {
    position: relative;
    z-index: 2;
}

.why-nissa-text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.why-nissa-text strong {
    color: #F26522;
}

.why-nissa-image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.why-nissa-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Reason Cards */
.reason-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #F26522 0%, #ff8c4a 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.reason-card:hover::before {
    transform: scaleX(1);
}

.reason-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(242, 101, 34, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(242, 101, 34, 0.2);
}

.reason-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.reason-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #F26522 0%, #d94d0a 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.reason-card:hover .reason-icon {
    transform: rotateY(360deg);
}

.reason-icon svg {
    color: white;
}

.reason-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.reason-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   IMPORT EXPORT SECTION
   =================================== */

.import-export-section {
    background: #ffffff;
}

.import-export-content {
    padding-right: 30px;
}

.import-export-title {
    font-size: 42px;
    font-weight: 700;
    color: #1B3A6B;
    margin-bottom: 20px;
    line-height: 1.3;
}

.import-export-desc {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.import-export-desc strong {
    color: #1B3A6B;
}

.import-export-features {
    margin: 30px 0;
}

.ie-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.ie-feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #F26522 0%, #d94d0a 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ie-feature-icon svg {
    color: white;
}

.ie-feature-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1B3A6B;
    margin-bottom: 5px;
}

.ie-feature-text p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.btn-modern-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #F26522 0%, #d94d0a 100%);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 101, 34, 0.3);
}

.btn-modern-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(242, 101, 34, 0.4);
    color: white;
    text-decoration: none;
}

/* IE Stats Grid */
.import-export-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ie-stat-card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.ie-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.ie-stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ie-stat-title {
    font-size: 18px;
    font-weight: 700;
    color: #1B3A6B;
    margin-bottom: 10px;
}

.ie-stat-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* ===================================
   PRICING SECTION MODERN
   =================================== */

.pricing-section-modern {
    background: #f8f9fa;
}

.pricing-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(27, 58, 107, 0.2);
}

.pricing-header {
    background: linear-gradient(135deg, #1B3A6B 0%, #143052 100%);
    padding: 35px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(242, 101, 34, 0.1) 0%, transparent 70%);
}

.pricing-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.pricing-icon svg {
    color: #F26522;
}

.pricing-title {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin: 0;
    position: relative;
    z-index: 2;
}

.pricing-body {
    padding: 30px 25px;
    flex-grow: 1;
}

.pricing-details {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.pricing-footer {
    padding: 0 25px 30px;
}

.pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 25px;
    background: linear-gradient(135deg, #F26522 0%, #d94d0a 100%);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 101, 34, 0.4);
    color: white;
    text-decoration: none;
}

/* ===================================
   BLOG SECTION MODERN
   =================================== */

.blog-section-modern {
    background: white;
}

.view-all-btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: transparent;
    color: #1B3A6B;
    font-weight: 600;
    border: 2px solid #1B3A6B;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-btn-modern:hover {
    background: #1B3A6B;
    color: white;
    text-decoration: none;
}

.blog-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    position: relative;
    padding-top: 65%;
    overflow: hidden;
}

.blog-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-modern:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 58, 107, 0.9), rgba(242, 101, 34, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card-modern:hover .blog-card-overlay {
    opacity: 1;
}

.blog-read-more {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.blog-card-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #F26522;
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
}

.blog-card-body {
    padding: 30px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card-title a {
    color: #1B3A6B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: #F26522;
}

.blog-card-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #F26522;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    gap: 12px;
    color: #1B3A6B;
}

/* ===================================
   TESTIMONIAL SECTION MODERN
   =================================== */

.testimonial-section-modern {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonial-card-modern {
    background: white;
    border-radius: 25px;
    padding: 40px 35px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.testimonial-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-quote-icon {
    margin-bottom: 25px;
}

.testimonial-text-modern {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-rating-modern {
    display: flex;
    gap: 5px;
    margin-bottom: 25px;
}

.testimonial-author-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1B3A6B 0%, #143052 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author-name {
    font-size: 18px;
    font-weight: 700;
    color: #1B3A6B;
    margin-bottom: 5px;
}

.testimonial-author-role {
    font-size: 14px;
    color: #F26522;
    margin: 0;
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */

@media (max-width: 991px) {
    .section-title-modern {
        font-size: 32px;
    }
    
    .section-desc-modern {
        font-size: 16px;
    }
    
    .section-heading-modern-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .blog-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .import-export-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .import-export-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .section-title-modern {
        font-size: 28px;
    }
    
    .blog-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .import-export-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .import-export-title {
        font-size: 32px;
    }
    
    .reason-card {
        padding: 30px 20px;
    }
    
    .why-nissa-text {
        font-size: 15px;
    }
    
    .testimonial-card-modern {
        padding: 30px 25px;
    }
    
    .testimonial-text-modern {
        font-size: 15px;
    }
}

/* ===================================
   FULL IMAGE HERO SLIDER
   =================================== */

.main__content_wrapper {
    padding: 0;
    margin: 0;
}

.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.hero-slider-wrapper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-full {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Slider Navigation */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-slider-nav:hover {
    background: #F26522;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(242, 101, 34, 0.4);
}

.hero-slider-nav:hover svg {
    color: white;
}

.hero-slider-nav svg {
    color: #1B3A6B;
    transition: color 0.3s ease;
}

.hero-slider-prev {
    left: 30px;
}

.hero-slider-next {
    right: 30px;
}

/* Slider Pagination */
.hero-slider-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.hero-slider-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-slider-pagination .swiper-pagination-bullet-active {
    background: #F26522;
    border-color: white;
    transform: scale(1.2);
}

/* ===================================
   HERO SLIDER RESPONSIVE
   =================================== */

@media (max-width: 991px) {
    .hero-slider-section {
        height: 100vh;
        min-height: 600px;
    }
    
    .header__menu {
        display: none !important;
    }
    
    .offcanvas__header--menu__open {
        display: block;
    }
}

@media (max-width: 767px) {
    .main__content_wrapper {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    
    .hero-slider-section {
        height: 50vh;
        min-height: 350px;
        margin-top: 0;
        padding-top: 0;
        margin-bottom: 20px;
    }
    
    .hero-slide-full {
        background-size: contain;
        padding: 10px;
    }
    
    .hero-slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .hero-slider-prev {
        left: 15px;
    }
    
    .hero-slider-next {
        right: 15px;
    }
    
    .hero-slider-pagination {
        bottom: 10px;
    }
    
    /* Reduce spacing after slider */
    .hero-slider-section + section,
    .hero-slider-section + div {
        margin-top: 0 !important;
        padding-top: 30px !important;
    }
}

@media (max-width: 576px) {
    .main__content_wrapper {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    
    .hero-slider-section {
        height: 40vh;
        min-height: 280px;
        margin-top: 0;
        padding-top: 0;
        margin-bottom: 15px;
        padding-bottom: 0;
    }
    
    .hero-slide-full {
        background-size: contain;
        padding: 5px;
    }
    
    .hero-slider-nav {
        width: 35px;
        height: 35px;
    }
    
    .hero-slider-pagination {
        bottom: 5px;
    }
    
    .hero-slider-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
    
    /* Reduce spacing after slider */
    .hero-slider-section + section,
    .hero-slider-section + div {
        margin-top: 0 !important;
        padding-top: 20px !important;
    }
}
