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

:root {
    --primary: #000000;
    --secondary: #9e1f1c;
    --dark: #1a1a1a;
    --light: #ffffff;
    --gray: #f5f5f5
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    font-display: swap
}

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

main {
    contain: layout style;
    min-height: 100vh
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 99;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgb(158 31 28 / .3);
    will-change: transform
}

.scroll-top:hover {
    transform: translateY(-5px)
}

nav {
    position: fixed;
    top: 0;
    /* width: 100%; */
    background: var(--light);
    z-index: 999;
    transition: background 0.3s, box-shadow 0.3s;

}

nav.scrolled {
    background: var(--light);
    box-shadow: 0 2px 20px rgb(0 0 0 / .1)
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    z-index: 1001;
    display: flex;
    align-items: center
}

.logo span {
    color: var(--primary)
}

.logo-img {
    height: 70px;
    width: auto;
    margin-right: 10px;
    object-fit: contain
}

@media (max-width:768px) {
    .logo {
        font-size: 1rem
    }

    .logo-img {
        /* height: 35px; */
        margin-right: 8px
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    position: relative
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease
}

.nav-links a:hover {
    color: var(--secondary)
}

.nav-links a:hover::after {
    width: 100%
}

.nav-links .nav-cta-btn,
a.nav-cta-btn {
    padding: .7rem 1.8rem;
    background: #000000 !important;
    color: #ffffff !important;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 5px 15px rgb(0 0 0 / .3);
    text-decoration: none
}

.nav-links .nav-cta-btn:hover,
a.nav-cta-btn:hover {
    background: #1a1a1a !important;
    color: #ffffff !important;
    transform: translateY(-2px)
}

.nav-links .nav-cta-btn::after,
a.nav-cta-btn::after {
    display: none
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 3px
}

nav.scrolled .hamburger span {
    background: var(--primary)
}

.hamburger.active span {
    background: var(--primary)
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px)
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / .8);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s
}

.mobile-overlay.active {
    display: block;
    opacity: 1
}

.hero {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding-left: 5%;
    z-index: 1;
    contain: layout style;
    content-visibility: auto
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    display: none
}

.hero-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -2;
    overflow: hidden;
    aspect-ratio: 3 / 2
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    image-rendering: -webkit-optimize-contrast;
    will-change: auto;
    transform: translateZ(0);
    backface-visibility: hidden;
    aspect-ratio: 3 / 2;
    content-visibility: auto
}

@media (max-width:768px) {
    .hero-image {
        object-position: center center
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / .6);
    z-index: 0;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
    contain: strict
}

.hero::before {
    display: none
}

@keyframes move {
    0% {
        transform: translate(0, 0)
    }

    100% {
        transform: translate(50px, 50px)
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 2rem
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 1.5rem
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem
}

.cta-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: #fff;
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgb(0 0 0 / .2);
    will-change: transform
}

.cta-btn:hover {
    transform: translateY(-3px)
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media (max-width:768px) {
    .hero {
        justify-content: center;
        text-align: center;
        padding-left: 0;
        min-height: 600px;
        height: 100vh;
        max-height: 100vh
    }

    .hero-video {
        display: none
    }

    .hero-picture {
        display: block;
        aspect-ratio: 3 / 2
    }

    .hero-image {
        aspect-ratio: 3 / 2
    }
}

section {
    padding: 6rem 2rem
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%)
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 4rem
}

.about {
    background: var(--gray);
    padding: 4rem 1.5rem
}

.about-content {
    display: flex;
    gap: 2rem;
    align-items: center
}

.about-text {
    flex: 1
}

.about-image {
    flex: 1
}

.about-text h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1rem
}

.about-text p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.6
}

.about-image {
    position: relative
}

.about-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.5;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgb(0 0 0 / .15);
    transition: transform 0.3s
}

.about-image img:hover {
    transform: scale(1.05)
}

.mission-vision {
    background: #fff;
    padding: 6rem 2rem
}

.mission-vision-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem auto 0;
    flex-wrap: wrap
}

.mission-card,
.vision-card {
    width: 300px;
    height: 300px;
    padding: .5rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgb(0 0 0 / .12);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    will-change: transform
}

.mission-card {
    background: var(--primary);
    color: #fff
}

.vision-card {
    background: var(--secondary);
    color: #fff
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px)
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgb(255 255 255 / .05) 20px, rgb(255 255 255 / .05) 40px);
    animation: movePattern 20s linear infinite
}

@keyframes movePattern {
    0% {
        transform: translate(0, 0)
    }

    100% {
        transform: translate(40px, 40px)
    }
}

.mv-icon {
    width: 55px;
    height: 55px;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: rgb(255 255 255 / .25);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center
}

.mv-content h3 {
    font-size: 1.2rem;
    margin-bottom: .6rem
}

.mv-content p {
    font-size: .85rem;
    line-height: 1.3
}

.mv-label {
    font-size: .7rem;
    padding: .3rem 1rem;
    margin-bottom: .5rem
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgb(0 0 0 / .08);
    transition: transform 0.3s ease;
    will-change: transform
}

.product-card:hover {
    transform: translateY(-5px)
}

.product-image {
    height: 160px;
    overflow: hidden
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast
}

