/* ============================================================
   Next Time Technology — style.css
   Orange Professional Theme
   ============================================================ */
* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* ---------- CSS Custom Properties ---------- */
:root {
    --orange: #ff6b00;
    --orange-light: #ff8c42;
    --orange-dark: #cc5500;
    --orange-glow: rgba(255, 107, 0, 0.18);
    --orange-tint: #fff8f2;

    --dark: #0d0d0d;
    --dark-2: #151515;
    --dark-3: #1e1e1e;
    --dark-card: #202020;

    --text-muted: #888;
    --border: rgba(255, 255, 255, 0.07);

    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-card: 16px;
    --radius-btn: 50px;
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-orange: 0 8px 28px rgba(255, 107, 0, 0.35);

    --transition: 0.3s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Locations mega-menu: 2-column layout */
.dropdown-menu-locations {
    columns: 2;
    column-gap: 4px;
    min-width: 320px;
}

.dropdown-menu-locations li {
    break-inside: avoid;
}

@media (min-width: 1200px) {

    .sidebar,
    .sidebar-overlay {
        display: none !important;
    }
}

@media (max-width: 1199.98px) {
    #mainNav .navbar-collapse {
        display: none !important;
    }
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
}

/* ---------- Utility ---------- */
.section-pad {
    padding: 90px 0;
}

.bg-light-orange-tint {
    background: var(--orange-tint);
}

.text-orange {
    color: var(--orange);
}

.text-orange-gradient {
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-eyebrow {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--orange);
    background: var(--orange-glow);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.logo {
    width: 150px;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: 14px;
}

.section-sub {
    font-size: 1.05rem;
    color: #666;
    max-width: 560px;
    margin: 0 auto;
}

.visually-hidden-skip {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--orange);
    color: #fff;
    padding: 10px 18px;
    z-index: 2000;
    border-radius: 0 0 8px 0;
}

.visually-hidden-skip:focus {
    left: 0;
}

/* ---------- Buttons ---------- */
.btn-primary-orange {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
    border: none;
    border-radius: var(--radius-btn);
    font-family: var(--font-display);
    font-weight: 600;
    padding: .6rem 1.6rem;
    box-shadow: var(--shadow-orange);
    transition: var(--transition);
}

.btn-primary-orange:hover {
    background: linear-gradient(135deg, var(--orange-dark), var(--orange));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 107, 0, 0.45);
}

.btn-outline-orange {
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
    border-radius: var(--radius-btn);
    font-family: var(--font-display);
    font-weight: 600;
    padding: .6rem 1.6rem;
    transition: var(--transition);
}

.btn-outline-orange:hover {
    background: var(--orange);
    color: #fff;
    box-shadow: var(--shadow-orange);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-btn);
    font-family: var(--font-display);
    font-weight: 600;
    padding: .6rem 1.6rem;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* ============================================================
   SIDEBAR — Mobile Navigation Drawer
   ============================================================ */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 300px;
    max-width: 88vw;
    background: var(--dark-2);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 48px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.sidebar.open {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: var(--dark);
    flex-shrink: 0;
}

.sidebar-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
    color: #fff;
    letter-spacing: -0.01em;
}

.sidebar-logo span {
    color: var(--orange);
}

.sidebar-close {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.sidebar-close:hover {
    background: rgba(255, 107, 0, 0.15);
    border-color: rgba(255, 107, 0, 0.35);
    color: var(--orange);
}

.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 12px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 107, 0, 0.3) transparent;
}

.sidebar-nav::-webkit-scrollbar {
    width: 4px;
}

.sidebar-nav::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-nav::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 0, 0.3);
    border-radius: 4px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: var(--transition);
}

.sidebar-nav a i {
    width: 18px;
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.9rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.sidebar-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--orange);
    padding-left: 26px;
}

.sidebar-nav a:hover i {
    color: var(--orange);
}

