:root {
    --primary: #1F4E79;
    --primary-dark: #163A5C;
    --secondary: #F4F6F8;
    --white: #FFFFFF;
    --accent: #E4572E;
    --accent-hover: #C7431F;
    --text-dark: #1A1A1A;
    --text-gray: #6C757D;
    --border: #E5E7EB;
    --yellow: #F5A623;
    --yellow-dark: #D4881A;
    --black: #0D0D0D;
    --dark-bg: #111827;
    --card-bg: #1E2A3A;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'Barlow', sans-serif;
    color: var(--text-dark);
    background: #fff;
    overflow-x: hidden
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: #111
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px
}

/* ===== UTILS ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px
}

.section-tag {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary-dark)
}

.section-title span {
    color: var(--accent)
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    margin-top: 12px;
    max-width: 600px;
    line-height: 1.7
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all .3s ease;
    border: 2px solid transparent
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent)
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(228, 87, 46, .4)
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: #fff
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary-dark);
    transform: translateY(-2px)
}

.btn-yellow {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow)
}

.btn-yellow:hover {
    background: var(--yellow-dark);
    border-color: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, .4)
}

/* AOS Base */
[data-aos] {
    opacity: 0;
    transition: opacity .7s ease, transform .7s ease
}

[data-aos="fade-up"] {
    transform: translateY(40px)
}

[data-aos="fade-right"] {
    transform: translateX(-40px)
}

[data-aos="fade-left"] {
    transform: translateX(40px)
}

[data-aos="zoom-in"] {
    transform: scale(.85)
}

[data-aos].aos-animate {
    opacity: 1;
    transform: none
}

/* ===== HEADER ===== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all .4s ease
}

.header-top {
    background: var(--primary-dark);
    padding: 6px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, .8)
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px
}

.header-top a {
    color: rgba(255, 255, 255, .85);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    transition: color .3s
}

.header-top a:hover {
    color: var(--yellow)
}

.header-main {
    background: var(--primary);
    padding: 12px 0;
    transition: all .4s ease
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none
}

.logo-img {
    height: 56px;
    width: 56px
}

.logo-text-wrap {
    display: flex;
    flex-direction: column
}

.logo-name {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: .5px
}

.logo-tagline {
    font-size: 10px;
    color: var(--yellow);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500
}

nav {
    display: flex;
    align-items: center;
    gap: 4px
}

nav a {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, .85);
    padding: 8px 12px;
    border-radius: 3px;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: all .3s;
    position: relative
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width .3s
}

nav a:hover {
    color: #fff
}

nav a:hover::after {
    width: 80%
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 10px
}

.header-cta .btn {
    padding: 10px 18px;
    font-size: 13px
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all .3s
}

#header.scrolled .header-top {
    display: none
}

#header.scrolled .header-main {
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .3)
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-dark);
    z-index: 2000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform .4s ease
}

.mobile-nav.open {
    transform: translateX(0)
}

.mobile-nav a {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    padding: 12px 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    width: 100%;
    text-align: center;
    transition: color .3s
}

.mobile-nav a:hover {
    color: var(--yellow)
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer
}

/* ===== HERO SLIDER ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center
}

.slide.active {
    opacity: 1
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 30, 60, .88) 0%, rgba(22, 58, 92, .6) 60%, rgba(228, 87, 46, .2) 100%)
}

.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0 20px
}

.slide-content .container {
    max-width: 800px
}

.slide-tag {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 5px 14px;
    margin-bottom: 18px;
    border-radius: 2px
}

.slide-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(34px, 6vw, 72px);
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .3)
}

.slide-title span {
    color: var(--yellow)
}

.slide-sub {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255, 255, 255, .82);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 560px
}

.slide-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.slide-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    cursor: pointer;
    transition: all .3s
}

.dot.active {
    background: var(--yellow);
    width: 28px;
    border-radius: 4px
}

.slide-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 10;
    pointer-events: none
}

.arrow-btn {
    pointer-events: all;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all .3s;
    backdrop-filter: blur(4px)
}

.arrow-btn:hover {
    background: var(--accent);
    border-color: var(--accent)
}

/* Slide backgrounds */
#slide1 {
    background-image: url('../image/hydra-cranes-on-hire01-1600-1371.jpg')
}

#slide2 {
    background-image: url('../image/car-towing-services1600-747.jpg')
}