@media (max-width:768px) {
    .product-image {
        height: auto;
        aspect-ratio: 16 / 9
    }

    section {
    padding: 6rem 0rem !important;
}
.about {
   
    padding: 4rem 0rem !important;
}

}

.product-content {
    padding: 1rem
}

.product-content h3 {
    font-size: 1.1rem;
    margin-bottom: .5rem;
    color: var(--primary)
}

.product-content p {
    font-size: .85rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.4
}

.product-btn {
    display: inline-block;
    padding: .6rem 1.5rem;
    background: var(--secondary);
    color: #fff;
    font-size: .85rem;
    border-radius: 30px;
    transition: transform 0.3s ease, background-color 0.3s ease
}

.product-btn:hover {
    transform: translateX(3px);
    background: var(--primary)
}

.products-cta {
    text-align: center;
    margin-top: 3rem
}

.products-cta-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 10px 30px rgb(158 31 28 / .3)
}

.products-cta-btn:hover {
    background: var(--secondary);
    transform: translateY(-3px)
}

.product-btn {
    display: inline-block;
    padding: .8rem 2rem;
    background: var(--secondary);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease
}

.product-btn:hover {
    background: var(--primary);
    transform: translateX(5px)
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem
}

.service-link {
    display: block;
    text-decoration: none;
    color: inherit
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgb(0 0 0 / .08);
    transition: transform 0.3s ease;
    will-change: transform
}

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

.service-image {
    height: 160px;
    overflow: hidden
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast
}

.service-content {
    padding: 1rem
}

.service-content h3 {
    font-size: 1.1rem;
    margin-bottom: .5rem;
    color: var(--primary)
}

.service-content p {
    font-size: .85rem;
    color: #555;
    line-height: 1.4;
    margin-bottom: 1rem
}

.learn-more-btn {
    display: inline-block;
    padding: .6rem 1.5rem;
    background: var(--secondary);
    color: #fff;
    text-decoration: none;
    font-size: .85rem;
    border-radius: 30px;
    transition: transform 0.3s ease, background-color 0.3s ease
}

.learn-more-btn:hover {
    transform: translateX(3px);
    background: var(--primary)
}

@media (max-width:1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width:992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:768px) {
    .services-grid {
        grid-template-columns: 1fr
    }

    .service-image {
        height: auto;
        aspect-ratio: 16 / 9
    }
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem
}

.why-item {
    background: #000;
    padding: 1.3rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgb(0 0 0 / .08);
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-align: center;
    will-change: transform
}

.why-item:hover {
    background: #9e1f1c;
    transform: translateY(-5px)
}

.why-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #000;
    margin: 0 auto 1rem
}

.why-item:nth-child(even) .why-icon {
    background: var(--secondary)
}

.why-item h3 {
    font-size: 1rem;
    margin-bottom: .5rem;
    color: #f4f4f4
}

.why-item p {
    font-size: .85rem;
    color: #f4f4f4;
    line-height: 1.4
}

@media (max-width:992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:600px) {

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

.why-choose {
    background: #fff;
    padding: 2rem 1rem
}

.why-grid.three-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem
}

.why-grid.two-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem
}

@media (max-width:768px) {
    .why-grid.three-column {
        grid-template-columns: repeat(2, 1fr)
    }

    .why-grid.two-column {
        grid-template-columns: 1fr
    }
}

@media (max-width:480px) {

    .why-grid.three-column,
    .why-grid.two-column {
        grid-template-columns: 1fr
    }
}

.why-item {
    background: #000;
    padding: 1.4rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgb(0 0 0 / .06);
    transition: transform 0.3s ease, background-color 0.3s ease;
    position: relative;
    overflow: hidden;
    will-change: transform
}

.why-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.25s;
    z-index: 0
}

.why-item:hover::before {
    opacity: 1
}

.why-item:hover {
    background: #9e1f1c;
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgb(0 0 0 / .12)
}

.why-item:hover h3,
.why-item:hover p {
    color: #fff;
    position: relative;
    z-index: 1
}

.why-icon {
    width: 45px;
    height: 45px;
    background: #fff;
    color: #9e1f1c;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    will-change: transform
}

.why-item:nth-child(even) .why-icon {
    background: var(--secondary)
}

.why-item:hover .why-icon {
    transform: rotateY(360deg) scale(1.1)
}

.why-item h3 {
    font-size: 1.05rem;
    margin-bottom: .6rem;
    color: var(--light);
    position: relative;
    z-index: 1
}

.why-item p {
    color: #f4f4f4;
    font-size: .9rem;
    line-height: 1.5;
    position: relative;
    z-index: 1
}

.cta-section {
    background: linear-gradient(rgb(0 0 0 / .6), rgb(0 0 0 / .6)), url(../img/two-logistics-professionals-inspect-cargo-containe-2025-11-24-07-18-51-utc.webp) center/cover fixed;
    padding: 3rem 1.5rem;
    text-align: center;
    color: #fff;
    border-radius: 15px;
    max-width: 1200px;
    margin: 2rem auto;
    box-shadow: 0 10px 25px rgb(0 0 0 / .3)
}

@media (max-width:768px) {
    .cta-section {
        background-attachment: scroll
    }
}

.cta-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem
}

.cta-content p {
    font-size: .9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5
}

.cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center
}

.cta-primary,
.cta-secondary {
    padding: .6rem 1rem;
    font-size: .9rem;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 6px 18px rgb(0 0 0 / .2);
    flex: 0 1 auto;
    white-space: nowrap;
    max-width: 150px;
    text-align: center
}

.cta-primary {
    background: #fff;
    color: var(--primary)
}

.cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgb(255 255 255 / .4)
}

.cta-secondary {
    background: #fff0;
    color: #fff;
    border: 2px solid #fff
}

.cta-secondary:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-5px)
}

.cta-section-new {
    background: #000;
    padding: 3rem 1.5rem;
    color: #fff;
    border-radius: 15px;
    max-width: 1200px;
    margin: 2rem auto;
    box-shadow: 0 10px 25px rgb(0 0 0 / .3)
}

.cta-wrapper-new {
    display: flex;
    align-items: center;
    gap: 2rem
}

.cta-image-new {
    flex: 1
}

.cta-image-new img {
    width: 100%;
    height: auto;
    border-radius: 10px
}

.cta-content-new {
    flex: 1
}

.cta-content-new h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem
}

.cta-content-new p {
    font-size: .9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5
}

.cta-buttons-new {
    display: flex;
    gap: 1rem;
    justify-content: flex-start
}

.cta-primary-new,
.cta-secondary-new {
    padding: .6rem 1rem;
    font-size: .9rem;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 6px 18px rgb(0 0 0 / .2);
    flex: 0 1 auto;
    white-space: nowrap;
    max-width: 150px;
    text-align: center
}

.cta-primary-new {
    background: #fff;
    color: var(--primary)
}

.cta-primary-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgb(255 255 255 / .4)
}

.cta-secondary-new {
    background: #fff0;
    color: #fff;
    border: 2px solid #fff
}

.cta-secondary-new:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-5px)
}

@media (max-width:768px) {
    .cta-wrapper-new {
        flex-direction: column;
        text-align: center
    }

    .cta-buttons-new {
        justify-content: center
    }
}

.reviews {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 3rem 1.5rem;
    border-radius: 15px;
    max-width: 1200px;
    margin: 2rem auto;
    box-shadow: 0 10px 25px rgb(0 0 0 / .25)
}

.reviews .section-title,
.reviews .section-subtitle {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: .5rem
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem
}

.review-card {
    background: rgb(255 255 255 / .1);
    backdrop-filter: blur(6px);
    padding: 1.2rem;
    border-radius: 12px;
    border: 1px solid rgb(255 255 255 / .15);
    transition: transform 0.3s ease, background-color 0.3s ease;
    will-change: transform
}

.review-card:hover {
    background: rgb(255 255 255 / .18);
    transform: translateY(-3px)
}

.stars {
    font-size: 1rem;
    margin-bottom: .5rem
}

.review-text {
    font-style: italic;
    font-size: .85rem;
    margin-bottom: 1rem;
    line-height: 1.5
}

.reviewer {
    display: flex;
    align-items: center;
    gap: .8rem
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center
}

.reviewer-info h3 {
    font-size: .95rem;
    margin-bottom: .1rem
}

.reviewer-info p {
    font-size: .75rem;
    opacity: .9
}

.faqs {
    background: var(--gray);
    padding: 2rem 1rem;
    border-radius: 15px;
    max-width: 1200px;
    margin: 2rem auto
}

.faq-container {
    max-width: 700px;
    margin: 1.5rem auto 0
}

.faq-item {
    background: #fff;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgb(0 0 0 / .06)
}

.faq-question {
    padding: 1rem 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: .95rem;
    color: var(--dark);
    transition: background-color 0.3s ease;
    border-left: 3px solid var(--primary)
}

.faq-item:nth-child(even) .faq-question {
    border-left-color: var(--secondary)
}

.faq-question:hover {
    background: #f4f4f4
}

.faq-toggle {
    font-size: 1.2rem;
    transition: transform 0.3s;
    color: var(--primary)
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease
}

.faq-answer-content {
    padding: 0 1.2rem 1.2rem 1.2rem;
    color: #666;
    font-size: .9rem;
    line-height: 1.5
}

.faq-item.active .faq-answer {
    max-height: 200px
}

.contact {
    background: #fff;
    padding: 2rem 1rem
}

.contact .container {
    max-width: 100%;
    padding: 0 1rem
}

.location-tabs {
    display: flex;
    gap: 1rem;
    margin: 2rem auto 1.5rem;
    max-width: 1400px;
    justify-content: center;
    flex-wrap: wrap
}

.location-tab {
    padding: .8rem 1.5rem;
    border: 2px solid var(--primary);
    background: #fff;
    color: var(--primary);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 44px
}

.location-tab:hover {
    background: rgb(255 94 20 / .1);
    transform: translateY(-2px)
}

.location-tab.active {
    background: var(--primary);
    color: #fff
}

.location-content {
    display: none;
    animation: fadeIn 0.4s ease
}