.sidebar-section-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px;
    background: transparent;
    border: none;
    border-left: 3px solid transparent;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.95rem;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-section-toggle i:first-child {
    width: 18px;
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.sidebar-section-toggle .chevron {
    margin-left: auto;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, color 0.3s ease;
    width: auto;
}

.sidebar-section-toggle:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--orange);
    padding-left: 26px;
}

.sidebar-section-toggle:hover i:first-child {
    color: var(--orange);
}

.sidebar-section-toggle.expanded {
    color: var(--orange-light);
    border-left-color: var(--orange);
    background: rgba(255, 107, 0, 0.06);
}

.sidebar-section-toggle.expanded i:first-child {
    color: var(--orange);
}

.sidebar-section-toggle.expanded .chevron {
    transform: rotate(180deg);
    color: var(--orange);
}

.sidebar-submenu {
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-submenu.open {
    max-height: 400px;
}

.sidebar-submenu a {
    padding: 10px 22px 10px 52px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    border-left: 3px solid transparent;
}

.sidebar-submenu a i {
    width: 16px;
    font-size: 0.8rem;
}

.sidebar-submenu a:hover {
    color: #fff;
    border-left-color: var(--orange);
    padding-left: 56px;
    background: rgba(255, 107, 0, 0.07);
}

.sidebar-footer {
    flex-shrink: 0;
    padding: 18px 22px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background: var(--dark);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sidebar-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 20px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff !important;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-btn);
    text-decoration: none;
    box-shadow: var(--shadow-orange);
    transition: var(--transition);
    border-left: none !important;
}

.sidebar-cta:hover {
    background: linear-gradient(135deg, var(--orange-dark), var(--orange)) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 107, 0, 0.45);
    padding-left: 20px !important;
}

.sidebar-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
    text-decoration: none;
    padding: 0;
    border-left: none;
    transition: color 0.25s ease;
}

.sidebar-contact a i {
    width: 16px;
    text-align: center;
    color: var(--orange);
    font-size: 0.82rem;
    flex-shrink: 0;
}

.sidebar-contact a:hover {
    color: rgba(255, 255, 255, 0.85);
    background: none;
    padding-left: 0;
    border-left: none;
}

@media (min-width: 992px) {

    .sidebar,
    .sidebar-overlay {
        display: none !important;
    }
}

/* ============================================================
   NAVBAR
============================================================ */
#mainNav {
    background: transparent;
    padding: 0;
    transition: background .4s ease, padding .4s ease, box-shadow .4s ease;
}

#mainNav.scrolled {
    background: rgba(10, 10, 10, 0.97);
    padding: 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: #fff;
}

.logo-accent {
    color: var(--orange);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: .9rem;
    padding: 8px 12px !important;
    border-radius: 8px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08);
}

.dropdown-menu-custom {
    background: #fff;
    border: 0;
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    margin-top: 8px !important;
}

.dropdown-menu-custom .dropdown-item {
    border-radius: 8px;
    padding: 10px 14px;
    font-size: .9rem;
    font-family: var(--font-display);
    font-weight: 500;
    color: #333;
    transition: var(--transition);
}

.dropdown-menu-custom .dropdown-item i {
    color: var(--orange);
}

.dropdown-menu-custom .dropdown-item:hover {
    background: var(--orange-tint);
    color: var(--orange);
}

/* ============================================================
   HERO
============================================================ */
.hero-slide {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.slide-1 {
    background-image: url('images/slider1.png');
}

.slide-2 {
    background-image: url('images/slider2.png');
}

.slide-3 {
    background-image: url('images/slider3.png');
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(10, 10, 10, 0.82) 45%, rgba(255, 107, 0, 0.12) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-eyebrow {
    display: inline-block;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.3);
    color: #ffb380;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .05em;
    margin-bottom: 20px;
}

.hero-headline {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.15;
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-subtext {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
}

.hero-stats {
    padding-top: 8px;
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--orange-light);
    line-height: 1;
}

.stat-label {
    font-size: .75rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.carousel-control-prev,
.carousel-control-next {
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 0, 0.7);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 24px;
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 18px;
    height: 18px;
}

.carousel-indicators button {
    width: 28px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.4);
    border: 0;
}

