/* ============================================================
   style.css — The Procurement Guys
   Single source of truth. All styles consolidated here.
   Brand primary blue: #04509b  |  Red accent: #DF0021
   ============================================================ */
/* ── GLOBAL RESETS ── */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100%;
}
body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    padding-top: 72px;
    -webkit-font-smoothing: antialiased;
}
.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* ── HEADER ── */
.header-new {
    background: #04509b;
    padding: 0.65rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
    will-change: transform;
}
.header-new .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}
.header-new .nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    align-items: center;
}
.header-new .nav-right {
    display: none;
    align-items: center;
    gap: 0.6rem;
}
.header-new .nav-right a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.2s;
}
.header-new .nav-right a:hover {
    color: #fff;
}
@media (min-width: 992px) {
    .header-new .nav-center {
        display: flex;
    }
    .header-new .nav-right {
        display: flex;
    }
}
.header-new .nav-center a.home-link {
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.35rem 0.5rem;
    position: relative;
    transition: color 0.2s;
}
.header-new .nav-center a.home-link:hover { color: #fff; }
.header-new .nav-center a.home-link.active { color: #fff; }
.header-new .nav-center a.home-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #DF0021;
}
.btn-auth {
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}
.btn-register {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.6);
    color: rgba(255,255,255,0.9);
}
.btn-register:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    color: #fff;
}
.btn-login {
    background: #DF0021;
    border: 1.5px solid #DF0021;
    color: #fff;
    box-shadow: 0 2px 8px rgba(223,0,33,0.3);
}
.btn-login:hover {
    background: #b3001a;
    border-color: #b3001a;
    transform: translateY(-1px);
}
.header-new .logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #fff;
    text-decoration: none;
}
.header-new .logo img {
    height: 38px;
    border-radius: 4px;
}
.header-new .logo h1 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.3px;
    white-space: nowrap;
}

/* ── SERVICES MEGA MENU ── */
.header-new .nav-dropdown-wrap {
    position: relative;
}
.header-new .nav-dropdown-wrap > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.35rem 0;
    transition: color 0.2s;
}
.header-new .nav-dropdown-wrap > a:hover { color: #fff; }
.header-new .nav-dropdown-wrap > a .arrow {
    font-size: 0.6rem;
    transition: transform 0.2s;
}
.header-new .nav-dropdown-wrap.open > a .arrow {
    transform: rotate(180deg);
}

.header-new .nav-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.22);
    min-width: 210px;
    padding: 0.35rem 0;
    border: 1px solid #ccc;
    z-index: 9999;
    overflow: visible;
}
.header-new .nav-dropdown-wrap.open .nav-dropdown {
    display: block;
}

.header-new .nav-category {
    position: relative;
}
.header-new .nav-category-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.62rem 1rem;
    color: #222;
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
    gap: 12px;
    cursor: pointer;
    transition: background 0.1s, color 0.1s;
}
.header-new .nav-category.active > .nav-category-row {
    background: #04509b;
    color: #fff;
}
.header-new .nav-category-row .cat-chevron {
    font-size: 0.65rem;
    opacity: 0.5;
}
.header-new .nav-category.active .cat-chevron {
    opacity: 1;
}

.header-new .nav-subcategory {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    min-width: 200px;
    padding: 0.35rem 0;
    border: 1px solid #ccc;
    border-left: 3px solid #04509b;
    border-radius: 0 6px 6px 6px;
    box-shadow: 4px 6px 20px rgba(0,0,0,0.15);
    z-index: 10000;
}
.header-new .nav-category.active .nav-subcategory {
    display: block;
}
.header-new .nav-subcategory a {
    display: block;
    padding: 0.52rem 1.1rem;
    color: #222;
    font-size: 0.87rem;
    font-weight: 400;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.1s, color 0.1s;
}
.header-new .nav-subcategory a:hover {
    background: #f0f4f8;
    color: #04509b;
    font-weight: 600;
}

.header-new .menu-toggle {
    display: block;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
}
@media (min-width: 992px) {
    .header-new .menu-toggle {
        display: none;
    }
}
.header-new.header-hidden {
    transform: translateY(-100%);
}