.location-content.active {
    display: block
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    align-items: start
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.contact-item {
    display: flex;
    gap: .8rem;
    align-items: flex-start
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    will-change: transform
}

.contact-item:nth-child(even) .contact-icon {
    background: var(--secondary)
}

.contact-item:hover .contact-icon {
    transform: scale(1.1)
}

.contact-details h3 {
    font-size: 1rem;
    margin-bottom: .2rem;
    color: var(--dark)
}

.contact-details p {
    color: #666;
    line-height: 1.4;
    font-size: .9rem
}

.contact-details a {
    color: var(--primary);
    text-decoration: underline;
    font-size: .9rem;
    padding: 14px 10px;
    display: inline-block;
    min-height: 44px;
    min-width: 44px;
    line-height: 44px
}

.contact-details a:hover {
    text-decoration: underline;
    opacity: .8
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgb(0 0 0 / .08);
    height: 100%;
    min-height: 400px;
    width: 100%
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
    padding: 0;
    min-height: 44px;
    min-width: 44px
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px)
}

@media (max-width:968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .location-tabs {
        flex-direction: column;
        gap: .8rem
    }

    .location-tab {
        width: 100%;
        max-width: 400px;
        margin: 0 auto
    }
}

@media (max-width:480px) {
    .contact {
        padding: 1.5rem .5rem
    }

    .contact-item {
        flex-direction: column;
        gap: .5rem
    }

    .map-container {
        min-height: 300px
    }
}

footer {
    background: var(--dark);
    color: #fff;
    padding: 4rem 2rem 0
}

footer .logo {
    color: #fff
}

footer .logo span {
    color: #fff
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding-bottom: 3rem
}

.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #fff
}

.footer-section p,
.footer-section a {
    color: #e0e0e0;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: .5rem
}

.footer-section a:hover {
    color: #fff;
    text-decoration: underline
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem
}

.social-links a {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: #fff;
    will-change: transform
}

.social-links a:nth-child(even) {
    background: var(--secondary)
}

.social-links a svg {
    fill: #fff;
    width: 20px;
    height: 20px
}

.social-links a:hover {
    transform: translateY(-5px)
}

.footer-bottom {
    border-top: 1px solid rgb(255 255 255 / .1);
    padding: 2rem 0;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.footer-bottom p {
    color: #e0e0e0
}

.designer {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #e0e0e0
}

.designer a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    position: relative
}

.designer a:hover {
    text-decoration: underline
}

.yp-logo {
    width: 30px;
    height: 30px;
    background: var(--secondary);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem
}

@media (max-width:768px) {
    nav {
        backdrop-filter: none;
        background: rgb(255 255 255 / .98)
    }

    .hamburger {
        display: flex
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: #fff;
        flex-direction: column;
        padding: .8rem 2rem;
        gap: .5rem;
        transition: right 0.3s;
        box-shadow: -5px 0 20px rgb(0 0 0 / .3);
        z-index: 9000;
        align-items: center;
        justify-content: flex-start;
        overflow-y: auto;
        z-index: 20000;
    }

    .nav-links a {
        color: var(--dark) !important;
        padding: .6rem 1rem;
        text-align: center;
        width: 100%
    }

    .nav-links li {
        width: 100%;
        text-align: center
    }

    .nav-links.active {
        right: 0
    }

    .nav-links .nav-cta-btn,
    a.nav-cta-btn {
        width: 100%;
        text-align: center;
        background: #7a1815 !important;
        color: #ffffff !important;
        border: 2px solid #7a1815 !important
    }

    .hero {
        padding: 0 1.5rem
    }

    .hero-content {
        max-width: 100%;
        padding: 1.5rem;
        text-align: center
    }

    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.3
    }

    .hero p {
        font-size: .9rem;
        margin-bottom: 1.5rem
    }

    .cta-btn {
        display: block;
        margin: 0 auto;
        max-width: 250px;
        text-align: center
    }

    .section-title {
        font-size: 2rem;
        text-align: center
    }

    .section-subtitle {
        text-align: center
    }

    .about-content {
        flex-direction: column;
        text-align: center
    }

    .about-image {
        order: -1
    }

    .about-text {
        text-align: center
    }

    .about-text h2 {
        font-size: 2rem;
        text-align: center
    }

    .about-text p {
        font-size: 1rem;
        text-align: center
    }

    .about-image {
        display: flex;
        justify-content: center
    }

    .about-image img {
        margin: 0 auto
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .mission-card,
    .vision-card {
        padding: 3rem 2rem
    }

    .contact .container {
        padding: 0 1rem
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .contact-info {
        text-align: center;
        align-items: center
    }

    .contact-item {
        justify-content: center;
        flex-direction: column;
        text-align: center;
        align-items: center
    }

    .contact-details {
        text-align: center
    }

    .social-links {
        justify-content: center
    }

    .map-container {
        margin: 0 auto;
        width: 100%;
        height: 300px
    }

    .footer-content {
        text-align: center
    }

    .footer-section {
        display: flex;
        flex-direction: column;
        align-items: center
    }

    .footer-section h3 {
        text-align: center;
        color: #fff
    }

    .footer-section p {
        text-align: center
    }

    .footer-section a {
        text-align: center
    }

    .footer-links {
        justify-content: center
    }

    .logo {
        color: white !important
    }

    .logo span {
        color: white !important
    }

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

    .designer {
        justify-content: center
    }

    .social-links {
        justify-content: center
    }

    .product-grid,
    .services-grid,
    .why-grid,
    .reviews-grid {
        grid-template-columns: 1fr
    }
}

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

:root {
    --primary: #000000;
    --secondary: #9e1f1c;
    --dark: #1a1a1a;
    --light: #ffffff;
    --gray: #f5f5f5
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    font-display: swap
}

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

main {
    contain: layout style;
    min-height: 100vh
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 999;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgb(158 31 28 / .3);
    will-change: transform
}

.scroll-top:hover {
    transform: translateY(-5px)
}

nav {
    position: fixed;
    top: 0;
    /* width: 100%; */
    background: var(--light);
    z-index: 99;
    transition: background 0.3s, box-shadow 0.3s
}

nav.scrolled {
    background: var(--light);
    box-shadow: 0 2px 20px rgb(0 0 0 / .1)
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    z-index: 1001;
    display: flex;
    align-items: center
}

.logo span {
    color: var(--primary)
}

.logo-img {
    height: 70px;
    width: auto;
    margin-right: 10px;
    object-fit: contain
}

@media (max-width:768px) {
    .logo {
        font-size: 1rem
    }

    .logo-img {
        /* height: 35px; */
        margin-right: 8px
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    position: relative
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease
}

.nav-links a:hover {
    color: var(--secondary)
}

.nav-links a:hover::after {
    width: 100%
}

.nav-links .nav-cta-btn,
a.nav-cta-btn {
    padding: .7rem 1.8rem;
    background: #000000 !important;
    color: #ffffff !important;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 5px 15px rgb(0 0 0 / .3);
    text-decoration: none
}

.nav-links .nav-cta-btn:hover,
a.nav-cta-btn:hover {
    background: #1a1a1a !important;
    color: #ffffff !important;
    transform: translateY(-2px)
}

.nav-links .nav-cta-btn::after,
a.nav-cta-btn::after {
    display: none
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 3px
}

nav.scrolled .hamburger span {
    background: var(--primary)
}

.hamburger.active span {
    background: var(--primary)
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px)
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / .8);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s
}