.carousel-indicators .active {
    background: var(--orange);
    width: 44px;
}

/* ============================================================
   SERVICE CARDS
============================================================ */
.service-card {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 36px 28px;
    height: 100%;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.12);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--orange-tint);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--orange);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.35);
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.service-card p {
    color: #666;
    font-size: .92rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--orange);
    font-weight: 600;
    font-size: .88rem;
    margin-top: 14px;
    font-family: var(--font-display);
}

.service-link i {
    transition: transform var(--transition);
}

.service-link:hover i {
    transform: translateX(4px);
}

/* ============================================================
   ABOUT / INTRO STRIP
============================================================ */
.about-img-wrap {
    position: relative;
    padding: 0 20px 20px 0;
}

.about-img-main img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}

.about-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
    padding: 14px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    box-shadow: var(--shadow-orange);
}

.about-badge i {
    font-size: 1.4rem;
}

.about-badge strong {
    display: block;
    font-size: .9rem;
}

.about-badge small {
    font-size: .75rem;
    opacity: .85;
}

.about-floating-card {
    position: absolute;
    top: 28px;
    left: -20px;
    background: #fff;
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.floating-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.floating-label {
    font-size: .7rem;
    color: #777;
    text-align: center;
    max-width: 80px;
    margin-top: 2px;
}

.about-checklist {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.about-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: .95rem;
    color: #444;
}

.about-checklist li i {
    color: var(--orange);
    font-size: .9rem;
    flex-shrink: 0;
}

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(255, 107, 0, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.why-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-card);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.why-card:hover {
    background: rgba(255, 107, 0, 0.08);
    border-color: rgba(255, 107, 0, 0.25);
    transform: translateY(-6px);
}

.why-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 107, 0, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--orange-light);
    margin: 0 auto 16px;
}

.why-card:hover .why-icon {
    background: var(--orange);
    color: #fff;
}

.why-card h3 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 8px;
}

.why-card p {
    font-size: .88rem;
    color: rgba(255, 255, 255, 0.55);
}

/* ============================================================
   PROCESS
============================================================ */
.process-card {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 32px 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(255, 107, 0, 0.1);
}

.process-step {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.35;
}

.process-card:hover .process-step {
    opacity: 1;
}

.process-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.process-card p {
    font-size: .9rem;
    color: #666;
}

/* ============================================================
   CITIES WE SERVE
============================================================ */
.cities-section {
    background: #fff;
}

.city-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--orange-tint);
    border: 1px solid rgba(255, 107, 0, 0.12);
    border-radius: 14px;
    padding: 18px 20px;
    height: 100%;
    transition: var(--transition);
}

.city-card:hover {
    background: #fff;
    border-color: var(--orange);
    box-shadow: 0 16px 36px rgba(255, 107, 0, 0.14);
    transform: translateY(-4px);
}

.city-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
}

.city-card a {
    color: #222;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .98rem;
}

.city-card a:hover {
    color: var(--orange);
}

.city-card span {
    display: block;
    font-size: .78rem;
    color: #888;
}

/* ============================================================
   INDUSTRIES WE SERVE
============================================================ */
.industries-section {
    background: var(--orange-tint);
}

.industry-card {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 28px 22px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(255, 107, 0, 0.12);
}

.industry-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 16px;
    background: var(--orange-tint);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--orange);
}

.industry-card:hover .industry-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
}

.industry-card h3 {
    font-size: .98rem;
    margin-bottom: 6px;
}

.industry-card p {
    font-size: .84rem;
    color: #777;
}

/* ============================================================
   FAQ
============================================================ */
.faq-section {
    background: #fff;
}

.faq-accordion .accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 14px !important;
    overflow: hidden;
    margin-bottom: 14px;
}

