/*
Theme Name: iTradeFairs
Theme URI: https://itradefairs.in/
Author: Interglobe Trade Fairs Pvt Ltd
Author URI: https://itradefairs.in/
Description: A modern, responsive WordPress theme for INTERGLOBE TRADE FAIRS PVT LTD - trade shows, exhibitions, and business networking events organizer based in Navi Mumbai, India.
Version: 1.4.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: itradefairs
Tags: business, corporate, trade-show, exhibition, events, responsive, one-column, two-columns, custom-menu, custom-logo, featured-images, theme-options
*/

/* ============================================
   RESET & BASE STYLES
============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    color: #555;
    line-height: 1.7;
    font-size: 15px;
    background: #fff;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #0033A0;
    margin: 0 0 15px;
    line-height: 1.3;
    font-weight: 700;
}
h1 { font-size: 42px; }
h2 { font-size: 34px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
p { margin: 0 0 15px; }
a { color: #F26522; text-decoration: none; transition: all .3s ease; }
a:hover { color: #0033A0; }
img { max-width: 100%; height: auto; display: block; }
ul { padding: 0; margin: 0; list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.col { flex: 1; padding: 0 15px; }
.col-6 { flex: 0 0 50%; max-width: 50%; padding: 0 15px; }
.col-4 { flex: 0 0 33.333%; max-width: 33.333%; padding: 0 15px; }
.col-3 { flex: 0 0 25%; max-width: 25%; padding: 0 15px; }

.btn {
    display: inline-block;
    padding: 12px 32px;
    background: #F26522;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    border: 2px solid #F26522;
    cursor: pointer;
}
.btn:hover { background: transparent; color: #F26522; }
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: #F26522; }

.section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { position: relative; padding-bottom: 20px; }
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 3px;
    background: #F26522;
}
.section-title p { color: #888; max-width: 700px; margin: 0 auto; }

/* ============================================
   HEADER
============================================ */
.top-bar {
    background: #0033A0;
    color: #fff;
    padding: 10px 0;
    font-size: 13px;
}
.top-bar .container { display: flex; justify-content: space-between; flex-wrap: wrap; }
.top-bar a { color: #fff; }
.top-bar a:hover { color: #F26522; }
.top-bar .info span { margin-right: 20px; }
.top-bar .info i { color: #F26522; margin-right: 6px; }

.site-header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-logo,
.site-logo a,
.site-logo .custom-logo-link {
    display: inline-block;
    min-height: 0 !important;
    line-height: 1;
}
.site-logo img,
.site-logo .custom-logo-link img,
.custom-logo {
    max-height: 55px !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    display: block;
}
.site-logo .site-title {
    font-size: 20px;
    font-weight: 700;
    color: #0033A0;
    margin: 0;
}

.main-navigation ul { display: flex; align-items: center; }
.main-navigation li {
    position: relative;
    margin-left: 5px;
}
.main-navigation a {
    display: block;
    padding: 10px 15px;
    color: #0033A0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a {
    color: #F26522;
}
.main-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 240px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
    border-top: 3px solid #F26522;
}
.main-navigation li:hover > .sub-menu { display: flex; }
.main-navigation .sub-menu li { margin: 0; }
.main-navigation .sub-menu a {
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #0033A0;
}

/* ============================================
   HERO SLIDER
============================================ */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 600px;
}
.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(28, 35, 49, 0.65);
}
.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 1000px;
    padding: 0 20px;
    margin: 0 auto;
    text-align: center;
}
.hero-content h1 {
    color: #fff;
    font-size: 50px;
    margin-bottom: 20px;
}
.hero-content .hero-title-single,
.hero-content h1.hero-title-single,
.hero-content h2.hero-title-single {
    color: #fff;
    margin-bottom: 20px;
    white-space: nowrap;
    font-size: clamp(20px, 4vw, 50px);
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 700;
    line-height: 1.2;
}
.hero-content p em {
    font-style: italic;
    color: #ffd9b8;
    font-weight: 500;
}
.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}
.hero-content .industry-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 25px 0;
    text-align: left;
    font-size: 15px;
}
.hero-content .industry-list li::before {
    content: '✓ ';
    color: #F26522;
    font-weight: bold;
}