#slide3 {
    background-image: url('../image/crane-service-providers-1040-468.jpeg')
}

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
    background: var(--accent);
    padding: 12px 0;
    overflow: hidden
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 25s linear infinite;
    width: max-content
}

.marquee-track:hover {
    animation-play-state: paused
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    padding: 0 30px;
    white-space: nowrap
}

.marquee-item svg {
    flex-shrink: 0
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ===== ABOUT ===== */
.about {
    padding: 40px 0
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center
}

.about-img-wrap {
    position: relative
}

.about-img-main {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 20px 60px rgba(31, 78, 121, .2)
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.about-img-main:hover img {
    transform: scale(1.04)
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: #fff;
    padding: 20px 24px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2)
}

.about-badge .num {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--yellow);
    line-height: 1
}

.about-badge .label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    margin-top: 4px
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark)
}

.feat-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(228, 87, 46, .1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px
}

/* ===== SERVICES ===== */
.services {
    padding: 40px 0;
    background: var(--secondary)
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 50px
}

.service-card {
    background: #fff;
    border-radius: 8px;
    padding: 32px 26px;
    border: 1px solid var(--border);
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease
}

.service-card:hover::before {
    transform: scaleX(1)
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(31, 78, 121, .12);
    border-color: transparent
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: rgba(31, 78, 121, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all .4s ease;
    font-size: 26px
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1)
}

.service-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 10px;
    transition: color .3s
}

.service-card:hover h3 {
    color: var(--accent)
}

.service-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: gap .3s
}

.service-card:hover .service-link {
    gap: 10px
}

/* ===== VIDEO SECTION ===== */
.video-section {
    padding: 40px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="g" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="1" cy="1" r=".5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23g)"/></svg>')
}

.video-section .section-title {
    color: #fff
}

.video-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    margin-top: 50px
}

.video-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: #000
}

.video-card.large {
    grid-row: span 2
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    filter: brightness(.75)
}

.video-card:hover .video-thumb {
    transform: scale(1.05);
    filter: brightness(.55)
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px
}

.play-btn {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(228, 87, 46, .9);
    border: 3px solid rgba(255, 255, 255, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    transition: all .4s ease;
    animation: pulse 2.5s infinite
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(228, 87, 46, .5)
    }

    50% {
        box-shadow: 0 0 0 16px rgba(228, 87, 46, 0)
    }
}

.video-card:hover .play-btn {
    background: var(--accent);
    transform: scale(1.12);
    animation: none
}

.video-label {
    background: rgba(0, 0, 0, .6);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: .5px;
    backdrop-filter: blur(4px)
}

.video-card.large {
    aspect-ratio: 16/9;
    min-height: 300px
}

.video-card:not(.large) {
    aspect-ratio: 16/9
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.lightbox.open {
    display: flex
}

.lightbox-inner {
    position: relative;
    width: 100%;
    max-width: 960px
}

.lightbox-inner video {
    width: 100%;
    border-radius: 8px
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 1
}

/* ===== WHY CHOOSE US ===== */
.why {
    padding: 40px 0
}

.why .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center
}

.why-img {
    border-radius: 8px;
    overflow: hidden;
    position: relative
}

.why-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3
}

.why-img-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: #fff;
    padding: 10px 16px;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase
}

.why-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 14px
}

.why-icon {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background: rgba(228, 87, 46, .1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    transition: all .3s
}

.why-item:hover .why-icon {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1)
}

.why-item h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 4px
}

.why-item p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6
}

/* ===== COUNTERS ===== */
.counters {
    background: var(--primary);
    padding: 70px 0
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center
}

.counter-item {
    position: relative;
    padding: 20px
}

.counter-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, .15)
}

.counter-item:last-child::after {
    display: none
}

.counter-num {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 700;
    color: var(--yellow);
    line-height: 1
}

.counter-label {
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500
}

/* ===== GALLERY ===== */
.gallery {
    padding: 40px 0;
    background: var(--secondary)
}

.gallery-grid {
    columns: 4;
    column-gap: 14px;
    margin-top: 50px
}

@media(max-width:1000px) {
    .gallery-grid {
        columns: 3
    }
}

@media(max-width:640px) {
    .gallery-grid {
        columns: 2
    }
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 14px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    cursor: pointer
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform .5s ease;
    filter: brightness(.9)
}

.gallery-item::after {
    content: '⊕';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    background: rgba(31, 78, 121, .5);
    opacity: 0;
    transition: opacity .4s
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(.7)
}

.gallery-item:hover::after {
    opacity: 1
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 40px 0
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    margin-top: 50px
}