.faq-accordion .accordion-button {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a1a;
    padding: 20px 22px;
    background: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--orange);
    background: var(--orange-tint);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

.faq-accordion .accordion-button::after {
    filter: hue-rotate(0deg);
}

.faq-accordion .accordion-body {
    padding: 4px 22px 22px;
    color: #666;
    font-size: .94rem;
}

/* ============================================================
   BLOG
============================================================ */
.blog-section {
    background: var(--orange-tint);
}

.blog-card {
    background: #fff;
    border-radius: var(--radius-card);
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.12);
}

.blog-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.06);
}

.blog-body {
    padding: 24px 22px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-size: .78rem;
    color: var(--orange);
    font-weight: 600;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 10px;
}

.blog-body h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-body p {
    color: #666;
    font-size: .9rem;
    margin-bottom: 16px;
    flex: 1;
}

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner {
    position: relative;
    padding: 100px 0;
    background-image: url('https://images.unsplash.com/photo-1563013544-824ae1b704d3?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(255, 107, 0, 0.35));
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.55);
}

/* ============================================================
   CONTACT / FREE CONSULTATION
============================================================ */
.contact-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 15% 20%, rgba(255, 107, 0, 0.1) 0%, transparent 55%);
    pointer-events: none;
}

.contact-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-card);
    padding: 36px;
    position: relative;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info-list li:first-child {
    border-top: none;
}

.contact-info-list .contact-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(255, 107, 0, 0.15);
    color: var(--orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-list a,
.contact-info-list span {
    color: rgba(255, 255, 255, 0.8);
    font-size: .92rem;
}

.contact-info-list strong {
    display: block;
    color: #fff;
    font-family: var(--font-display);
    font-size: .85rem;
    margin-bottom: 3px;
}

.contact-form-card {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 36px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.contact-form-card .form-label {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .85rem;
    color: #333;
    margin-bottom: 6px;
}

.contact-form-card .form-control {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 11px 14px;
    font-size: .92rem;
}

.contact-form-card .form-control:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.14);
}

.contact-quickctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}


/* ============================================================
   FOOTER
============================================================ */
.main-footer {
    background: var(--dark);
}

.footer-top {
    padding: 72px 0 48px;
}

.footer-brand .logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.45);
    font-size: .88rem;
    line-height: 1.75;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: .85rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: translateY(-3px);
}

.footer-heading {
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    padding: 5px 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.45);
    font-size: .88rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--orange);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.45);
    font-size: .88rem;
    padding: 5px 0;
}

.footer-contact li i {
    color: var(--orange);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 20px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: .83rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.35);
    font-size: .83rem;
}

.footer-bottom a:hover {
    color: var(--orange);
}

/* ============================================================
   BACK TO TOP
============================================================ */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-orange);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
}

/* ============================================================
   WHATSAPP FLOAT BUTTON
============================================================ */
.wa-btn {
    position: fixed;
    right: 28px;
    bottom: 88px;
    width: 54px;
    height: 54px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    text-decoration: none;
    box-shadow: 0 16px 30px rgba(37, 211, 102, 0.28);
    z-index: 1000;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 36px rgba(37, 211, 102, 0.34);
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
============================================================ */
@media (max-width: 991.98px) {
    .section-pad {
        padding: 64px 0;
    }

    .about-floating-card {
        display: none;
    }

    .about-img-wrap {
        padding: 0;
    }

    .cta-banner {
        background-attachment: scroll;
    }
}

@media (max-width: 767.98px) {
    .hero-headline {
        font-size: 2rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 12px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .service-card,
    .contact-card,
    .contact-form-card {
        padding: 28px 20px;
    }

    .back-to-top {
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 575.98px) {
    .about-badge {
        position: static;
        margin-top: 16px;
        display: inline-flex;
    }

    .hero-stats .vr {
        display: none;
    }

    .dropdown-menu-locations {
        columns: 1;
    }
}