.slider-nav {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}
.slider-nav button {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: all .3s;
}
.slider-nav button.active { background: #F26522; width: 35px; border-radius: 7px; }

/* ============================================
   SERVICES SECTION
============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-box {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all .4s ease;
    position: relative;
    border-top: 4px solid transparent;
}
.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-top-color: #F26522;
}
.service-box .number {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 80px;
    font-weight: 800;
    color: #f5f5f5;
    line-height: 1;
}
.service-box h3 {
    position: relative;
    margin-bottom: 15px;
}
.service-box p { position: relative; color: #777; }
.service-box .read-more {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

/* CTA Strip */
.cta-strip {
    background: linear-gradient(135deg, #F26522 0%, #d4541a 100%);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}
.cta-strip h2 { color: #fff; margin-bottom: 25px; font-size: 32px; }
.cta-strip .btn { background: #fff; color: #F26522; border-color: #fff; }
.cta-strip .btn:hover { background: transparent; color: #fff; }

/* ============================================
   PROJECTS / RECENT WORKS
============================================ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4 / 3;
}
.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.project-item:hover img { transform: scale(1.1); }
.project-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,51,160,0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    color: #fff;
}
.project-item .overlay h3 {
    color: #fff;
    margin: 0;
    font-size: 20px;
}

/* ============================================
   ABOUT / VISION-MISSION
============================================ */
.vision-mission-section { background: #f7f8fa; }
.vm-box {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    height: 100%;
}
.vm-box .icon {
    width: 70px; height: 70px;
    background: #F26522;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}
.vm-box h3 { font-size: 26px; margin-bottom: 15px; }

/* ============================================
   FOUNDERS
============================================ */
.founders-section { background: #fff; padding: 80px 0; }
.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.founder-card {
    background: #f7f8fa;
    padding: 35px;
    border-left: 4px solid #F26522;
    border-radius: 4px;
}
.founder-card h4 { margin-bottom: 10px; color: #F26522; }
.founder-card .name { font-weight: 700; color: #0033A0; font-size: 18px; margin-top: 15px; }

/* ============================================
   PAGE HEADER / BREADCRUMB
============================================ */
.page-header {
    background: linear-gradient(rgba(0,51,160,0.85), rgba(0,51,160,0.85)),
                url('assets/images/page-header-bg.jpg') center/cover;
    color: #fff;
    padding: 90px 0;
    text-align: center;
}
.page-header h1 { color: #fff; font-size: 44px; }
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    margin-top: 15px;
}
.breadcrumb a { color: #F26522; }

/* ============================================
   CONTACT FORM
============================================ */
.contact-info-box {
    background: #0033A0;
    color: #fff;
    padding: 40px;
    border-radius: 8px;
    height: 100%;
}
.contact-info-box h3 { color: #fff; }
.contact-info-box .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-info-box .info-item:last-child { border: none; }
.contact-info-box .info-item i {
    color: #F26522;
    font-size: 22px;
    margin-right: 15px;
    min-width: 30px;
}
.contact-info-box a { color: rgba(255,255,255,0.85); }

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 15px;
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #F26522;
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
    background: #0033A0;
    color: #b8c0d0;
    padding: 70px 0 0;
}
.footer-widgets {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}
.site-footer h4 {
    color: #fff;
    margin-bottom: 22px;
    font-size: 18px;
    position: relative;
    padding-bottom: 12px;
}
.site-footer h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 2px;
    background: #F26522;
}
.site-footer a { color: #b8c0d0; }
.site-footer a:hover { color: #F26522; padding-left: 5px; }
.site-footer ul li { padding: 6px 0; transition: all .3s; }
.footer-logo { max-height: 60px; margin-bottom: 20px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
}
.footer-bottom p { margin: 0; }
.footer-credit {
    margin-top: 6px !important;
    font-size: 12.5px;
    color: rgba(255,255,255,0.55);
}
.footer-credit a {
    color: rgba(255,255,255,0.75);
    font-weight: 600;
    transition: color .3s ease;
}
.footer-credit a:hover { color: #F26522; }

/* ============================================
   SERVICES PAGE — LAYOUT WITH SIDEBAR
============================================ */
.services-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: flex-start;
}
.services-grid-2col {
    grid-template-columns: repeat(2, 1fr) !important;
}

/* Sidebar shell */
.services-sidebar {
    position: sticky;
    top: 100px;
}
.sidebar-widget {
    background: #fff;
    border-radius: 8px;
    padding: 28px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}
/* Services list widget: less side padding so list extends edge-to-edge */
.sidebar-widget.sidebar-services {
    padding: 28px 0 10px;
}
.sidebar-widget.sidebar-services .sidebar-widget-title {
    padding: 0 28px 12px;
    margin-bottom: 10px;
}
.sidebar-widget.sidebar-services .sidebar-widget-title::after {
    left: 28px;
}
.sidebar-widget-title {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    position: relative;
}
.sidebar-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 3px;
    background: #F26522;
}

/* Service links list — clean, simple style */
.sidebar-services-list {
    margin: 0;
    padding: 0;
}
.sidebar-services-list li {
    border-bottom: 1px solid #eef0f4;
    list-style: none;
}
.sidebar-services-list li:last-child { border-bottom: none; }
.sidebar-services-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    color: #0033A0;
    font-weight: 500;
    font-size: 14.5px;
    line-height: 1.4;
    border-left: 3px solid transparent;
    transition: all .25s ease;
}
.sidebar-services-list a span {
    flex: 1;
}
.sidebar-services-list a .arrow {
    color: #F26522;
    font-size: 11px;
    opacity: 0;
    transform: translateX(-6px);
    transition: all .25s ease;
    flex-shrink: 0;
    margin-left: 10px;
}
.sidebar-services-list a:hover {
    color: #F26522;
    background: #fff8f3;
    border-left-color: #F26522;
    padding-left: 20px;
}
.sidebar-services-list a:hover .arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Active state */
.sidebar-services-list li.is-active a {
    color: #F26522;
    background: #fff8f3;
    border-left-color: #F26522;
    padding-left: 20px;
    font-weight: 600;
}
.sidebar-services-list li.is-active a .arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Us widget (sidebar) */
.sidebar-contact {
    background: linear-gradient(135deg, #0033A0 0%, #022b87 100%);
    color: #cfd5e1;
}
.sidebar-contact .sidebar-widget-title { color: #fff; }
.sidebar-contact p {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    margin-bottom: 20px;
}
.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sidebar-contact-item:last-of-type { border: none; padding-bottom: 18px; }
.sidebar-contact-item i {
    color: #F26522;
    font-size: 18px;
    width: 40px; height: 40px;
    background: rgba(242,101,34,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidebar-contact-item small {
    display: block;
    color: rgba(255,255,255,0.55);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}
.sidebar-contact-item a {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}
.sidebar-contact-item a:hover { color: #F26522; }
.sidebar-contact-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 8px;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px; height: 55px;
    background: #25D366;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 6px 20px rgba(37,211,102,0.45);
    z-index: 9999;
    transition: all .3s ease;
    animation: itf-whatsapp-pulse 2s infinite;
}
.whatsapp-float:hover {
    background: #1da851;
    color: #fff !important;
    transform: scale(1.1);
}
@keyframes itf-whatsapp-pulse {
    0%   { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.55); }
    70%  { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 18px rgba(37,211,102,0); }
    100% { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ============================================
   FLOATING SCROLL-TO-TOP BUTTON
============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px; height: 50px;
    background: linear-gradient(135deg, #F26522 0%, #d4541a 100%);
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(242,101,34,0.40);
    z-index: 9998;
    text-decoration: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.85);
    transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255,255,255,0.18);
}
.scroll-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.scroll-to-top:hover {
    background: linear-gradient(135deg, #0033A0 0%, #022b87 100%);
    color: #fff !important;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 28px rgba(0,51,160,0.45);
}
.scroll-to-top:active {
    transform: translateY(0) scale(0.96);
}
.scroll-to-top i {
    transition: transform .3s;
    display: inline-block;
}
.scroll-to-top:hover i {
    transform: translateY(-3px);
    animation: itf-scrolltop-bounce 0.8s ease infinite;
}
@keyframes itf-scrolltop-bounce {
    0%, 100% { transform: translateY(-3px); }
    50%      { transform: translateY(-6px); }
}

/* ============================================
   SECTION EYEBROW (small caps tag above headings)
============================================ */
.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #F26522;
    margin-bottom: 12px;
    position: relative;
    padding: 6px 14px;
    background: rgba(242,101,34,0.10);
    border-radius: 20px;
}

/* ============================================
   ABOUT PAGE — IMAGE SLIDER (no text overlay)
============================================ */
.about-slider-section {
    padding: 60px 0 0;
}
.about-image-slider {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,51,160,0.15);
    aspect-ratio: 16 / 7;
    background: #f5f5f5;
}
.about-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .8s ease;
}
.about-slide.active { opacity: 1; z-index: 2; }
.about-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    color: #0033A0;
    font-size: 18px;
    cursor: pointer;
    z-index: 5;
    transition: all .3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.about-slider-arrow:hover {
    background: #F26522;
    color: #fff;
}
.about-slider-arrow.prev { left: 25px; }
.about-slider-arrow.next { right: 25px; }
.about-slider-dots {
    position: absolute;
    bottom: 20px; left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}
.about-slider-dots button {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    border: none;
    cursor: pointer;
    transition: all .3s;
}
.about-slider-dots button.active {
    background: #F26522;
    width: 32px;
    border-radius: 6px;
}

/* About intro centered content */
.about-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.about-intro h2 { margin-bottom: 20px; }

/* ============================================
   WHY-CHOOSE GRID
============================================ */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.why-choose-card {
    background: #fff;
    padding: 35px 25px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,51,160,0.06);
    transition: all .4s ease;
    border-bottom: 4px solid transparent;
}
.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,51,160,0.12);
    border-bottom-color: #F26522;
}
.why-icon {
    width: 75px; height: 75px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0033A0 0%, #022b87 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: all .4s;
}
.why-choose-card:hover .why-icon {
    background: linear-gradient(135deg, #F26522 0%, #d4541a 100%);
    transform: rotateY(180deg);
}

/* ============================================
   SIDEBAR CTA (front page)
============================================ */
.sidebar-cta {
    background: linear-gradient(135deg, #0033A0 0%, #022b87 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.sidebar-cta::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 150px; height: 150px;
    background: rgba(242,101,34,0.15);
    border-radius: 50%;
}
.sidebar-cta::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -40px;
    width: 100px; height: 100px;
    background: rgba(242,101,34,0.10);
    border-radius: 50%;
}
.sidebar-cta-icon {
    width: 70px; height: 70px;
    background: #F26522;
    color: #fff;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(242,101,34,0.4);
}
.sidebar-cta h3 {
    color: #fff;
    font-size: 22px;
    position: relative;
    z-index: 2;
}
.sidebar-cta p {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
}
.sidebar-cta-phone {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    padding: 10px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
    transition: all .3s;
}
.sidebar-cta-phone:hover {
    background: #F26522;
    color: #fff;
}
.sidebar-cta-phone i { margin-right: 6px; }
.sidebar-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
    background: #F26522;
    border-color: #F26522;
}
.sidebar-cta-btn:hover {
    background: #fff;
    color: #0033A0;
    border-color: #fff;
}

/* ============================================
   SERVICES LANDING PAGE — INTRO STRIP
============================================ */
.services-intro-strip {
    background: linear-gradient(135deg, #0033A0 0%, #022b87 100%);
    padding: 40px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.services-intro-strip::before,
.services-intro-strip::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(242,101,34,0.10);
    pointer-events: none;
}
.services-intro-strip::before { top: -100px; right: -100px; width: 300px; height: 300px; }
.services-intro-strip::after { bottom: -80px; left: -80px; width: 200px; height: 200px; }

.intro-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}
.intro-strip-item {
    display: flex;
    align-items: center;
    gap: 18px;
}
.intro-strip-icon {
    width: 60px; height: 60px;
    flex-shrink: 0;
    background: #F26522;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 6px 16px rgba(242,101,34,0.4);
}
.intro-strip-item h4 {
    color: #fff;
    font-size: 16px;
    margin: 0 0 4px;
}
.intro-strip-item p {
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   SERVICES LANDING — CARDS GRID
============================================ */
.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.service-card-link { display: block; }
.service-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,51,160,0.07);
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid transparent;
    height: 100%;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 80px; height: 80px;
    background: linear-gradient(135deg, rgba(242,101,34,0.10) 0%, transparent 70%);
    border-radius: 0 12px 0 80px;
    transition: all .4s;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,51,160,0.15);
    border-bottom-color: #F26522;
}
.service-card:hover::before {
    width: 140px; height: 140px;
}
.service-card-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, #0033A0 0%, #022b87 100%);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
    transition: all .4s;
    position: relative;
    z-index: 2;
}
.service-card:hover .service-card-icon {
    background: linear-gradient(135deg, #F26522 0%, #d4541a 100%);
    transform: rotate(-8deg) scale(1.05);
}
.service-card h3 {
    color: #0033A0;
    margin-bottom: 12px;
    font-size: 20px;
    transition: color .3s;
    position: relative;
    z-index: 2;
}
.service-card:hover h3 { color: #F26522; }
.service-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}
.service-card-arrow {
    display: inline-flex;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(242,101,34,0.10);
    color: #F26522;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    position: relative;
    z-index: 2;
}
.service-card:hover .service-card-arrow {
    background: #F26522;
    color: #fff;
    transform: translateX(6px);
}

/* ============================================
   SIDEBAR — WHATSAPP MINI WIDGET
============================================ */
.sidebar-whatsapp {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
    color: #fff;
    padding: 18px 22px;
}
.sidebar-whatsapp i {
    font-size: 32px;
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sidebar-whatsapp small {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 2px;
}
.sidebar-whatsapp a {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}

/* ============================================
   SERVICE DETAIL PAGE
============================================ */
.service-detail-header {
    padding: 80px 0;
}
.service-header-content {
    text-align: center;
}
.service-header-icon {
    width: 90px; height: 90px;
    background: #F26522;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    margin: 0 auto 22px;
    box-shadow: 0 10px 30px rgba(242,101,34,0.45);
    position: relative;
    z-index: 2;
}
.service-detail-header h1 {
    position: relative;
    z-index: 2;
}

.service-detail-intro h2 {
    margin-bottom: 18px;
}
.service-detail-intro .lead {
    font-size: 18px;
    color: #444;
    font-weight: 500;
    border-left: 4px solid #F26522;
    padding-left: 20px;
    margin: 22px 0;
}
.service-detail-body {
    color: #555;
    font-size: 15px;
    margin-bottom: 40px;
}

/* Features grid */
.service-features-block {
    background: #f7f8fa;
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 40px;
}
.service-features-block h3 {
    color: #0033A0;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}
.service-features-block h3::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 3px;
    background: #F26522;
}
.service-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 25px;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
}
.feature-item i {
    color: #F26522;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}
.feature-item span {
    color: #444;
    font-weight: 500;
}

/* Process steps */
.service-process-block {
    margin-bottom: 40px;
}
.service-process-block h3 {
    color: #0033A0;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}
.service-process-block h3::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 3px;
    background: #F26522;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.process-step {
    background: #fff;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #eef0f4;
    transition: all .3s;
    position: relative;
}
.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,51,160,0.10);
    border-color: #F26522;
}
.process-step .step-num {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, #0033A0 0%, #022b87 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    margin: 0 auto 15px;
}
.process-step h4 {
    color: #0033A0;
    margin-bottom: 8px;
    font-size: 17px;
}
.process-step p {
    font-size: 13px;
    color: #777;
    margin: 0;
}

/* Inline CTA on service detail */
.service-detail-cta {
    background: linear-gradient(135deg, #0033A0 0%, #022b87 100%);
    color: #fff;
    padding: 35px 40px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}
.service-detail-cta::after {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(242,101,34,0.30) 0%, transparent 70%);
    pointer-events: none;
}
.service-detail-cta h3 {
    color: #fff;
    margin: 0 0 6px;
    font-size: 22px;
    position: relative;
    z-index: 2;
}
.service-detail-cta p {
    color: rgba(255,255,255,0.85);
    margin: 0;
    position: relative;
    z-index: 2;
}
.service-detail-cta .btn {
    background: #F26522;
    border-color: #F26522;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}
.service-detail-cta .btn:hover {
    background: #fff;
    color: #0033A0;
    border-color: #fff;
}

/* ============================================
   SERVICES LANDING — CARDS WITH IMAGE (CPT version)
============================================ */
.service-card-with-image {
    padding: 0;
    overflow: hidden;
}
.service-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform .5s ease;
}
.service-card-with-image::before { display: none; }
.service-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,51,160,0.55) 100%);
}
.service-card-icon-floating {
    position: absolute;
    bottom: -28px;
    left: 25px;
    width: 60px; height: 60px;
    background: linear-gradient(135deg, #F26522 0%, #d4541a 100%);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 3;
    box-shadow: 0 8px 20px rgba(242,101,34,0.4);
    transition: all .4s ease;
}
.service-card:hover .service-card-icon-floating {
    transform: rotate(-8deg) scale(1.08);
}
.service-card-body {
    padding: 40px 28px 30px;
}
.service-card-body h3 {
    color: #0033A0;
    font-size: 20px;
    margin-bottom: 12px;
    transition: color .3s;
}
.service-card-link:hover .service-card-body h3 { color: #F26522; }
.service-card-body p {
    color: #666;
    font-size: 14px;
    margin-bottom: 18px;
    line-height: 1.6;
}
.service-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #F26522;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    transition: gap .3s;
}
.service-card-link:hover .service-card-cta { gap: 14px; }

/* ============================================
   SERVICE DETAIL — FEATURED IMAGE
============================================ */
.service-detail-featured {
    margin-bottom: 35px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,51,160,0.12);
}
.service-detail-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Style WordPress-generated content from the_content() */
.service-detail-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}
.service-detail-body p:first-of-type {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    border-left: 4px solid #F26522;
    padding-left: 22px;
    margin: 0 0 28px;
}
.service-detail-body ul,
.service-detail-body ol {
    margin: 0 0 20px;
    padding-left: 22px;
}
.service-detail-body li {
    margin-bottom: 8px;
    color: #444;
    line-height: 1.7;
}
.service-detail-body h2,
.service-detail-body h3,
.service-detail-body h4 {
    color: #0033A0;
    margin: 30px 0 15px;
}
.service-detail-body a {
    color: #F26522;
    text-decoration: underline;
}
.service-detail-body img {
    border-radius: 8px;
    margin: 20px 0;
}

/* ============================================
   PREV / NEXT SERVICE NAVIGATION
============================================ */
.service-prev-next {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}
.prev-next-link {
    display: block;
    padding: 22px 25px;
    background: #f7f8fa;
    border-radius: 10px;
    transition: all .3s;
    border: 1px solid transparent;
}
.prev-next-link.next { text-align: right; }
.prev-next-link:hover {
    background: #fff;
    border-color: #F26522;
    box-shadow: 0 10px 25px rgba(0,51,160,0.10);
    transform: translateY(-3px);
}
.prev-next-link small {
    display: block;
    color: #F26522;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 8px;
}
.prev-next-link span {
    display: block;
    color: #0033A0;
    font-weight: 700;
    font-size: 16px;
}

/* ============================================
   SIDEBAR — BROCHURE WIDGET
============================================ */
.sidebar-brochure {
    text-align: center;
    border: 2px dashed #F26522;
    background: linear-gradient(180deg, #fff 0%, #fff8f3 100%);
    padding: 28px 24px;
}
.sidebar-brochure-icon {
    width: 70px; height: 70px;
    margin: 0 auto 15px;
    background: rgba(242,101,34,0.12);
    color: #F26522;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}
.sidebar-brochure h4 {
    color: #0033A0;
    margin-bottom: 8px;
    font-size: 18px;
}
.sidebar-brochure p {
    color: #777;
    font-size: 13px;
    margin-bottom: 16px;
}
.brochure-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #F26522;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    border: 2px solid #F26522;
    border-radius: 30px;
    transition: all .3s;
}
.brochure-link:hover {
    background: #F26522;
    color: #fff;
}

/* ============================================
   PAGINATION
============================================ */
.services-pagination {
    margin-top: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.services-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    color: #0033A0;
    font-weight: 600;
    transition: all .3s;
}
.services-pagination .page-numbers:hover,
.services-pagination .page-numbers.current {
    background: #F26522;
    border-color: #F26522;
    color: #fff;
}

/* ============================================
   FOOTER — ABOUT WIDGET (no logo, About Us heading)
============================================ */
.footer-about h4 {
    /* uses the same .site-footer h4 styles already defined */
}
.footer-about p {
    color: #b8c0d0;
    margin-bottom: 12px;
    line-height: 1.7;
}
.footer-tagline {
    color: #F26522 !important;
    font-style: italic;
    font-size: 15px;
}
.footer-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: #fff !important;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 18px;
    background: rgba(242,101,34,0.18);
    border: 1px solid #F26522;
    border-radius: 30px;
    transition: all .3s;
}
.footer-readmore:hover {
    background: #F26522;
    padding-left: 22px !important;
    color: #fff !important;
}
.footer-readmore i { font-size: 11px; }

/* ============================================
   CONTACT PAGE
============================================ */

/* Hero header variant */
.contact-page-header {
    background: linear-gradient(135deg, rgba(0,51,160,0.92) 0%, rgba(2,43,135,0.92) 100%);
    padding: 90px 0;
}

/* Contact cards strip — under the page header */
.contact-cards-strip {
    padding: 60px 0 30px;
    background: #f7f8fa;
}
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.contact-card {
    background: #fff;
    padding: 35px 28px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,51,160,0.07);
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid transparent;
}
.contact-card::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 120px; height: 120px;
    background: linear-gradient(135deg, rgba(242,101,34,0.08) 0%, transparent 70%);
    border-radius: 50%;
    transition: all .4s;
}
.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,51,160,0.15);
    border-bottom-color: #F26522;
}
.contact-card:hover::before {
    width: 200px; height: 200px;
}
.contact-card-icon {
    width: 75px; height: 75px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0033A0 0%, #022b87 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: all .4s;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(0,51,160,0.25);
}
.contact-card:hover .contact-card-icon {
    background: linear-gradient(135deg, #F26522 0%, #d4541a 100%);
    transform: rotateY(180deg);
    box-shadow: 0 12px 28px rgba(242,101,34,0.40);
}
.contact-card h4 {
    color: #0033A0;
    margin-bottom: 10px;
    font-size: 18px;
    position: relative;
    z-index: 2;
}
.contact-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}
.contact-card p a { color: #0033A0; font-weight: 600; }
.contact-card p a:hover { color: #F26522; }
.contact-card p small {
    display: inline-block;
    margin-top: 6px;
    color: #888;
    font-size: 12px;
}

/* WhatsApp card — green */
.contact-card-whatsapp .contact-card-icon {
    background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
    box-shadow: 0 10px 25px rgba(37,211,102,0.30);
}
.contact-card-whatsapp:hover .contact-card-icon {
    background: linear-gradient(135deg, #1da851 0%, #16923f 100%);
    box-shadow: 0 12px 28px rgba(37,211,102,0.45);
}
.contact-card-whatsapp:hover { border-bottom-color: #25D366; }

/* Contact main section */
.contact-form-section {
    padding-top: 30px;
}

/* Alert messages */
.form-alert {
    padding: 16px 22px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}
.form-alert i { font-size: 20px; }
.form-alert-success {
    background: #d4f4dd;
    color: #155724;
    border-left: 4px solid #28a745;
}
.form-alert-error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Split layout */
.contact-split {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 35px;
    align-items: stretch;
}

/* Form card */
.contact-form-card {
    background: #fff;
    padding: 45px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,51,160,0.08);
    height: 100%;
    border-top: 5px solid #F26522;
}
.contact-form-card h2 {
    margin-bottom: 12px;
}
.form-intro {
    color: #777;
    margin-bottom: 30px;
    font-size: 15px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 4px;
}
.form-field {
    margin-bottom: 20px;
}
.form-field label {
    display: block;
    color: #0033A0;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.form-field label span {
    color: #F26522;
}
.input-with-icon {
    position: relative;
}
.input-with-icon > i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 15px;
    pointer-events: none;
    transition: color .3s;
    z-index: 2;
}
.input-with-icon.textarea-wrap > i {
    top: 22px;
    transform: none;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 18px 15px 48px;
    margin: 0;
    border: 2px solid #eef0f4;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    background: #fafbfd;
    transition: all .3s;
}
.contact-form textarea {
    min-height: 140px;
    resize: vertical;
    padding-top: 16px;
    font-family: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #F26522;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(242,101,34,0.10);
}
.contact-form .input-with-icon:focus-within > i {
    color: #F26522;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #b0b6c2;
}

.btn-submit {
    margin-top: 10px;
    padding: 16px 40px;
    font-size: 14px;
}
.btn-submit i {
    margin-right: 8px;
}

/* Info panel (right) */
.contact-info-panel {
    background: linear-gradient(135deg, #0033A0 0%, #022b87 100%);
    color: #fff;
    padding: 45px 40px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
}
.contact-info-panel::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(242,101,34,0.20) 0%, transparent 70%);
    pointer-events: none;
}
.contact-info-panel::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(242,101,34,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.info-panel-header {
    position: relative;
    z-index: 2;
    margin-bottom: 32px;
}
.contact-info-panel .section-eyebrow {
    background: rgba(242,101,34,0.20);
    color: #ffb88c;
}
.contact-info-panel h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 12px;
}
.contact-info-panel p {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
}

.info-panel-items {
    position: relative;
    z-index: 2;
    margin-bottom: 32px;
}
.info-panel-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.10);
}
.info-panel-item:last-child { border-bottom: none; }
.info-icon {
    width: 45px; height: 45px;
    flex-shrink: 0;
    background: rgba(242,101,34,0.20);
    color: #F26522;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all .3s;
}
.info-panel-item:hover .info-icon {
    background: #F26522;
    color: #fff;
    transform: scale(1.05);
}
.info-panel-item strong {
    display: block;
    color: #fff;
    margin-bottom: 4px;
    font-size: 15px;
}
.info-panel-item p {
    margin: 0;
    color: rgba(255,255,255,0.80);
    font-size: 14px;
    line-height: 1.5;
}
.info-panel-item a { color: rgba(255,255,255,0.95); }
.info-panel-item a:hover { color: #F26522; }

.info-panel-social {
    position: relative;
    z-index: 2;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.info-panel-social strong {
    display: block;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.social-icons {
    display: flex;
    gap: 10px;
}
.social-icons a {
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.10);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all .3s;
}
.social-icons a:hover {
    background: #F26522;
    color: #fff;
    transform: translateY(-4px);
}

/* Map section with floating info card */
.contact-map-section {
    position: relative;
    line-height: 0;
    background: #f7f8fa;
}
.contact-map-section iframe {
    display: block;
    filter: grayscale(20%);
    transition: filter .3s;
}
.contact-map-section:hover iframe { filter: grayscale(0%); }
.map-overlay-info {
    position: absolute;
    top: 25px; left: 0; right: 0;
    z-index: 5;
    pointer-events: none;
}
.map-info-card {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    padding: 18px 28px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,51,160,0.15);
    pointer-events: auto;
    border-left: 4px solid #F26522;
}
.map-info-card i {
    color: #F26522;
    font-size: 32px;
}
.map-info-card strong {
    display: block;
    color: #0033A0;
    font-size: 16px;
    margin-bottom: 2px;
}
.map-info-card p {
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 1.4;
}

/* ============================================
   GLOBAL POLISH UPGRADES
============================================ */
/* Gradient page-header for inner pages */
.page-header {
    background: linear-gradient(135deg, rgba(0,51,160,0.92) 0%, rgba(2,43,135,0.92) 100%),
                url('assets/images/page-header-bg.jpg') center/cover;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.page-header::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(242,101,34,0.25) 0%, transparent 70%);
    pointer-events: none;
}
.page-header h1 {
    font-size: 50px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Slicker buttons */
.btn {
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(242,101,34,0.30);
}
.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left .5s;
}
.btn:hover::before { left: 100%; }