/* ── MOBILE OVERLAY ── */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
}
.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}
.mobile-nav-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 340px;
    height: 100%;
    background: rgba(4, 80, 155, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 70px 1.5rem 2rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border-radius: 20px 0 0 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-nav-overlay.open .mobile-nav-panel {
    transform: translateX(0);
}
.mobile-nav-panel .close-menu {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}
.mobile-nav-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-nav-panel ul li a {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    padding: 0.6rem 0;
    text-decoration: none;
    transition: color 0.2s;
}
.mobile-nav-panel ul li a:hover {
    color: #DF0021;
}
.mobile-services-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.6rem 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    text-align: left;
}
.mobile-services-btn:hover { color: #DF0021; }
.mobile-services-list li a {
    font-size: 1rem !important;
    padding: 0.4rem 0 !important;
}
.mobile-nav-panel .mobile-contact {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}
.mobile-nav-panel .mobile-contact a {
    color: #fff;
    text-decoration: none;
}

/* ── HERO (fixed colors to match header) ── */
.hero {
    background: #04509b;
    background-image: url('images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #fff;
    text-align: center;
    padding: 5rem 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    position: relative;
    z-index: 1;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 83, 167, 0.85) 0%, rgba(132, 181, 235, 0.9) 100%);
    z-index: 1;
}
.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}
.hero-subtitle {
    font-size: 2rem;
    font-family: 'Inter', sans-serif;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.hero-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}
.hero-description {
    font-size: clamp(0.97rem, 2vw, 1.1rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    font-weight: 500;
}
.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}
.hero-buttons .btn {
    width: 80%;
    margin: 0;
}
.hero-globe-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.hero-globe-img {
    width: clamp(260px, 40vw, 460px);
    height: clamp(260px, 40vw, 460px);
    object-fit: contain;
    animation: globe-spin 30s linear infinite;
    display: block;
    opacity: 0.55;
}
@keyframes globe-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@media (max-width: 767px) {
    .hero-globe-img {
        width: 260px;
        height: 260px;
        opacity: 0.4;
    }
}
@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    .hero-buttons .btn {
        width: auto;
        margin: 0 0.5rem;
    }
    .hero-title {
        font-size: clamp(2.8rem, 4vw, 3.5rem);
    }
}
@media (min-width: 992px) {
    .hero-title {
        font-size: clamp(3.5rem, 4.5vw, 4.5rem);
    }
    .hero-description {
        font-size: 1.3rem;
    }
}

/* ── BUTTONS ── */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}
.btn-primary {
    background-color: #DF0021;
    color: #fff;
    box-shadow: 0 5px 15px rgba(223, 0, 33, 0.3);
}
.btn-primary:hover {
    background-color: #b3001a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(223, 0, 33, 0.4);
}
.btn-secondary {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}
.btn-secondary:hover {
    background-color: rgba(255,255,255,0.15);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}
.btn-tertiary {
    background-color: #0056B3;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 8px;
}
.btn-tertiary:hover {
    background-color: #004080;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.btn-light-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
}
.btn-light-outline:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* ── SECTION TITLES ── */
.section-title {
    text-align: center;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #04509b;
}
.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #DF0021;
    margin: 0 auto;
    border-radius: 2px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.section-padding {
    padding: 4rem 0;
}

/* ── ABOUT ── */
.about-us .container {
    text-align: center;
}
.about-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: left;
}
.about-text {
    flex: 1;
}
.about-image {
    flex: 1;
    order: -1;
    margin-bottom: 2rem;
}
.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
    .about-grid {
        flex-direction: row;
    }
    .about-image {
        order: 1;
        margin-bottom: 0;
    }
}

.about-text p {
    margin-bottom: 1.25rem;   /* creates clear vertical space between each paragraph */
    line-height: 1.6;         /* keeps text readable */
}

.about-text .btn {
    margin-top: 0.5rem;       /* separates the button from the last paragraph */
    display: inline-block;
}
/* ── WHY PROCUREMENT GUYS ── */
.why-procurement {
    padding: 4rem 0;
    background: #04509b;
    background-image: url('images/why-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.why-procurement::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4, 80, 155, 0.88) 0%, rgba(2, 60, 120, 0.84) 100%);
    z-index: 0;
}
.why-procurement .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}
.why-procurement h2 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}
.why-procurement .sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}
.why-procurement .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
}
@media (min-width: 1200px) {
    .why-procurement .grid {
        grid-template-columns: repeat(6, 1fr);
    }
}
.why-procurement .item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.6rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.why-procurement .item:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.why-procurement .item i {
    font-size: 2.2rem;
    color: #DF0021;
    margin-bottom: 0.7rem;
    display: block;
}
.why-procurement .item h4 {
    color: #fff;
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.why-procurement .item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    line-height: 1.55;
}