.mobile-overlay.active {
    display: block;
    opacity: 1
}

.hero {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding-left: 5%;
    z-index: 1;
    contain: layout style;
    content-visibility: auto
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    display: none
}

.hero-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -2;
    overflow: hidden;
    aspect-ratio: 3 / 2
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    image-rendering: -webkit-optimize-contrast;
    will-change: auto;
    transform: translateZ(0);
    backface-visibility: hidden;
    aspect-ratio: 3 / 2;
    content-visibility: auto
}

@media (max-width:768px) {
    .hero-image {
        object-position: center center
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / .6);
    z-index: 0;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
    contain: strict
}

.hero::before {
    display: none
}

@keyframes move {
    0% {
        transform: translate(0, 0)
    }

    100% {
        transform: translate(50px, 50px)
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 2rem
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 1.5rem
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem
}

.cta-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: #fff;
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgb(0 0 0 / .2);
    will-change: transform
}

.cta-btn:hover {
    transform: translateY(-3px)
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media (max-width:768px) {
    .hero {
        justify-content: center;
        text-align: center;
        padding-left: 0;
        min-height: 600px;
        height: 100vh;
        max-height: 100vh
    }

    .hero-video {
        display: none
    }

    .hero-picture {
        display: block;
        aspect-ratio: 3 / 2
    }

    .hero-image {
        aspect-ratio: 3 / 2
    }
}

section {
    padding: 6rem 2rem
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%)
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 4rem
}

.about {
    background: var(--gray);
    padding: 4rem 1.5rem
}

.about-content {
    display: flex;
    gap: 2rem;
    align-items: center
}

.about-text {
    flex: 1
}

.about-image {
    flex: 1
}

.about-text h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1rem
}

.about-text p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.6
}

.about-image {
    position: relative
}

.about-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.5;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgb(0 0 0 / .15);
    transition: transform 0.3s
}

.about-image img:hover {
    transform: scale(1.05)
}

.mission-vision {
    background: #fff;
    padding: 6rem 2rem
}

.mission-vision-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem auto 0;
    flex-wrap: wrap
}

.mission-card,
.vision-card {
    width: 300px;
    height: 300px;
    padding: .5rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgb(0 0 0 / .12);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    will-change: transform
}

.mission-card {
    background: var(--primary);
    color: #fff
}

.vision-card {
    background: var(--secondary);
    color: #fff
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px)
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgb(255 255 255 / .05) 20px, rgb(255 255 255 / .05) 40px);
    animation: movePattern 20s linear infinite
}

@keyframes movePattern {
    0% {
        transform: translate(0, 0)
    }

    100% {
        transform: translate(40px, 40px)
    }
}

.mv-icon {
    width: 55px;
    height: 55px;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: rgb(255 255 255 / .25);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center
}

.mv-content h3 {
    font-size: 1.2rem;
    margin-bottom: .6rem
}

.mv-content p {
    font-size: .85rem;
    line-height: 1.3
}

.mv-label {
    font-size: .7rem;
    padding: .3rem 1rem;
    margin-bottom: .5rem
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgb(0 0 0 / .08);
    transition: transform 0.3s ease;
    will-change: transform
}

.product-card:hover {
    transform: translateY(-5px)
}

.product-image {
    height: 160px;
    overflow: hidden
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast
}

