/* Logisko-inspired Design System */
:root {
    --logisko-red: #DF1119;
    --logisko-blue: #04223E;
    --logisko-dark: #111111;
    --logisko-light: #F4F7FA;
    --logisko-text: #666666;

    /* Override theme defaults */
    --primary-color: var(--logisko-red);
    --secondary-color: var(--logisko-blue);
    --font-heading: 'DM Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--logisko-text);
    background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--logisko-dark);
    font-weight: 700;
}

/* Red Button Style */
.btn-logisko {
    background-color: var(--logisko-red);
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.btn-logisko:hover {
    background-color: var(--logisko-blue);
    color: #fff;
    transform: translateY(-2px);
}

/* Service Card Style */
.logisko-service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border-bottom: 3px solid transparent;
}

.logisko-service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--logisko-red);
}

.logisko-service-card .card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.logisko-service-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.logisko-service-card:hover .card-image img {
    transform: scale(1.1);
}

.logisko-service-card .card-icon {
    position: absolute;
    bottom: -25px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--logisko-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    z-index: 2;
}

.logisko-service-card .card-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.logisko-service-card .card-content {
    padding: 40px 30px 30px;
}

/* Hero Section Style - Logisko Advanced */
.logisko-hero {
    position: relative;
    background-color: var(--logisko-blue);
    color: #fff;
    overflow: hidden;
    min-height: 700px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 700px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    display: flex;
    align-items: center;
    padding: 180px 0 180px;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(4, 34, 62, 0.95) 0%, rgba(223, 17, 25, 0.3) 100%);
    z-index: 1;
}

/* World map pattern overlay */
/* World map pattern overlay */
.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/world-map-pattern.png');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 2;
}

.hero-slide .container,
.logisko-hero .container {
    position: relative;
    z-index: 3;
}

.hero-subtitle,
.hero-subtitle-top {
    color: #fff;
    background: var(--logisko-red);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    border: 2px solid var(--logisko-red);
    box-shadow: 0 4px 15px rgba(223, 17, 25, 0.4);
    animation: fadeInDown 0.8s ease-out;
}

.logisko-hero h1,
.logisko-hero .hero-title {
    color: #fff;
    font-size: 64px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1s ease-out;
}

.logisko-hero .hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 600px;
    color: #fff;
    opacity: 1;
    background: rgba(0, 0, 0, 0.4);
    padding: 15px 20px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1.2s ease-out;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease-out;
}

.btn-logisko-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.btn-logisko-outline:hover {
    background: #fff;
    color: var(--logisko-blue);
    transform: translateY(-2px);
}

/* Feature Boxes Below Hero */
.hero-features {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 90%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.hero-feature-item {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-height: 90px;
}

.hero-feature-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.hero-feature-item i {
    width: 50px;
    height: 50px;
    background: var(--logisko-red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    color: #fff;
}

.hero-feature-item svg {
    min-width: 50px;
    max-width: 50px;
    min-height: 50px;
    max-height: 50px;
    background: var(--logisko-red);
    border-radius: 8px;
    padding: 13px;
    flex-shrink: 0;
    color: #fff;
    fill: currentColor;
}

.hero-feature-item span {
    color: var(--logisko-dark);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    flex: 1;
}

/* Legacy support for old class names */
.hero-feature-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-feature-box:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-5px);
}