/* Service box upgrades */
.service-box {
    background: linear-gradient(180deg, #fff 0%, #fafbfd 100%);
}
.service-box h3 {
    transition: color .3s;
}
.service-box:hover h3 { color: #F26522; }
.service-box .number {
    transition: all .4s;
}
.service-box:hover .number {
    color: rgba(242,101,34,0.15);
    transform: scale(1.1);
}

/* Hero slider: stronger gradient overlay */
.hero-slide::before {
    background: linear-gradient(135deg, rgba(0,51,160,0.75) 0%, rgba(2,43,135,0.65) 100%);
}

/* Cleaner section title spacing */
.section-title h2 {
    font-size: 38px;
}

/* Smoother top bar */
.top-bar {
    background: linear-gradient(90deg, #0033A0 0%, #022b87 100%);
}

/* Header logo accent line */
.site-header {
    border-bottom: 3px solid #F26522;
}

/* Project items — bigger overlay gradient */
.project-item .overlay {
    background: linear-gradient(to top, rgba(0,51,160,0.92) 0%, rgba(0,51,160,0.30) 60%, transparent 100%);
}

/* Footer gradient */
.site-footer {
    background: linear-gradient(180deg, #0033A0 0%, #001f5e 100%);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 991px) {
    h1 { font-size: 32px; }
    h2 { font-size: 28px; }
    .hero-content h1 { font-size: 36px; }
    .services-grid, .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-widgets { grid-template-columns: repeat(2, 1fr); }
    .col-6, .col-4, .col-3 { flex: 0 0 100%; max-width: 100%; margin-bottom: 30px; }
    .founders-grid { grid-template-columns: 1fr; }
    .services-layout { grid-template-columns: 1fr; }
    .services-sidebar { position: static; }
    .why-choose-grid { grid-template-columns: repeat(2, 1fr); }
    .page-header h1 { font-size: 38px; }
    .about-image-slider { aspect-ratio: 16 / 9; }
    .intro-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .services-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .service-features-grid { grid-template-columns: 1fr; }
    .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-split { grid-template-columns: 1fr; }
    .contact-form-card { padding: 35px 28px; }
}

@media (max-width: 767px) {
    .top-bar { display: none; }
    .menu-toggle { display: block; }
    .main-navigation ul {
        display: none;
        position: absolute;
        top: 100%; left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    .main-navigation ul.active { display: flex; }
    .main-navigation li { width: 100%; margin: 0; }
    .main-navigation a { padding: 15px 20px; border-bottom: 1px solid #f0f0f0; }
    .main-navigation .sub-menu { position: static; box-shadow: none; padding-left: 20px; }
    .services-grid, .projects-grid { grid-template-columns: 1fr; }
    .services-grid-2col { grid-template-columns: 1fr !important; }
    .services-cards-grid { grid-template-columns: 1fr; }
    .footer-widgets { grid-template-columns: 1fr; }
    .hero-slider { height: 500px; }
    .hero-content h1 { font-size: 28px; }
    .hero-content .industry-list { grid-template-columns: 1fr; }
    .section { padding: 50px 0; }
    .whatsapp-float { width: 48px; height: 48px; font-size: 24px; bottom: 20px; left: 20px; }
    .scroll-to-top { width: 44px; height: 44px; font-size: 14px; bottom: 20px; right: 20px; }
    .why-choose-grid { grid-template-columns: 1fr; }
    .about-image-slider { aspect-ratio: 4 / 3; }
    .about-slider-arrow { width: 40px; height: 40px; font-size: 14px; }
    .about-slider-arrow.prev { left: 12px; }
    .about-slider-arrow.next { right: 12px; }
    .page-header { padding: 70px 0; }
    .page-header h1 { font-size: 32px; }
    .intro-strip-grid { grid-template-columns: 1fr; gap: 20px; }
    .process-steps { grid-template-columns: 1fr; }
    .service-detail-cta { padding: 28px 25px; text-align: center; flex-direction: column; }
    .service-features-block { padding: 25px 20px; }
    .service-prev-next { grid-template-columns: 1fr; }
    .prev-next-link.next { text-align: left; }
    .contact-cards-grid { grid-template-columns: 1fr; }
    .contact-form-card { padding: 28px 22px; }
    .contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-info-panel { padding: 35px 25px; }
    .map-overlay-info { top: 15px; }
    .map-info-card { padding: 14px 20px; gap: 14px; margin: 0 15px; }
    .map-info-card i { font-size: 26px; }
}

/* ============================================
   OUR EVENTS — ARCHIVE (Upcoming / Past)
   Matches theme: #0033A0 blue, #F26522 orange, Poppins
============================================ */
.events-page-header h1 { font-size: 44px; }

.events-section { background: #f7f8fa; }

/* ---- Tabs ---- */
.events-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin: 0 0 45px;
}
.events-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    background: #fff;
    color: #0033A0;
    border: 2px solid #e3e7ef;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .3px;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.events-tab-btn i { font-size: 15px; }
.events-tab-btn:hover {
    border-color: #F26522;
    color: #F26522;
    transform: translateY(-2px);
}
.events-tab-btn.active {
    background: #0033A0;
    border-color: #0033A0;
    color: #fff;
    box-shadow: 0 8px 22px rgba(0,51,160,0.28);
}
.events-tab-btn.active:hover { color: #fff; }
.events-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    border-radius: 50px;
    background: rgba(242,101,34,0.12);
    color: #F26522;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}
.events-tab-btn.active .events-tab-count {
    background: #F26522;
    color: #fff;
}

/* ---- Panels ---- */
.events-panel { animation: itfFade .35s ease; }
@keyframes itfFade { from { opacity: 0; } to { opacity: 1; } }

/* ---- Grid ---- */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ---- Event Card ---- */
.event-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.07);
    transition: transform .4s ease, box-shadow .4s ease;
    display: flex;
    flex-direction: column;
    border-top: 4px solid transparent;
}
.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 44px rgba(0,0,0,0.14);
    border-top-color: #F26522;
}
.event-card-media-link { display: block; }
.event-card-media {
    position: relative;
    height: 200px;
    background-color: #0033A0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.event-card-media-fallback {
    color: rgba(255,255,255,0.35);
    font-size: 54px;
}
/* Date badge */
.event-date-badge {
    position: absolute;
    top: 15px; left: 15px;
    background: #F26522;
    color: #fff;
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    line-height: 1;
    box-shadow: 0 6px 16px rgba(242,101,34,0.45);
}
.event-date-day { display: block; font-size: 22px; font-weight: 800; }
.event-date-mon { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }
/* Status tag */
.event-status-tag {
    position: absolute;
    bottom: 15px; right: 15px;
    background: #1a7f37;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 5px 12px;
    border-radius: 50px;
}
.event-status-tag.is-past { background: #6c757d; }

/* Card body */
.event-card-body {
    padding: 24px 24px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.event-card-body h3 { font-size: 20px; margin-bottom: 14px; line-height: 1.35; }
.event-card-body h3 a { color: #0033A0; }
.event-card-body h3 a:hover { color: #F26522; }
.event-meta { margin: 0 0 14px; }
.event-meta li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13.5px;
    color: #666;
    margin-bottom: 7px;
}
.event-meta li i { color: #F26522; margin-top: 3px; width: 15px; text-align: center; }
.event-card-body p { color: #777; font-size: 14px; margin-bottom: 18px; flex: 1; }

/* Card footer: CTA + like */
.event-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid #eef0f4;
    padding-top: 16px;
    margin-top: auto;
}
.event-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .5px;
    color: #0033A0;
}
.event-card-cta i { transition: transform .3s ease; }
.event-card-cta:hover { color: #F26522; }
.event-card-cta:hover i { transform: translateX(4px); }

/* ---- Like button ---- */
.event-like-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #f3f5f9;
    border: 1px solid #e3e7ef;
    color: #8a93a6;
    padding: 7px 14px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s ease;
    line-height: 1;
}
.event-like-btn i { font-size: 14px; transition: transform .25s ease; }
.event-like-btn:hover {
    border-color: #F26522;
    color: #F26522;
    background: rgba(242,101,34,0.07);
}
.event-like-btn.liked {
    background: rgba(242,101,34,0.10);
    border-color: #F26522;
    color: #F26522;
    cursor: default;
}
.event-like-btn.liked i { color: #F26522; }
.event-like-btn.is-loading { opacity: .6; cursor: wait; }
.event-like-btn .like-count { font-weight: 700; }
/* Heart pop animation */
.event-like-btn.liked-burst i { animation: itfHeartPop .6s ease; }
@keyframes itfHeartPop {
    0%   { transform: scale(1); }
    35%  { transform: scale(1.45); }
    55%  { transform: scale(.9); }
    100% { transform: scale(1); }
}

/* Empty state */
.events-empty {
    text-align: center;
    padding: 70px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.05);
}
.events-empty i { font-size: 54px; color: #d6dbe6; margin-bottom: 18px; }
.events-empty p { color: #888; font-size: 16px; margin: 0; max-width: 440px; margin: 0 auto; }

/* ============================================
   OUR EVENTS — SINGLE EVENT DETAIL
============================================ */
.event-status-tag-large {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
    backdrop-filter: blur(2px);
}

.event-single-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}
.event-single-featured {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 34px rgba(0,0,0,0.10);
}
.event-single-featured img { width: 100%; display: block; }
.event-single-body { color: #555; font-size: 15.5px; line-height: 1.8; }
.event-single-body h2 { font-size: 28px; margin: 30px 0 15px; }
.event-single-body h3 { font-size: 22px; margin: 26px 0 12px; }
.event-single-body ul { list-style: disc; padding-left: 22px; margin: 0 0 18px; }
.event-single-body ul li { margin-bottom: 8px; }

.event-single-back {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid #eef0f4;
}
.event-single-back .btn-outline {
    background: transparent;
    color: #F26522;
    border-color: #F26522;
}
.event-single-back .btn-outline:hover { background: #F26522; color: #fff; }

/* Large like button on detail page */
.event-like-btn-lg { padding: 11px 22px; font-size: 14px; }
.event-like-btn-lg i { font-size: 16px; }

/* Sidebar detail card */
.event-single-sidebar { position: sticky; top: 100px; }
.event-detail-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.09);
    border-top: 4px solid #F26522;
    padding: 30px 28px;
}
.event-detail-card h4 {
    font-size: 19px;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 2px solid #f0f2f6;
}
.event-detail-card ul { margin: 0 0 8px; }
.event-detail-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid #f3f4f8;
    font-size: 14px;
    color: #555;
}
.event-detail-card ul li:last-child { border-bottom: none; }
.event-detail-card ul li i {
    color: #fff;
    background: #F26522;
    width: 34px; height: 34px;
    min-width: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.event-detail-card ul li strong { color: #0033A0; font-size: 13px; }

/* ============================================
   EVENTS — RESPONSIVE
============================================ */
@media (max-width: 992px) {
    .events-grid { grid-template-columns: repeat(2, 1fr); }
    .event-single-layout { grid-template-columns: 1fr; }
    .event-single-sidebar { position: static; }
}
@media (max-width: 600px) {
    .events-grid { grid-template-columns: 1fr; }
    .events-tab-btn { padding: 11px 20px; font-size: 13px; }
    .event-single-back { flex-direction: column; align-items: stretch; }
    .event-single-back .btn-outline,
    .event-like-btn-lg { width: 100%; justify-content: center; }
}