@media (max-width:768px) {
    .product-image {
        height: auto;
        aspect-ratio: 16 / 9
    }

.container {

    padding: 0 1rem
}

}

.product-content {
    padding: 1rem
}

.product-content h3 {
    font-size: 1.1rem;
    margin-bottom: .5rem;
    color: var(--primary)
}

.product-content p {
    font-size: .85rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.4
}

.product-btn {
    display: inline-block;
    padding: .6rem 1.5rem;
    background: var(--secondary);
    color: #fff;
    font-size: .85rem;
    border-radius: 30px;
    transition: transform 0.3s ease, background-color 0.3s ease
}

.product-btn:hover {
    transform: translateX(3px);
    background: var(--primary)
}

.products-cta {
    text-align: center;
    margin-top: 3rem
}

.products-cta-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 10px 30px rgb(158 31 28 / .3)
}

.products-cta-btn:hover {
    background: var(--secondary);
    transform: translateY(-3px)
}

.product-btn {
    display: inline-block;
    padding: .8rem 2rem;
    background: var(--secondary);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease
}

.product-btn:hover {
    background: var(--primary);
    transform: translateX(5px)
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem
}

.service-link {
    display: block;
    text-decoration: none;
    color: inherit
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgb(0 0 0 / .08);
    transition: transform 0.3s ease;
    will-change: transform
}

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

.service-image {
    height: 160px;
    overflow: hidden
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast
}

.service-content {
    padding: 1rem
}

.service-content h3 {
    font-size: 1.1rem;
    margin-bottom: .5rem;
    color: var(--primary)
}

.service-content p {
    font-size: .85rem;
    color: #555;
    line-height: 1.4;
    margin-bottom: 1rem
}

.learn-more-btn {
    display: inline-block;
    padding: .6rem 1.5rem;
    background: var(--secondary);
    color: #fff;
    text-decoration: none;
    font-size: .85rem;
    border-radius: 30px;
    transition: transform 0.3s ease, background-color 0.3s ease
}

.learn-more-btn:hover {
    transform: translateX(3px);
    background: var(--primary)
}

@media (max-width:1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width:992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:768px) {
    .services-grid {
        grid-template-columns: 1fr
    }

    .service-image {
        height: auto;
        aspect-ratio: 16 / 9
    }
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem
}

.why-item {
    background: #000;
    padding: 1.3rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgb(0 0 0 / .08);
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-align: center;
    will-change: transform
}

.why-item:hover {
    background: #9e1f1c;
    transform: translateY(-5px)
}

.why-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #000;
    margin: 0 auto 1rem
}

.why-item:nth-child(even) .why-icon {
    background: var(--secondary)
}

.why-item h3 {
    font-size: 1rem;
    margin-bottom: .5rem;
    color: #f4f4f4
}

.why-item p {
    font-size: .85rem;
    color: #f4f4f4;
    line-height: 1.4
}

@media (max-width:992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:600px) {

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

.why-choose {
    background: #fff;
    padding: 2rem 1rem
}

.why-grid.three-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem
}

.why-grid.two-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem
}

@media (max-width:768px) {
    .why-grid.three-column {
        grid-template-columns: repeat(2, 1fr)
    }

    .why-grid.two-column {
        grid-template-columns: 1fr
    }
}

@media (max-width:480px) {

    .why-grid.three-column,
    .why-grid.two-column {
        grid-template-columns: 1fr
    }
}

.why-item {
    background: #000;
    padding: 1.4rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgb(0 0 0 / .06);
    transition: transform 0.3s ease, background-color 0.3s ease;
    position: relative;
    overflow: hidden;
    will-change: transform
}

.why-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.25s;
    z-index: 0
}

.why-item:hover::before {
    opacity: 1
}

.why-item:hover {
    background: #9e1f1c;
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgb(0 0 0 / .12)
}

.why-item:hover h3,
.why-item:hover p {
    color: #fff;
    position: relative;
    z-index: 1
}

.why-icon {
    width: 45px;
    height: 45px;
    background: #fff;
    color: #9e1f1c;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    will-change: transform
}

.why-item:nth-child(even) .why-icon {
    background: var(--secondary)
}

.why-item:hover .why-icon {
    transform: rotateY(360deg) scale(1.1)
}

.why-item h3 {
    font-size: 1.05rem;
    margin-bottom: .6rem;
    color: var(--light);
    position: relative;
    z-index: 1
}

.why-item p {
    color: #f4f4f4;
    font-size: .9rem;
    line-height: 1.5;
    position: relative;
    z-index: 1
}

.cta-section {
    background: linear-gradient(rgb(0 0 0 / .6), rgb(0 0 0 / .6)), url(../img/two-logistics-professionals-inspect-cargo-containe-2025-11-24-07-18-51-utc.webp) center/cover fixed;
    padding: 3rem 1.5rem;
    text-align: center;
    color: #fff;
    border-radius: 15px;
    max-width: 1200px;
    margin: 2rem auto;
    box-shadow: 0 10px 25px rgb(0 0 0 / .3)
}

@media (max-width:768px) {
    .cta-section {
        background-attachment: scroll
    }
}

.cta-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem
}

.cta-content p {
    font-size: .9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5
}

.cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center
}