.testimonials-track {
    display: flex;
    transition: transform .6s ease
}

.testimonial-card {
    min-width: 100%;
    padding: 0 10px
}

@media(min-width:768px) {
    .testimonial-card {
        min-width: 50%;
        padding: 0 12px
    }
}

@media(min-width:1024px) {
    .testimonial-card {
        min-width: 33.333%;
        padding: 0 14px
    }
}

.testi-inner {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
    transition: transform .3s, box-shadow .3s
}

.testi-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(31, 78, 121, .12)
}

.stars {
    color: var(--yellow);
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 2px
}

.testi-text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 18px
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    flex-shrink: 0
}

.testi-name {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-dark)
}

.testi-role {
    font-size: 12px;
    color: var(--text-gray)
}

.testi-nav {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 28px
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all .3s
}

.testi-dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px
}

/* ===== CONTACT ===== */
.contact {
    padding: 40px 0;
    background: var(--secondary)
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    margin-top: 50px
}

.contact-info-card {
    background: var(--primary);
    border-radius: 8px;
    padding: 36px;
    color: #fff;
    height: fit-content
}

.contact-info-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .15)
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 17px;
    color: var(--yellow)
}

.info-item h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 4px
}

.info-item p,
.info-item a {
    font-size: 15px;
    color: #fff;
    line-height: 1.6;
    transition: color .3s
}

.info-item a:hover {
    color: var(--yellow)
}

.contact-form-wrap {
    background: #fff;
    border-radius: 8px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06)
}

.contact-form-wrap h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 24px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.form-group {
    margin-bottom: 18px
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: .3px;
    margin-bottom: 6px;
    text-transform: uppercase
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 5px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    transition: border-color .3s, box-shadow .3s;
    outline: none;
    background: #fff
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(31, 78, 121, .08)
}

.form-group textarea {
    resize: vertical;
    min-height: 110px
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--accent)
}

.form-error-msg {
    font-size: 12px;
    color: var(--accent);
    margin-top: 4px;
    display: none
}

.form-group.error .form-error-msg {
    display: block
}

.form-success {
    display: none;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 14px 18px;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 16px
}

.map-wrap {
    margin-top: 50px;
    border-radius: 8px;
    overflow: hidden;
    height: 380px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08)
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark-bg);
    color: rgba(255, 255, 255, .75);
    padding: 60px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.footer-brand .logo {
    margin-bottom: 16px
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .55);
    max-width: 280px;
    margin-bottom: 20px
}

.footer-socials {
    display: flex;
    gap: 10px
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all .3s;
    text-decoration: none
}

.social-icon:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px)
}

.footer-col h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .5px;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent)
}

.footer-col ul li {
    margin-bottom: 10px
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, .55);
    transition: all .3s;
    display: flex;
    align-items: center;
    gap: 6px
}

.footer-col ul li a:hover {
    color: var(--yellow);
    padding-left: 4px
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    color: rgba(255, 255, 255, .55)
}

.footer-contact-item span:first-child {
    color: var(--accent);
    font-size: 16px;
    margin-top: 1px;
    flex-shrink: 0
}

.footer-contact-item a {
    color: rgba(255, 255, 255, .55);
    transition: color .3s
}

.footer-contact-item a:hover {
    color: var(--yellow)
}

.footer-bottom {
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, .3)
}

.footer-bottom a {
    color: rgba(255, 255, 255, .4);
    transition: color .3s
}

.footer-bottom a:hover {
    color: var(--yellow)
}

/* ===== FLOATING BUTTONS ===== */
.float-btns {
    position: fixed;
    bottom: 30px;
    right: 24px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
    transition: all .3s;
    text-decoration: none;
    border: none
}

.float-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .3)
}

.float-wa {
    background: #25D366;
    color: #fff
}

.float-call {
    background: var(--accent);
    color: #fff
}

.float-top {
    background: var(--primary);
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: all .3s
}

.float-top.show {
    opacity: 1;
    pointer-events: all
}

.float-label {
    position: absolute;
    right: 60px;
    background: var(--black);
    color: #fff;
    font-size: 12px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: .5px;
    padding: 5px 10px;
    border-radius: 3px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s
}

