/* ============================
   YELLOW HEAD CONSTRUCTION LTD
   Matching burnabyblacktop.ca
   ============================ */

/* ---------- RESET & GLOBALS ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background: #fff;
}
a { text-decoration: none; color: inherit; transition: color .3s; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* ---------- TYPOGRAPHY ---------- */
h1,h2,h3,h4,h5,h6 { font-family: 'Oswald', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 34px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .35s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width .6s, height .6s;
}
.btn:hover::after { width: 400px; height: 400px; }
.btn-white {
    background: transparent;
    border-color: #fff;
    color: #fff;
}
.btn-white:hover {
    background: #FBED11;
    border-color: #FBED11;
    color: #000;
}
.btn-yellow {
    background: #FBED11;
    border-color: #FBED11;
    color: #000;
}
.btn-yellow:hover {
    background: #e0d40f;
    border-color: #e0d40f;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251,237,17,.35);
}
.btn-yellow-solid {
    background: #FBED11;
    color: #000;
    border: 2px solid #FBED11;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 34px;
    cursor: pointer;
    display: inline-block;
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}
.btn-yellow-solid::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width .6s, height .6s;
}
.btn-yellow-solid:hover::after { width: 400px; height: 400px; }
.btn-yellow-solid:hover {
    background: #e0d40f;
    border-color: #e0d40f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251,237,17,.35);
}

/* =========================================================
   PRELOADER
   ========================================================= */
.preloader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s ease, visibility .6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo {
    width: 120px;
    margin: 0 auto 25px;
    animation: preloaderPulse 1.2s infinite ease-in-out;
}
@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: .7; }
}
.preloader-bar {
    width: 200px;
    height: 4px;
    background: #222;
    border-radius: 4px;
    overflow: hidden;
}
.preloader-fill {
    width: 0;
    height: 100%;
    background: #FBED11;
    border-radius: 4px;
    animation: preloaderFill 1.5s ease forwards;
}
@keyframes preloaderFill {
    0% { width: 0; }
    100% { width: 100%; }
}

/* =========================================================
   TOP BAR (Yellow strip)
   ========================================================= */
.top-bar {
    background: #FBED11;
    color: #000;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    z-index: 1001;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}
.top-bar-left { display: flex; gap: 25px; align-items: center; flex-wrap: wrap; }
.top-bar-link {
    color: #000;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity .3s;
    white-space: nowrap;
}
.top-bar-link:hover { opacity: .7; }
.top-bar-right { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.quick-search-label { font-weight: 600; font-size: 13px; }
.top-bar-social {
    color: #000;
    font-size: 15px;
    transition: opacity .3s, transform .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}
.top-bar-social:hover { opacity: .6; transform: scale(1.15); }

/* =========================================================
   MAIN NAVBAR (Black / Sticky)
   ========================================================= */
.main-nav {
    background: #000;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    transition: box-shadow .3s, background .3s;
}
.main-nav.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,.5);
    background: rgba(0,0,0,.95);
    backdrop-filter: blur(10px);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}
.nav-logo img {
    height: 60px;
    width: auto;
    transition: transform .3s;
}
.nav-logo:hover img { transform: scale(1.05); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 12px;
    transition: color .3s;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #FBED11;
    transition: width .3s, left .3s;
}
.nav-link:hover::after { width: 100%; left: 0; }
.nav-link i { font-size: 9px; opacity: .6; }
.nav-link:hover { color: #FBED11; }

/* Dropdown Navigation */
.nav-item {
    position: relative;
}
.nav-item.has-dropdown > .nav-link {
    cursor: pointer;
}
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #000;
    border-top: 3px solid #FBED11;
    box-shadow: 0 15px 45px rgba(0,0,0,.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s;
    z-index: 999;
    padding: 10px 0;
    pointer-events: none;
}
.nav-item.has-dropdown:hover > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.dropdown-link {
    display: block;
    padding: 10px 25px;
    color: #ccc;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color .2s, background .2s, padding-left .2s;
    white-space: nowrap;
}
.dropdown-link:hover {
    color: #FBED11;
    background: rgba(251,237,17,.06);
    padding-left: 32px;
}

.nav-ctas { display: flex; gap: 10px; align-items: center; }
.nav-btn {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 9px 20px;
    border: 2px solid transparent;
    transition: all .3s;
    white-space: nowrap;
}
.nav-btn-primary {
    background: #FBED11;
    border-color: #FBED11;
    color: #000;
}
.nav-btn-primary:hover {
    background: #e0d40f;
    border-color: #e0d40f;
    transform: translateY(-1px);
}
.nav-btn-outline {
    background: transparent;
    border-color: #FBED11;
    color: #FBED11;
}
.nav-btn-outline:hover {
    background: #FBED11;
    color: #000;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
}
.mobile-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    transition: all .3s;
    border-radius: 2px;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.7) 100%);
}