.cta-primary,
.cta-secondary {
    padding: .6rem 1rem;
    font-size: .9rem;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 6px 18px rgb(0 0 0 / .2);
    flex: 0 1 auto;
    white-space: nowrap;
    max-width: 150px;
    text-align: center
}

.cta-primary {
    background: #fff;
    color: var(--primary)
}

.cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgb(255 255 255 / .4)
}

.cta-secondary {
    background: #fff0;
    color: #fff;
    border: 2px solid #fff
}

.cta-secondary:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-5px)
}

.cta-section-new {
    background: #000;
    padding: 3rem 1.5rem;
    color: #fff;
    border-radius: 15px;
    max-width: 1200px;
    margin: 2rem auto;
    box-shadow: 0 10px 25px rgb(0 0 0 / .3)
}

.cta-wrapper-new {
    display: flex;
    align-items: center;
    gap: 2rem
}

.cta-image-new {
    flex: 1
}

.cta-image-new img {
    width: 100%;
    height: auto;
    border-radius: 10px
}

.cta-content-new {
    flex: 1
}

.cta-content-new h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem
}

.cta-content-new p {
    font-size: .9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5
}

.cta-buttons-new {
    display: flex;
    gap: 1rem;
    justify-content: flex-start
}

.cta-primary-new,
.cta-secondary-new {
    padding: .6rem 1rem;
    font-size: .9rem;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 6px 18px rgb(0 0 0 / .2);
    flex: 0 1 auto;
    white-space: nowrap;
    max-width: 150px;
    text-align: center
}

.cta-primary-new {
    background: #fff;
    color: var(--primary)
}

.cta-primary-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgb(255 255 255 / .4)
}

.cta-secondary-new {
    background: #fff0;
    color: #fff;
    border: 2px solid #fff
}

.cta-secondary-new:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-5px)
}

@media (max-width:768px) {
    .cta-wrapper-new {
        flex-direction: column;
        text-align: center
    }

    .cta-buttons-new {
        justify-content: center
    }
}

.reviews {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 3rem 1.5rem;
    border-radius: 15px;
    max-width: 1200px;
    margin: 2rem auto;
    box-shadow: 0 10px 25px rgb(0 0 0 / .25)
}

.reviews .section-title,
.reviews .section-subtitle {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: .5rem
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem
}

.review-card {
    background: rgb(255 255 255 / .1);
    backdrop-filter: blur(6px);
    padding: 1.2rem;
    border-radius: 12px;
    border: 1px solid rgb(255 255 255 / .15);
    transition: transform 0.3s ease, background-color 0.3s ease;
    will-change: transform
}

.review-card:hover {
    background: rgb(255 255 255 / .18);
    transform: translateY(-3px)
}

.stars {
    font-size: 1rem;
    margin-bottom: .5rem
}

.review-text {
    font-style: italic;
    font-size: .85rem;
    margin-bottom: 1rem;
    line-height: 1.5
}

.reviewer {
    display: flex;
    align-items: center;
    gap: .8rem
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center
}

.reviewer-info h3 {
    font-size: .95rem;
    margin-bottom: .1rem
}

.reviewer-info p {
    font-size: .75rem;
    opacity: .9
}

.faqs {
    background: var(--gray);
    padding: 2rem 1rem;
    border-radius: 15px;
    max-width: 1200px;
    margin: 2rem auto
}

.faq-container {
    max-width: 700px;
    margin: 1.5rem auto 0
}

.faq-item {
    background: #fff;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgb(0 0 0 / .06)
}

.faq-question {
    padding: 1rem 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: .95rem;
    color: var(--dark);
    transition: background-color 0.3s ease;
    border-left: 3px solid var(--primary)
}

.faq-item:nth-child(even) .faq-question {
    border-left-color: var(--secondary)
}

.faq-question:hover {
    background: #f4f4f4
}

.faq-toggle {
    font-size: 1.2rem;
    transition: transform 0.3s;
    color: var(--primary)
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease
}

.faq-answer-content {
    padding: 0 1.2rem 1.2rem 1.2rem;
    color: #666;
    font-size: .9rem;
    line-height: 1.5
}

.faq-item.active .faq-answer {
    max-height: 200px
}

.contact {
    background: #fff;
    padding: 2rem 1rem
}

.contact .container {
    max-width: 100%;
    padding: 0 1rem
}

.location-tabs {
    display: flex;
    gap: 1rem;
    margin: 2rem auto 1.5rem;
    max-width: 1400px;
    justify-content: center;
    flex-wrap: wrap
}

.location-tab {
    padding: .8rem 1.5rem;
    border: 2px solid var(--primary);
    background: #fff;
    color: var(--primary);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 44px
}

.location-tab:hover {
    background: rgb(255 94 20 / .1);
    transform: translateY(-2px)
}

.location-tab.active {
    background: var(--primary);
    color: #fff
}

.location-content {
    display: none;
    animation: fadeIn 0.4s ease
}