/* ── FEATURE CARDS ── */
.feature-cards {
    padding: 2.5rem 0;
    background: #fff;
}
.feature-cards .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.feature-card {
    background: #f5f5f5;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #dcdcdc;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s, box-shadow 0.25s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}
.feature-card .card-img {
    height: 180px;
    background: linear-gradient(135deg, #04509b, #023c78);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.feature-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.feature-card .card-img .label {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.feature-card .card-img.voip-bg {
    background: linear-gradient(135deg, #b3001a, #DF0021);
}
.feature-card .card-img.lte-bg {
    background: linear-gradient(135deg, #0056b3, #003d80);
}
.feature-card .card-body {
    padding: 1.2rem 1.5rem 1.5rem;
    text-align: center;
}
.feature-card .card-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #04509b;
    margin-bottom: 0.3rem;
}
.feature-card .card-body p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}
.feature-card .card-body .cta {
    display: inline-block;
    margin-top: 0.8rem;
    color: #DF0021;
    font-weight: 700;
    font-size: 0.9rem;
}
.feature-card .card-body .cta i {
    margin-left: 4px;
    transition: transform 0.2s;
}
.feature-card:hover .card-body .cta i {
    transform: translateX(4px);
}
@media (max-width: 767px) {
    .feature-cards .container {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .feature-cards .container {
        grid-template-columns: 1fr;
    }
}

/* ── ICON STRIP ── */
.icon-strip {
    background: #f5f5f5;
    padding: 0.6rem 0;
    border-bottom: 1px solid #dcdcdc;
}
.icon-strip .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
    flex-wrap: wrap;
}
.icon-strip .icon-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
}
.icon-strip .icon-item i {
    font-size: 1.8rem;
    color: #04509b;
}

/* ── SOLUTIONS ── */
.solutions {
    background-color: #f0f4f8;
}
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.solution-tile {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    border: 1px solid #dcdcdc;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 4px solid transparent;
    cursor: pointer;
}
.solution-tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-bottom-color: #DF0021;
    color: inherit;
}
.solution-tile-logistics {
    cursor: default;
}
.solution-tile-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(223, 0, 33, 0.1), rgba(4, 80, 155, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}
.solution-tile:hover .solution-tile-icon {
    background: linear-gradient(135deg, rgba(223, 0, 33, 0.18), rgba(4, 80, 155, 0.18));
}
.solution-tile-icon i {
    font-size: 2rem;
    color: #DF0021;
}
.solution-tile h3 {
    font-size: 1.1rem;
    color: #04509b;
    margin-bottom: 0.5rem;
}
.solution-tile p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    flex: 1;
}
.tile-cta {
    font-size: 0.9rem;
    font-weight: 700;
    color: #DF0021;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.3s ease;
}
.solution-tile:hover .tile-cta {
    gap: 0.8rem;
}
.logistics-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: auto;
}
.logistics-link {
    font-size: 0.88rem;
    font-weight: 700;
    color: #DF0021;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    padding: 0.45rem 1rem;
    border: 1.5px solid #DF0021;
    border-radius: 20px;
    transition: all 0.3s ease;
}
.logistics-link:hover {
    background: #DF0021;
    color: #fff;
}
@media (min-width: 768px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .solution-tile {
        padding: 2rem 1.5rem;
    }
}
@media (min-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1280px) {
    .solutions-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ── CTA BANNER ── */
.cta-banner {
    background-color: #04509b;
    background-image: url('images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
    padding: 4rem 0;
    box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4, 80, 155, 0.82) 0%, rgba(2, 60, 120, 0.78) 100%);
    z-index: 1;
}
.cta-banner .container {
    position: relative;
    z-index: 2;
}
.cta-banner h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}
.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    color: #fff;
}