/* Hero floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.particle {
    position: absolute;
    background: #FBED11;
    border-radius: 50%;
    opacity: .15;
    animation: particleFloat linear infinite;
}
.particle:nth-child(1) { width: 6px; height: 6px; top: 20%; left: 10%; animation-duration: 12s; animation-delay: 0s; }
.particle:nth-child(2) { width: 4px; height: 4px; top: 60%; left: 25%; animation-duration: 18s; animation-delay: 2s; }
.particle:nth-child(3) { width: 8px; height: 8px; top: 35%; left: 55%; animation-duration: 15s; animation-delay: 4s; }
.particle:nth-child(4) { width: 5px; height: 5px; top: 70%; left: 70%; animation-duration: 20s; animation-delay: 1s; }
.particle:nth-child(5) { width: 3px; height: 3px; top: 45%; left: 85%; animation-duration: 14s; animation-delay: 3s; }
.particle:nth-child(6) { width: 7px; height: 7px; top: 15%; left: 40%; animation-duration: 16s; animation-delay: 5s; }
@keyframes particleFloat {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: .2; }
    50% { opacity: .1; }
    90% { opacity: .2; }
    100% { transform: translateY(-120vh) translateX(40px); opacity: 0; }
}

.hero-logo-watermark {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    opacity: .85;
    animation: heroLogoFloat 6s ease-in-out infinite;
}
@keyframes heroLogoFloat {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(calc(-50% - 12px)); }
}
.hero-logo-watermark img {
    width: 280px;
    filter: drop-shadow(0 4px 30px rgba(0,0,0,.5));
}
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    max-width: 900px;
}
.hero-subtitle {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-transform: uppercase;
    opacity: 0;
    animation: heroSlideUp .8s ease .3s forwards;
}
.hero-subtitle-line {
    width: 60px;
    height: 4px;
    background: #FBED11;
    margin: 0 auto 20px;
    border-radius: 2px;
    opacity: 0;
    animation: heroLineGrow .6s ease .6s forwards;
}
@keyframes heroLineGrow {
    0% { width: 0; opacity: 0; }
    100% { width: 60px; opacity: 1; }
}
.hero-title {
    font-size: clamp(36px, 5.5vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 18px;
    text-shadow: 0 4px 30px rgba(0,0,0,.4);
    opacity: 0;
    animation: heroSlideUp .8s ease .5s forwards;
}
@keyframes heroSlideUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}
.hero-yellow { color: #FBED11; }
.hero-desc {
    font-size: 17px;
    font-weight: 400;
    opacity: 0;
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    animation: heroSlideUp .8s ease .7s forwards;
}
.hero-btns {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroSlideUp .8s ease .9s forwards;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: heroSlideUp .8s ease 1.2s forwards;
}
.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,.5);
    border-radius: 20px;
    position: relative;
}
.wheel {
    width: 4px;
    height: 8px;
    background: #FBED11;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.8s infinite;
}
@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}
.scroll-indicator span {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
}

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust-bar {
    background: #1a1a1a;
    padding: 22px 0;
    border-bottom: 3px solid #FBED11;
}
.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color .3s, transform .3s;
    white-space: nowrap;
}
.trust-item:hover { color: #FBED11; transform: translateY(-2px); }
.trust-item i { font-size: 20px; color: #FBED11; transition: transform .3s; }
.trust-item:hover i { transform: scale(1.2) rotate(5deg); }

/* BBB Accredited icon */
.trust-bbb-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 3px;
    flex-shrink: 0;
}