.hero-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--logisko-red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.hero-feature-content h4 {
    color: var(--logisko-dark);
    font-size: 16px;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.hero-feature-content p {
    color: var(--logisko-text);
    font-size: 13px;
    margin: 0;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats Counter Area */
.logisko-stats-wrapper {
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.stat-item-premium {
    text-align: center;
}

.stat-item-premium .count {
    font-size: 40px;
    font-weight: 800;
    color: var(--logisko-blue);
    display: block;
}

.stat-item-premium .label {
    color: var(--logisko-red);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logisko-hero {
        padding: 120px 0 80px;
        min-height: 500px;
        background-attachment: scroll;
        /* Disable parallax on mobile */
    }

    .logisko-hero h1,
    .logisko-hero .hero-title {
        font-size: 2rem !important;
    }

    .hero-subtitle,
    .hero-subtitle-top {
        font-size: 11px;
        padding: 6px 15px;
    }

    .logisko-hero .hero-description {
        font-size: 15px;
    }

    .hero-features {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .hero-feature-box {
        padding: 20px;
    }

    .logisko-stats-wrapper {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }

    .stat-item-premium {
        border: none !important;
        padding: 0 !important;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .logisko-service-card .card-image {
        height: 180px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1.5rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Slider Controls */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100 !important;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--logisko-red);
    border-color: var(--logisko-red);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100 !important;
    display: flex !important;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--logisko-red);
    border-color: var(--logisko-red);
    width: 30px;
    border-radius: 6px;
}

/* Hero Content Styles */
.hero-content {
    position: relative;
    z-index: 3;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

@media (max-width: 768px) {

    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-prev {
        left: 15px;
    }

    .slider-next {
        right: 15px;
    }

    .slider-dots {
        bottom: 20px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .slider-dot.active {
        width: 24px;
    }

    .hero-slide {
        min-height: 600px;
        padding: 120px 0 140px;
    }

    .hero-slider {
        min-height: 600px;
    }

    .logisko-hero {
        min-height: 600px;
    }
}

/* Section Headers */
.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--logisko-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    color: var(--logisko-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-title span {
    color: var(--logisko-red);
}

.section-description {
    font-size: 16px;
    color: var(--logisko-text);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* About Section */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--logisko-red);
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(223, 17, 25, 0.4);
}

.experience-badge .number {
    font-size: 48px;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-top: 10px;
}

.about-content {
    padding-left: 20px;
}

.about-features {
    margin: 30px 0;
    display: grid;
    gap: 20px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-feature i {
    color: var(--logisko-red);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 5px;
}

.about-feature svg {
    color: var(--logisko-red);
    fill: currentColor;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 5px;
}

.about-feature h4 {
    font-size: 18px;
    margin: 0 0 5px 0;
    color: var(--logisko-dark);
}

.about-feature p {
    margin: 0;
    color: var(--logisko-text);
    font-size: 14px;
}

/* Why Choose Section */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.why-choose-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.why-choose-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--logisko-red) 0%, #ff3344 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.why-choose-item:hover .icon-box {
    transform: rotateY(360deg);
}

.icon-box i {
    font-size: 36px;
    color: #fff;
}

.why-choose-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--logisko-dark);
}

.why-choose-item p {
    color: var(--logisko-text);
    font-size: 14px;
    line-height: 1.7;
}

/* Modern Block Cards - New Design */
.modern-blocks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.modern-block-card {
    background: #ffffff;
    padding: 45px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.modern-block-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--logisko-red) 0%, #ff4444 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.modern-block-card:hover::before {
    transform: scaleX(1);
}

.modern-block-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.modern-icon-circle {
    width: 70px;
    height: 70px;
    background: var(--logisko-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.modern-block-card:hover .modern-icon-circle {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(223, 17, 25, 0.3);
}

.modern-icon-circle i {
    font-size: 28px;
    color: #ffffff;
}

.modern-icon-circle svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
    fill: currentColor;
}

.modern-block-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
    letter-spacing: -0.3px;
}

.modern-block-card p {
    color: #666666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--logisko-red);
    box-shadow: 0 0 0 3px rgba(223, 17, 25, 0.1);
}

.contact-info-area {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.contact-info-item .icon {
    width: 60px;
    height: 60px;
    background: var(--logisko-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item .icon i {
    font-size: 24px;
    color: #fff;
}

.contact-info-item .icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
    fill: currentColor;
}

.contact-info-item h4 {
    font-size: 16px;
    margin: 0 0 5px 0;
    color: var(--logisko-dark);
}

.contact-info-item p {
    margin: 0;
    color: var(--logisko-text);
    font-size: 14px;
}

.contact-info-item a {
    color: var(--logisko-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--logisko-red);
}

/* Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item-premium {
    animation: countUp 0.6s ease-out;
}

/* Responsive Design for New Sections */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .modern-blocks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hero-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 0 15px;
    }

    .hero-feature-item {
        padding: 15px;
    }

    .hero-feature-item i {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .hero-feature-item span {
        font-size: 13px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {

    .services-grid,
    .why-choose-grid,
    .modern-blocks-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }

    .about-content {
        padding-left: 0;
    }

    .experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 20px;
    }

    .experience-badge .number {
        font-size: 36px;
    }

    .hero-features {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        grid-template-columns: 1fr;
        margin-top: 30px;
        padding: 0 20px;
        gap: 15px;
    }

    .hero-feature-item {
        padding: 20px;
        justify-content: center;
    }

    .hero-feature-item i {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }

    .hero-feature-item span {
        font-size: 14px;
        text-align: center;
    }

    .modern-block-card {
        padding: 35px 25px;
    }

    .modern-icon-circle {
        width: 60px;
        height: 60px;
    }

    .modern-icon-circle i {
        font-size: 24px;
    }

    .modern-block-card h3 {
        font-size: 18px;
    }
}