/* ── CONTACT ── */
.contact .container {
    text-align: center;
}
.contact-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: left;
}
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
}
.info-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid #dcdcdc;
}
.contact-icon {
    font-size: 2.5rem;
    color: #04509b;
    margin-bottom: 0.5rem;
    display: block;
}
.info-card h3 {
    font-size: 1.4rem;
    color: #04509b;
    margin-bottom: 0.3rem;
}
.info-card p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    color: #666;
}
.info-card a {
    font-weight: 500;
    color: #04509b;
    text-decoration: none;
}
.info-card a:hover {
    color: #DF0021;
}
.contact-form-container {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #dcdcdc;
    width: 100%;
}
.contact-form-container h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: #04509b;
}
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
    color: #04509b;
    font-size: 1rem;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #04509b;
    outline: none;
    box-shadow: 0 0 0 3px rgba(4, 80, 155, 0.2);
}
.contact-form .btn-primary {
    width: 100%;
    padding: 1rem 0;
    margin-top: 0.5rem;
    font-size: 1.2rem;
}
@media (min-width: 768px) {
    .contact-content {
        flex-direction: row;
        align-items: flex-start;
    }
    .contact-form-container {
        flex: 3;
        width: auto;
    }
    .contact-info-grid {
        flex: 2;
        grid-template-columns: 1fr;
    }
}

/* ── FAQ ── */
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}
.faq-bee-left .faq-grid {
    max-width: 100%;
    margin: 0;
}
.faq-item {
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}
.faq-question {
    padding: 1rem 1.5rem;
    font-weight: 700;
    color: #04509b;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    -webkit-user-select: none;
    user-select: none;
}
.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #DF0021;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 0.5rem;
}
.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 1.5rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1rem;
}
.faq-bee-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.faq-bee-left,
.faq-bee-right {
    flex: 1;
}
.section-title-left {
    text-align: left;
}
.section-title-left::after {
    left: 0;
    transform: none;
}
.faq-grid {
    max-width: 100%;
}

/* ── NEWSLETTER ── */
.newsletter-section {
    background: linear-gradient(135deg, #04509b 0%, #023c78 100%);
    text-align: center;
    padding: 4rem 0;
}
.newsletter-section .section-title {
    color: #fff;
}
.newsletter-section .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
}
.newsletter-form-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.newsletter-input-group {
    display: flex;
    gap: 0;
    max-width: 520px;
    width: 100%;
}
.newsletter-input-group input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    outline: none;
}
.newsletter-input-group .btn {
    border-radius: 0 50px 50px 0;
    padding: 0.9rem 1.8rem;
    white-space: nowrap;
}
.newsletter-note {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
    margin: 0;
}
@media (max-width: 600px) {
    .newsletter-input-group {
        flex-direction: column;
        align-items: stretch;
    }
    .newsletter-input-group input {
        border-radius: 50px;
        margin-bottom: 0.5rem;
    }
    .newsletter-input-group .btn {
        border-radius: 50px;
    }
}

/* ── FOOTER ── */
.footer {
    background-color: #04509b;
    background-image: url('images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #f8f8f8;
    font-size: 0.88rem;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4, 80, 155, 0.92) 0%, rgba(2, 60, 120, 0.88) 100%);
    z-index: 0;
}
.footer .container {
    position: relative;
    z-index: 1;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 2rem;
    padding: 2.5rem 0 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 768px) and (max-width: 1023px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}
.footer-col h4 {
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.9rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #DF0021;
    display: inline-block;
}
.footer-col p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.25rem;
    line-height: 1.6;
}
.footer-col ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    columns: 2;
    column-gap: 1rem;
}
.footer-col ul li {
    margin-bottom: 0.3rem;
}
.footer-col a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.86rem;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: #fff;
}
.footer-col .contact-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.45rem;
    color: rgba(255,255,255,0.65);
}
.footer-col .contact-line i {
    color: #DF0021;
    flex-shrink: 0;
}
.footer-col .contact-line a {
    color: rgba(255,255,255,0.65);
}
.footer-col .contact-line a:hover {
    color: #fff;
}
.footer-tagline {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.6rem;
    line-height: 1.5;
}
.social-links {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-start;
    gap: 0.6rem;
}
.social-links a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: background 0.25s, transform 0.2s;
    text-decoration: none;
}
.social-links a:hover {
    background: #DF0021;
    transform: translateY(-2px);
}
.social-links a[aria-label="WhatsApp"]:hover {
    background: #25D366;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.9rem 0;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
}
.footer-bottom a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom a:hover {
    color: #fff;
}
/* footer bottom mobile handled in main responsive block above */
.newsletter-form {
    display: flex;
    margin-top: 0.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.newsletter-form input {
    flex-grow: 1;
    min-width: 0;
    max-width: 300px;
    padding: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px 0 0 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.95rem;
}
.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.newsletter-form .btn-subscribe {
    background: #DF0021;
    color: #fff;
    border: none;
    padding: 0.7rem 1rem;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}
.newsletter-form .btn-subscribe:hover {
    background: #b3001a;
}

/* ── SCROLL TO TOP ── */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #04509b;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: opacity 0.3s, visibility 0.3s;
}
.scroll-to-top:hover {
    background: #023c78;
}