/* =========================================================
   SECTION HEADERS & TITLES
   ========================================================= */
.section-header { text-align: center; margin-bottom: 50px; }
.section-title {
    font-size: 38px;
    color: #000;
    margin-bottom: 12px;
}
.section-title-left { text-align: left; }
.title-underline {
    width: 60px;
    height: 4px;
    background: #FBED11;
    margin: 0 auto;
    border-radius: 2px;
    transition: width .4s;
}
.section-header:hover .title-underline { width: 100px; }
.title-underline-left { margin: 0; }

/* =========================================================
   SERVICES
   ========================================================= */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
}
.service-card {
    background: #fff;
    border-radius: 6px;
    padding: 30px 20px;
    text-align: center;
    transition: all .4s ease;
    border: 1px solid #eee;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #FBED11;
    transform: scaleX(0);
    transition: transform .4s;
    transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,.1);
    border-color: #FBED11;
}
.service-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #FBED11;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #000;
    transition: all .4s;
}
.service-card:hover .service-icon-wrap {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(251,237,17,.4);
}
.service-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #000;
}
.service-card-cta { background: #1a1a1a; border-color: #1a1a1a; }
.service-card-cta h3 { color: #FBED11; }
.service-icon-cta { background: #FBED11; color: #000; }
.service-card-cta:hover { background: #FBED11; border-color: #FBED11; }
.service-card-cta:hover h3 { color: #000; }

/* =========================================================
   PARALLAX DIVIDER
   ========================================================= */
.parallax-divider {
    height: 200px;
    position: relative;
    overflow: hidden;
}
.parallax-1 {
    background: url('images/highway-construction.png') center/cover fixed;
}
.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
    padding: 80px 0;
    background: #fff;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform .6s;
}
.about-image:hover img { transform: scale(1.03); }
.about-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #FBED11;
    color: #000;
    padding: 15px 25px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,.3);
    animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(0,0,0,.3); }
    50% { box-shadow: 0 8px 35px rgba(251,237,17,.5); }
}
.badge-number {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}
.badge-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.about-content p {
    margin: 15px 0;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}
.about-sub-title {
    margin-top: 30px;
    font-size: 22px;
    color: #000;
}
.about-content .btn-yellow-solid { margin-top: 20px; }

/* =========================================================
   SERVICE AREAS
   ========================================================= */
.service-areas {
    padding: 50px 0;
    background: #1a1a1a;
    color: #fff;
}
.areas-title {
    text-align: center;
    font-size: 24px;
    color: #FBED11;
    margin-bottom: 8px;
}
.areas-subtitle {
    text-align: center;
    font-size: 14px;
    color: #999;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 30px;
}
.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.area-link {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1.5px;
    color: #ccc;
    padding: 8px 15px;
    transition: all .3s;
    border-left: 3px solid transparent;
    display: block;
}
.area-link:hover {
    color: #FBED11;
    border-left-color: #FBED11;
    padding-left: 20px;
    background: rgba(251,237,17,.05);
}

/* =========================================================
   STATS BAR
   ========================================================= */
.stats-bar {
    position: relative;
    padding: 70px 0;
    overflow: hidden;
}
.stats-bg {
    position: absolute;
    inset: 0;
}
.stats-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.stats-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.8);
}
.stats-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}
.stat-item {
    text-align: center;
    color: #fff;
    min-width: 200px;
    transition: transform .3s;
}
.stat-item:hover { transform: scale(1.05); }
.stat-icon {
    font-size: 36px;
    color: #FBED11;
    margin-bottom: 12px;
    transition: transform .3s;
}
.stat-item:hover .stat-icon { transform: scale(1.2) rotate(10deg); }
.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 60px;
    font-weight: 700;
    color: #FBED11;
    display: inline;
}
.stat-plus {
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #FBED11;
    display: inline;
}
.stat-decimal {
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #FBED11;
    display: inline;
}
.stat-label {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ccc;
    margin-top: 6px;
}
.stat-label a { color: #ccc; text-decoration: underline; }
.stat-label a:hover { color: #FBED11; }

/* =========================================================
   INDUSTRIES
   ========================================================= */
.industries {
    padding: 80px 0;
    background: #f8f9fa;
}
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.industry-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .4s;
    box-shadow: 0 4px 15px rgba(0,0,0,.06);
}
.industry-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,.15); }
.industry-img-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
}
.industry-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
}
.industry-card:hover .industry-img-wrap img { transform: scale(1.1); }
.industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.7) 100%);
}
.industry-info {
    padding: 22px 18px;
    background: #fff;
    border: 1px solid #eee;
    border-top: 3px solid #FBED11;
    transition: border-color .3s;
}
.industry-card:hover .industry-info { border-top-color: #e0d40f; }
.industry-info h3 {
    font-size: 20px;
    color: #000;
    margin-bottom: 8px;
}
.industry-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* =========================================================
   BIG OR SMALL CTA
   ========================================================= */
.big-small-cta {
    padding: 80px 0;
    background: #fff;
}
.bsc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.bsc-content h2 {
    font-size: 36px;
    color: #000;
    margin-bottom: 20px;
}
.bsc-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}
.bsc-content .btn-yellow-solid { margin-top: 10px; }
.bsc-image {
    border-radius: 8px;
    overflow: hidden;
}
.bsc-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform .5s;
}
.bsc-image:hover img { transform: scale(1.03); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}
.testimonials-wrapper { }
.testimonial-platforms {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.platform-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    display: flex;
    align-items: center;
    gap: 30px;
    transition: box-shadow .3s;
}
.platform-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.12); }
.platform-logo {
    width: 60px;
    height: auto;
}
.platform-header {
    display: flex;
    align-items: center;
    gap: 15px;
}
.platform-info h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    color: #000;
}
.platform-stars {
    color: #FBED11;
    font-size: 16px;
}
.platform-stars span {
    color: #000;
    font-weight: 700;
    margin-left: 6px;
    font-family: 'Oswald', sans-serif;
}
.platform-actions {
    display: flex;
    gap: 15px;
}
.platform-link {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FBED11;
    border-bottom: 2px solid #FBED11;
    padding-bottom: 2px;
    transition: opacity .3s;
}
.platform-link:hover { opacity: .7; }
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.testimonial-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    transition: transform .4s, box-shadow .4s;
    position: relative;
    overflow: hidden;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 80px;
    font-family: 'Oswald', sans-serif;
    color: rgba(251,237,17,.15);
    line-height: 1;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,.1);
}
.tc-stars { color: #FBED11; font-size: 18px; margin-bottom: 15px; }
.testimonial-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.tc-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.tc-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #FBED11;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 16px;
    transition: transform .3s;
}
.testimonial-card:hover .tc-avatar { transform: scale(1.1); }
.tc-author strong {
    display: block;
    font-size: 15px;
    color: #000;
}
.tc-author span {
    font-size: 12px;
    color: #888;
}