.float-btn:hover .float-label {
    opacity: 1
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {

    .about .container,
    .why .container {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .video-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto
    }

    .video-card.large {
        grid-row: span 1
    }

    .counters-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .counter-item:nth-child(2)::after {
        display: none
    }
}

@media(max-width:768px) {

    nav,
    .header-cta {
        display: none
    }

    .hamburger {
        display: flex
    }

    .mobile-nav {
        display: flex
    }

    .header-top {
        display: none !important
    }

    .hero {
        height: 100svh
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .why-items {
        grid-template-columns: 1fr
    }

    .about-features {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center
    }

    .slide-btns .btn {
        padding: 11px 18px;
        font-size: 13px
    }

    .counters-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:480px) {
    .container {
        padding: 0 16px
    }

    .counters-grid {
        grid-template-columns: 1fr 1fr
    }

    .gallery-grid {
        columns: 2
    }
} 
.services {
            padding: 80px 0;
            background: #f8f9fa;
        }

       /* FIX CARD HEIGHT + COMPACT DESIGN */

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:22px;
}

.service-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  transition:.4s;
  height:100%;
}

.service-card:hover{
  transform:translateY(-8px);
}

/* SMALLER IMAGE */
.service-card img{
  width:100%;
  height:170px;   /* reduced from 220px */
  object-fit:cover;
}

/* LESS PADDING */
.service-content{
  padding:18px;
}

/* SMALL TITLE */
.service-content h3{
  font-size:20px;
  margin-bottom:8px;
  line-height:1.3;
}

/* SHORT TEXT */
.service-content p{
  font-size:14px;
  color:#666;
  line-height:1.6;
  margin-bottom:10px;

  display:-webkit-box;
  -webkit-line-clamp:3;   /* only 3 lines */
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* LINK */
.service-link{
  font-size:14px;
  font-weight:600;
  color:#ff6600;
  text-decoration:none;
}

/* MOBILE */
@media(max-width:768px){
  .service-card img{
    height:150px;
  }
}

.page-hero{
    position:relative;
    min-height:380px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;

    background:
    repeating-linear-gradient(
        45deg,
        rgba(255,255,255,0.03) 0px,
        rgba(255,255,255,0.03) 8px,
        transparent 8px,
        transparent 16px
    ),
    linear-gradient(135deg,#1F4E79 0%, #2d6ba5 45%, #163957 100%);
}

/* dark overlay */
.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right,rgba(0,0,0,.15),rgba(0,0,0,.35));
}

/* floating circles */
.hero-shape{
    position:absolute;
    border-radius:50%;
    background:rgba(255,255,255,.08);
}

.shape-1{
    width:220px;
    height:220px;
    top:-60px;
    left:-60px;
}

.shape-2{
    width:170px;
    height:170px;
    bottom:-40px;
    right:70px;
}

.shape-3{
    width:150px;
    height:150px;
    top:50%;
    right:-60px;
    transform:translateY(-50%);
}

/* content */
.hero-content{
    position:relative;
    z-index:2;
}

.page-hero h1{
    color:#fff;
    font-size:44px;
    font-weight:800;
    letter-spacing:-1px;
    margin-bottom:18px;
    text-transform:uppercase;
    text-shadow:0 4px 10px rgba(0,0,0,.25);
}

.hero-line{
    width:80px;
    height:4px;
    background:#ff6b6b;
    margin:0 auto 28px;
    border-radius:10px;
}

.breadcrumb-list{
    list-style:none;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:14px;
    padding:0;
    margin:0;
    flex-wrap:wrap;
}

.breadcrumb-list li{
    color:#fff;
    font-size:18px;
}

.breadcrumb-list a{
    color:#fff;
    text-decoration:none;
    background:rgba(255,255,255,.08);
    padding:10px 18px;
    border-radius:8px;
    transition:.3s;
}

.breadcrumb-list a:hover{
    background:#fff;
    color:#1F4E79;
}

.breadcrumb-list .active{
    font-weight:600;
    opacity:.95;
}

/* mobile */
@media(max-width:991px){
    .page-hero{
        min-height:320px;
    }

    .page-hero h1{
        font-size:48px;
    }
}

@media(max-width:576px){
    .page-hero{
        min-height:270px;
        padding:30px 15px;
    }

    .page-hero h1{
        font-size:34px;
        letter-spacing:1px;
    }

    .breadcrumb-list li{
        font-size:15px;
    }

    .breadcrumb-list a{
        padding:8px 14px;
    }

    .shape-1{
        width:150px;
        height:150px;
    }

    .shape-2{
        width:120px;
        height:120px;
    }

    .shape-3{
        width:100px;
        height:100px;
    }
}