.location-content.active {
    display: block
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    align-items: start
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.contact-item {
    display: flex;
    gap: .8rem;
    align-items: flex-start
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    will-change: transform
}

.contact-item:nth-child(even) .contact-icon {
    background: var(--secondary)
}

.contact-item:hover .contact-icon {
    transform: scale(1.1)
}

.contact-details h3 {
    font-size: 1rem;
    margin-bottom: .2rem;
    color: var(--dark)
}

.contact-details p {
    color: #666;
    line-height: 1.4;
    font-size: .9rem
}

.contact-details a {
    color: var(--primary);
    text-decoration: underline;
    font-size: .9rem;
    padding: 14px 10px;
    display: inline-block;
    min-height: 44px;
    min-width: 44px;
    line-height: 44px
}

.contact-details a:hover {
    text-decoration: underline;
    opacity: .8
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgb(0 0 0 / .08);
    height: 100%;
    min-height: 400px;
    width: 100%
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
    padding: 0;
    min-height: 44px;
    min-width: 44px
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px)
}

@media (max-width:968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .location-tabs {
        flex-direction: column;
        gap: .8rem
    }

    .location-tab {
        width: 100%;
        max-width: 400px;
        margin: 0 auto
    }
}

@media (max-width:480px) {
    .contact {
        padding: 1.5rem .5rem
    }

    .contact-item {
        flex-direction: column;
        gap: .5rem
    }

    .map-container {
        min-height: 300px
    }
}

footer {
    background: var(--dark);
    color: #fff;
    padding: 4rem 2rem 0
}

footer .logo {
    color: #fff
}

footer .logo span {
    color: #fff
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding-bottom: 3rem
}

.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #fff
}

.footer-section p,
.footer-section a {
    color: #e0e0e0;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: .5rem
}

.footer-section a:hover {
    color: #fff;
    text-decoration: underline
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem
}

.social-links a {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: #fff;
    will-change: transform
}

.social-links a:nth-child(even) {
    background: var(--secondary)
}

.social-links a svg {
    fill: #fff;
    width: 20px;
    height: 20px
}

.social-links a:hover {
    transform: translateY(-5px)
}

.footer-bottom {
    border-top: 1px solid rgb(255 255 255 / .1);
    padding: 2rem 0;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.footer-bottom p {
    color: #e0e0e0
}

.designer {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #e0e0e0
}

.designer a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    position: relative
}

.designer a:hover {
    text-decoration: underline
}

.yp-logo {
    width: 30px;
    height: 30px;
    background: var(--secondary);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem
}

@media (max-width:768px) {
    nav {
        backdrop-filter: none;
        background: rgb(255 255 255 / .98)
    }

    .hamburger {
        display: flex
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: #fff;
        flex-direction: column;
        padding: .8rem 2rem;
        gap: .5rem;
        transition: right 0.3s;
        box-shadow: -5px 0 20px rgb(0 0 0 / .3);
        z-index: 1000;
        align-items: center;
        justify-content: flex-start;
        overflow-y: auto
    }

    .nav-links a {
        color: var(--dark) !important;
        padding: .6rem 1rem;
        text-align: center;
        width: 100%
    }

    .nav-links li {
        width: 100%;
        text-align: center
    }

    .nav-links.active {
        right: 0
    }

    .nav-links .nav-cta-btn,
    a.nav-cta-btn {
        width: 100%;
        text-align: center;
        background: #7a1815 !important;
        color: #ffffff !important;
        border: 2px solid #7a1815 !important
    }

    .hero {
        padding: 0 1.5rem
    }

    .hero-content {
        max-width: 100%;
        padding: 1.5rem;
        text-align: center
    }

    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.3
    }

    .hero p {
        font-size: .9rem;
        margin-bottom: 1.5rem
    }

    .cta-btn {
        display: block;
        margin: 0 auto;
        max-width: 250px;
        text-align: center
    }

    .section-title {
        font-size: 2rem;
        text-align: center
    }

    .section-subtitle {
        text-align: center
    }

    .about-content {
        flex-direction: column;
        text-align: center
    }

    .about-image {
        order: -1
    }

    .about-text {
        text-align: center
    }

    .about-text h2 {
        font-size: 2rem;
        text-align: center
    }

    .about-text p {
        font-size: 1rem;
        text-align: center
    }

    .about-image {
        display: flex;
        justify-content: center
    }

    .about-image img {
        margin: 0 auto
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .mission-card,
    .vision-card {
        padding: 3rem 2rem
    }

    .contact .container {
        padding: 0 1rem
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .contact-info {
        text-align: center;
        align-items: center
    }

    .contact-item {
        justify-content: center;
        flex-direction: column;
        text-align: center;
        align-items: center
    }

    .contact-details {
        text-align: center
    }

    .social-links {
        justify-content: center
    }

    .map-container {
        margin: 0 auto;
        width: 100%;
        height: 300px
    }

    .footer-content {
        text-align: center
    }

    .footer-section {
        display: flex;
        flex-direction: column;
        align-items: center
    }

    .footer-section h3 {
        text-align: center;
        color: #fff
    }

    .footer-section p {
        text-align: center
    }

    .footer-section a {
        text-align: center
    }

    .footer-links {
        justify-content: center
    }

    .logo {
        color: white !important
    }

    .logo span {
        color: white !important
    }

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

    .designer {
        justify-content: center
    }

    .social-links {
        justify-content: center
    }

    .product-grid,
    .services-grid,
    .why-grid,
    .reviews-grid {
        grid-template-columns: 1fr
    }
}