/* =========================================================
   BLOGS
   ========================================================= */
.blogs {
    padding: 80px 0;
    background: #fff;
}
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    transition: transform .4s, box-shadow .4s;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}
.blog-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.blog-card:hover .blog-img-wrap img { transform: scale(1.08); }
.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #FBED11;
    color: #000;
    padding: 8px 14px;
    border-radius: 4px;
    text-align: center;
    line-height: 1.2;
}
.blog-day {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 700;
}
.blog-month {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.blog-content { padding: 25px; }
.blog-content h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color .3s;
}
.blog-card:hover .blog-content h4 { color: #333; }
.blog-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}
.blog-read-more {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FBED11;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .3s, color .3s;
}
.blog-read-more:hover { gap: 12px; color: #e0d40f; }
.blogs-cta { text-align: center; margin-top: 40px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}
.faq .section-title { font-size: 30px; }
.faq-grid { max-width: 900px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid #ddd;
    background: #fff;
    margin-bottom: 8px;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow .3s;
}
.faq-item:hover { box-shadow: 0 4px 15px rgba(0,0,0,.06); }
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: #fff;
    border: none;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    text-align: left;
    transition: background .3s, color .3s;
    letter-spacing: .5px;
}
.faq-question:hover { background: #FBED11; }
.faq-question i {
    font-size: 14px;
    transition: transform .3s;
    color: #FBED11;
    flex-shrink: 0;
    margin-left: 12px;
}
.faq-question:hover i { color: #000; }
.faq-item.active .faq-question { background: #FBED11; color: #000; }
.faq-item.active .faq-question i { transform: rotate(45deg); color: #000; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 25px;
}
.faq-answer p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    padding-top: 15px;
}
.faq-answer a { color: #FBED11; font-weight: 600; text-decoration: underline; }

/* =========================================================
   CONTACT CTA
   ========================================================= */
.contact-cta {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
}
.cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.88);
}
.cta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.cta-text { color: #fff; }
.cta-text h2 {
    font-size: 36px;
    margin-bottom: 15px;
}
.cta-sub {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 500;
}
.cta-sub span { color: #FBED11; font-weight: 700; }
.cta-text p {
    font-size: 15px;
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 20px;
}
.cta-careers-btn { margin-top: 10px; }
.cta-careers-btn i { margin-right: 6px; }
.cta-form-wrap {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    padding: 35px;
    backdrop-filter: blur(10px);
    transition: border-color .4s;
}
.cta-form-wrap:hover { border-color: rgba(251,237,17,.3); }
.contact-form { }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.form-group { margin-bottom: 15px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 5px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: border-color .3s, background .3s, box-shadow .3s;
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.5); }
.form-group select { color: rgba(255,255,255,.5); }
.form-group select option { background: #222; color: #fff; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #FBED11;
    background: rgba(255,255,255,.12);
    box-shadow: 0 0 0 3px rgba(251,237,17,.15);
}
.btn-submit {
    width: 100%;
    font-size: 16px;
    padding: 16px;
    margin-top: 5px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    background: #000;
    color: #ccc;
    padding-top: 60px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}
.footer-logo {
    width: 140px;
    margin-bottom: 15px;
    transition: transform .3s;
}
.footer-logo:hover { transform: scale(1.05); }
.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    color: #999;
}
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}
.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    transition: all .3s;
}
.footer-socials a:hover {
    background: #FBED11;
    color: #000;
    transform: translateY(-3px);
}
.footer-col h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #FBED11;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    font-size: 14px;
    color: #999;
    transition: color .3s, padding-left .3s;
}
.footer-col ul li a:hover {
    color: #FBED11;
    padding-left: 5px;
}
.footer-contact-item {
    margin-bottom: 15px;
}
.footer-contact-item strong {
    display: block;
    color: #fff;
    font-size: 14px;
    margin-bottom: 3px;
}
.footer-contact-item p {
    font-size: 14px;
    color: #999;
}
.footer-contact-item a { color: #999; transition: color .3s; }
.footer-contact-item a:hover { color: #FBED11; }
.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.1);
    text-align: center;
    font-size: 13px;
    color: #777;
    background: #FBED11;
}
.footer-bottom p { color: #000; font-weight: 500; }
.footer-bottom a { color: #000; font-weight: 600; text-decoration: underline; }

/* =========================================================
   BACK TO TOP
   ========================================================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FBED11;
    color: #000;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .4s;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,.2);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251,237,17,.4);
}

/* =========================================================
   ANIMATIONS (scroll-triggered via JS)
   ========================================================= */
[data-aos] {
    opacity: 0;
    transition: all .7s cubic-bezier(.25,.46,.45,.94);
}
[data-aos="fade-up"] { transform: translateY(50px); }
[data-aos="fade-right"] { transform: translateX(-50px); }
[data-aos="fade-left"] { transform: translateX(50px); }
[data-aos="zoom-in"] { transform: scale(.8); }
[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* =========================================================
   GLOW EFFECT ON SECTION TITLES
   ========================================================= */
.section-title {
    position: relative;
    display: inline-block;
}
.section-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: rgba(251,237,17,.4);
    transition: width .6s;
}
.section-header:hover .section-title::after { width: 100%; }

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

/* ---- TABLET (768–1024) ---- */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .nav-ctas { display: none; }
    .mobile-toggle { display: flex; }

    /* Mobile menu */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,.97);
        z-index: 1001;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 8px;
        animation: menuFadeIn .3s;
        backdrop-filter: blur(10px);
        overflow-y: auto;
        padding: 80px 20px 40px;
    }
    @keyframes menuFadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .nav-links.active .nav-link { font-size: 20px; padding: 12px 20px; text-align: left; width: 100%; }
    .nav-links.active .nav-link::after { display: none; }

    /* Mobile dropdown */
    .nav-links.active .nav-item { width: 100%; text-align: left; }
    .nav-links.active .nav-dropdown {
        position: static;
        min-width: auto;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: none;
        transition: max-height .4s ease, opacity .3s ease, visibility .3s, padding .3s;
        box-shadow: none;
        border-top: none;
        background: rgba(255,255,255,.05);
        border-radius: 8px;
        pointer-events: auto;
        padding: 0;
    }
    .nav-links.active .nav-item.dropdown-open > .nav-dropdown {
        max-height: 600px;
        opacity: 1;
        visibility: visible;
        padding: 10px 0;
    }
    .nav-links.active .dropdown-link {
        text-align: center;
        padding: 10px 20px;
        font-size: 15px;
    }
    .nav-links.active .dropdown-link:hover {
        padding-left: 20px;
    }
    .nav-links.active .nav-item.has-dropdown > .nav-link i {
        transition: transform .3s;
    }
    .nav-links.active .nav-item.dropdown-open > .nav-link i {
        transform: rotate(180deg);
    }

    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .bsc-grid { grid-template-columns: 1fr; }
    .cta-inner { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: repeat(2, 1fr); }
    .hero-logo-watermark { display: none; }

    /* TRUST ITEMS - Tablet fix */
    .trust-items {
        gap: 25px 35px;
        justify-content: center;
    }
    .trust-item {
        flex: 0 0 auto;
        min-width: 140px;
    }
}