/* ── FADE IN ── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* ── FLOATING WHATSAPP CHAT ── */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    z-index: 1001;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: wa-pulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.6);
    animation: none;
}
.whatsapp-float .wa-tooltip {
    position: absolute;
    right: 68px;
    background: #fff;
    color: #1a1a1a;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    font-family: 'Inter', sans-serif;
}
.whatsapp-float .wa-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #fff;
    border-right: none;
}
.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
}
@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45); }
    50% { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.75); }
}
.wa-bubble {
    position: fixed;
    bottom: 150px;
    right: 85px;
    background: #fff;
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    padding: 10px 16px;
    border-radius: 18px 18px 4px 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px) scale(0.9);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
    z-index: 999;
    border: 1px solid rgba(37, 211, 102, 0.2);
}
.wa-bubble::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -8px;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-left-color: #fff;
    border-right: none;
    border-bottom: none;
}
.wa-bubble.show {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

/* ── RESPONSIVE ── */

/* ── LARGE DESKTOPS (1400px+) ── */
@media (min-width: 1400px) {
    .hero-title {
        font-size: 5rem;
    }
    .hero-description {
        font-size: 1.35rem;
    }
    .section-title {
        font-size: 2.4rem;
    }
    .why-procurement h2 {
        font-size: 2.6rem;
    }
}

/* ── MEDIUM-LARGE (1200px–1399px) ── */
@media (min-width: 1200px) and (max-width: 1399px) {
    .hero-title {
        font-size: 4.2rem;
    }
}

/* ── TABLET LANDSCAPE / SMALL DESKTOP (992px–1199px) ── */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-title {
        font-size: 3.6rem;
    }
    .why-procurement .grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .feature-cards .container {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-main {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 1.5rem;
    }
}

/* ── TABLET PORTRAIT (768px–991px) ── */
@media (min-width: 768px) and (max-width: 991px) {
    body {
        padding-top: 66px;
    }
    .hero {
        padding: 4.5rem 0;
        min-height: 60vh;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-description {
        font-size: 1.05rem;
    }
    .hero-subtitle {
        font-size: 1.5rem;
    }
    .hero-globe-img {
        width: 280px;
        height: 280px;
    }
    .why-procurement .grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .why-procurement h2 {
        font-size: 1.9rem;
    }
    .feature-cards .container {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        flex-direction: row;
        align-items: center;
    }
    .about-image {
        order: 1;
        margin-bottom: 0;
    }
    .contact-content {
        flex-direction: row;
        align-items: flex-start;
    }
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .section-padding {
        padding: 3.5rem 0;
    }
}

/* ── MOBILE (max 767px) ── */
@media (max-width: 767px) {
    .section-padding {
        padding: 2.5rem 0;
    }
    .hero {
        padding: 3.5rem 0;
        min-height: auto;
    }
    .hero-content {
        padding: 0 1rem;
    }
    .icon-strip .container {
        gap: 0.8rem;
    }
    .icon-strip .icon-item {
        font-size: 0.75rem;
    }
    .why-procurement h2 {
        font-size: 1.6rem;
    }
    .why-procurement .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.9rem;
    }
    .header-new .logo h1 {
        font-size: 0.95rem;
    }
    .header-new .logo img {
        height: 30px;
    }
    .feature-cards .container {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    .contact-content {
        flex-direction: column;
    }
    .faq-bee-content {
        flex-direction: column;
    }
    .newsletter-input-group {
        flex-direction: column;
        align-items: stretch;
    }
    .whatsapp-float {
        bottom: 80px;
        right: 16px;
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
    .wa-bubble {
        bottom: 140px;
        right: 70px;
        white-space: normal;
        max-width: 200px;
        font-size: 11px;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .section-subtitle {
        font-size: 0.97rem;
    }
    .cta-banner h2 {
        font-size: 1.5rem;
    }
    .cta-banner p {
        font-size: 1rem;
    }
    .footer-main {
        grid-template-columns: 1fr;
        padding: 2rem 0 1rem;
    }
    .footer-col ul {
        columns: 1;
    }
    .social-links {
        justify-content: center;
    }
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
    .scroll-to-top {
        bottom: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
    }
}

/* ── SMALL MOBILE (max 600px) ── */
@media (max-width: 600px) {
    .feature-cards .container {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 1.85rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-description {
        font-size: 0.97rem;
    }
    .hero-buttons .btn {
        width: 100%;
        margin: 0;
    }
    .why-procurement .grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-form-container {
        padding: 1.2rem;
    }
}

/* ── EXTRA SMALL (max 420px) ── */
@media (max-width: 420px) {
    .why-procurement .grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.7rem;
    }
    .why-procurement .item {
        padding: 1.1rem 0.7rem;
    }
    .hero-title {
        font-size: 1.6rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-buttons .btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
    .section-title {
        font-size: 1.4rem;
    }
    .faq-question {
        font-size: 0.95rem;
        padding: 0.9rem 1rem;
    }
}
/* ===== UNIFIED SERVICE CARDS ===== */
.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-detail-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.8rem 1.5rem;
    border: 1px solid #e0e6ed;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.service-icon {
    width: 48px;
    height: 48px;
    color: #004080;
    margin-bottom: 1.2rem;
    display: block;
}

.service-detail-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a2a40;
}

.service-detail-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4a5568;
    margin-bottom: 1.2rem;
    flex: 1;
}

.service-detail-card .card-link {
    color: #DF0021;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: auto;
    transition: gap 0.2s;
}

.service-detail-card .card-link:hover {
    gap: 0.5rem;
    text-decoration: underline;
}

/* For pages without links, ensure consistent spacing */
.service-detail-card:not(:has(.card-link)) p {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .service-detail-card {
        padding: 1.5rem;
    }
}
/* ── SIMPLE DROPDOWN NAV (new header structure) ── */
.header-new .nav-top-link {
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.35rem 0.3rem;
    white-space: nowrap;
    transition: color 0.2s;
    position: relative;
}
.header-new .nav-top-link:hover,
.header-new .nav-top-link.active {
    color: #fff;
}
.header-new .nav-top-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #DF0021;
}
.header-new .nav-has-drop {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    cursor: pointer;
}
.header-new .nav-has-drop .arrow {
    font-size: 0.6rem;
    transition: transform 0.2s;
    display: inline-flex;
    align-items: center;
}
.header-new .nav-simple-dropdown {
    position: relative;
}
.header-new .nav-simple-dropdown.open .nav-has-drop .arrow {
    transform: rotate(180deg);
}
.header-new .nav-simple-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
    border: 1px solid #ddd;
    min-width: 200px;
    padding: 0.4rem 0;
    z-index: 9999;
}
.header-new .nav-simple-dropdown.open .nav-simple-menu {
    display: block;
}
.header-new .nav-simple-menu a {
    display: block;
    padding: 0.45rem 1.1rem;
    color: #333;
    font-size: 0.83rem;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}
.header-new .nav-simple-menu a:hover {
    background: #f0f5ff;
    color: #04509b;
}
.header-new .nav-simple-menu a.nav-drop-parent {
    font-weight: 700;
    color: #04509b;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 0.2rem;
    padding-bottom: 0.55rem;
}
.header-new .nav-simple-menu a.nav-drop-parent:hover {
    background: #e8f0fb;
}

/* Mobile accordion button style */
.mobile-accordion {
    list-style: none;
}
.mobile-acc-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    padding: 0.5rem 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    text-align: left;
}
.mobile-acc-btn:hover {
    color: #fff;
}