/* ---- MOBILE (max 768px) ---- */
@media (max-width: 768px) {
    /* TOP BAR responsive fix */
    .top-bar { padding: 6px 0; }
    .top-bar-inner {
        flex-direction: column;
        gap: 6px;
        align-items: center;
        text-align: center;
    }
    .top-bar-left {
        flex-direction: row;
        gap: 15px;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    .top-bar-link { font-size: 12px; gap: 4px; }
    .top-bar-link span { display: inline; }
    .top-bar-right {
        gap: 10px;
        justify-content: center;
    }
    .quick-search-label { display: none; }
    .top-bar-social { width: 26px; height: 26px; font-size: 13px; }

    .hero-title { font-size: 32px; }
    .hero-subtitle { font-size: 14px; letter-spacing: 2px; }
    .section-title { font-size: 28px; }
    .services-grid { grid-template-columns: repeat(3, 1fr); gap: 15px; }
    .testimonials-slider { grid-template-columns: 1fr; }
    .blogs-grid { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: 1fr; }
    .stats-inner { gap: 40px; }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; align-items: center; }
    .platform-card { flex-direction: column; text-align: center; padding: 20px; }
    .platform-header { flex-direction: column; }
    .platform-actions { flex-direction: column; gap: 8px; }
    .scroll-indicator { display: none; }

    /* TRUST ITEMS - Mobile fix */
    .trust-items {
        gap: 15px 25px;
        justify-content: center;
    }
    .trust-item {
        min-width: auto;
        font-size: 12px;
        gap: 6px;
    }
    .trust-item i { font-size: 16px; }
}

/* ---- SMALL MOBILE (max 480px) ---- */
@media (max-width: 480px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .service-card { padding: 20px 12px; }
    .service-icon-wrap { width: 55px; height: 55px; font-size: 22px; }
    .hero { min-height: 500px; }
    .hero-title { font-size: 26px; }
    .hero-desc { font-size: 14px; }
    .stats-inner { flex-direction: column; gap: 30px; }
    .stat-number { font-size: 44px; }
    .areas-grid { grid-template-columns: 1fr; }
    .cta-form-wrap { padding: 20px; }
    .bsc-content h2 { font-size: 28px; }

    /* TOP BAR - very small screens */
    .top-bar-left {
        flex-direction: column;
        gap: 4px;
    }

    /* TRUST ITEMS - Small mobile */
    .trust-items {
        gap: 10px 15px;
    }
    .trust-item {
        font-size: 11px;
        gap: 5px;
    }
    .trust-item i { font-size: 14px; }
}
