:root {
    --primary-color: #0360bd;
    --secondary-color: #001f3e;
    --accent-color: #00d2ff;
    --text-color: #333;
    --bg-color: #f8f9fa;
    --white: #ffffff;
    --black: #141414;
    --header-bg: #ffffff;
    --footer-bg: #001f3e;
    --footer-text: #ecf0f1;
    --font-main: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --spacing-unit: 1rem;
    --container-width: 1280px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 90px; /* Компенсация фиксированного хедера */
    width: 100%;
    overflow-wrap: break-word; /* Prevent long words from overflowing */
    /* overflow-x: hidden; Removed to restore sticky positioning */
}

html {
    max-width: 100%;
    /* overflow-x: hidden; Removed to restore sticky positioning */
}

/* Header & Navigation */
header {
    background-color: #ffffffd4 !important;
    position: fixed; /* РР·РјРµРЅРµРЅРѕ СЃ sticky РЅР° fixed */
    left: 0;
    right: 0;
    width: auto; /* Use auto width with left/right 0 to avoid overflow */
    top: 0;
    z-index: 1000;
    height: 90px;
    display: flex;
    align-items: center;
    padding: 0 var(--spacing-unit);
    transition: transform 0.3s ease-in-out; /* РџР»Р°РІРЅРѕРµ СЃРєСЂС‹С‚РёРµ */
}

header.header-hidden {
    transform: translateY(-100%); /* РЎРґРІРёРі РІРІРµСЂС… Р·Р° РїСЂРµРґРµР»С‹ СЌРєСЂР°РЅР° */
}

nav {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative; /* Add positioning context for absolute children */
}

/* Logo Styles */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
}

.logo-icon {
    background-color: transparent;
    color: var(--white);
    padding: 0;
    margin-right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg,
.logo-icon img {
    height: 50px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white); /* White text for dark header */
    display: inline-flex;
    flex-direction: row;
    align-items: baseline;
    gap: 0.35rem;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: -0.5px;
}

.logo-text-red {
    color: #bc2b2a;
}

.logo-text-blue {
    color: #0a4fac;
}

.logo-text-limited {
    color: rgb(74 74 74);
    font-weight: 600;
}
.logo-text-limited-22 {
    color: rgb(255, 255, 255);
    font-weight: 600;
}

.logo-text-red-2 {
    color: #bc2b2a;
    font-size: 6rem;
    font-weight: 700;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.25), 0 10px 22px rgba(0, 0, 0, 0.25);
}

.logo-text-blue-2 {
    color: #0a4fac;
    font-size: 6rem;
    font-weight: 700;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.25), 0 10px 22px rgba(0, 0, 0, 0.25);
}
.logo-text-limited-2 {
    color: rgb(74 74 74);
    font-weight: 600;
    font-size: 4rem;
}

/* Nav Links Container */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    padding: 0.5rem 0.5rem;
    transition: color 0.3s ease;
    border-radius: 4px;
    white-space: nowrap;
}

.nav-links a:hover, .nav-links a.active {
    color: #0a4fac; /* Light steel blue (darker than white) */
    background-color: transparent;
}

/* Main Content */
main#page-content {
    flex: 1;
    width: 100%;
    /* Reset default card styles to allow full width */
    max-width: 100%;
    margin: 0;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
}

/* Apply card style to all pages EXCEPT home, digitalservices, and commercialbrokerage */
main#page-content:not(.page-home):not(.page-digitalservices):not(.page-commercialbrokerage):not(.page-certification):not(.page-electronics):not(.page-logistics):not(.page-contacts) {
    max-width: var(--container-width);
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--white);
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    border-radius: 8px;
    width: calc(100% - 2rem); /* Отступы по краям на мобильных */
}

/* Fix for full-width pages horizontal scroll */
main.page-digitalservices,
main.page-commercialbrokerage,
main.page-certification,
main.page-electronics,
main.page-logistics {
    overflow-x: hidden;
    width: 100%;
}
/* Home Page Banner Styles */
.home-banner {
    width: 100%;
    background-color: #ffffff !important;
    padding: 4rem 0;
    display: flex;
    justify-content: center;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: var(--container-width);
    padding: 120px 1rem;
    flex-wrap: wrap;
    position: relative;
}

.banner-text {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 1;
}

.banner-text-2 {
    right: 1rem;
    bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.65rem;
    text-align: right;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: rgb(0 0 0 / 31%);
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.banner-text-2-logo {
    width: 210px;
    height: auto;
    display: block;
    object-fit: contain;
    align-self: center;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.banner-text-2 div {
    white-space: nowrap;
}

.banner-text h1 {
    font-size: 4rem; /* Немного увеличим для эффекта */
    -webkit-text-stroke: 0; /* Убираем обводку */
    margin-bottom: 1rem;
    line-height: 1.2;
}

.banner-text p {
    font-size: 1.25rem;
    color: #001f3e;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.5;
    opacity: 0.8;
}

.banner-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    min-width: 300px;
    position: relative;
    z-index: 1;
}

@media (max-width: 870px) {
    .banner-content {
        flex-direction: column;
        align-items: center;
    }

    .banner-text {
        min-width: 100%;
        text-align: center;
    }

    .banner-text-2 {
        position: static;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 1.5rem;
        align-items: center;
        text-align: center;
    }

    .banner-text-2-logo {
        margin-bottom: 1rem;
    }
}



.banner-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px; /* РћРіСЂР°РЅРёС‡РµРЅРёРµ РІС‹СЃРѕС‚С‹ */
    object-fit: contain;
}

.who-hero-section {
    width: 100%;
    background-color: #05070b;
    background-image: linear-gradient(90deg, rgba(5, 7, 11, 0.15) 0%, rgba(5, 7, 11, 0.75) 55%, rgba(5, 7, 11, 0.92) 100%), url("../images/baner-home-inovation.png");
    background-size: auto 110%;
    background-position: left bottom;
    background-repeat: no-repeat;
}

.who-hero-section__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 5rem 1.5rem;
    min-height: 680px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.who-hero-section__panel {
    width: min(720px, 100%);
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

.who-hero-section__item h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
}

.who-hero-section__item h2 {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 900;
    margin: 0 0 0.75rem 0;
}

.who-hero-section__item p {
    margin: 0;
    color: rgba(76, 199, 255, 0.95);
    font-size: 1rem;
    line-height: 1.5;
}

.who-hero-section__item--main p {
    color: rgba(76, 199, 255, 0.95);
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .who-hero-section__container {
        padding: 3rem 1rem;
        min-height: 420px;
    }

    .who-hero-section__panel {
        text-align: center;
        gap: 1.5rem;
    }

    .who-hero-section__item h3 {
        font-size: 1.5rem;
    }

    .who-hero-section__item h2 {
        font-size: 2rem;
    }
}

/* Director Message Section */
.director-message-section {
    width: 100%;
    background: linear-gradient(135deg, #041b38 0%, #0b60d3 100%);
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
}

.director-message-container {
    max-width: 1280px;
    width: 100%;
    text-align: center;
    position: relative;
    padding: 2rem;
    
}

.quote-icon {
    margin-bottom: 2rem;
}

.quote-icon svg path {
    fill: #0360bd;
}

.director-text {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--white);
    font-weight: 300;
    margin-bottom: 2rem;
    font-style: italic;
    opacity: 0.9;
}

.director-sign {
    text-align: right;
    font-size: 1.1rem;
    color: #0360bd;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Typography & Elements */
h1, h2, h3 {
    color: #0a4fac;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 0;
}

/* Who We Are Section */
.who-we-are-section {
    padding: 6rem 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.who-we-are-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.who-title {
    margin-bottom: 2.5rem;
    position: relative;
}

.who-title h2 {
    font-size: 3rem;
    color: #001f3e;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 1;
}

.who-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0360bd, #00d2ff);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.who-content {
    max-width: 1280px;
}

.who-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #475569;
    font-weight: 400;
}

/* Add subtle background decoration */
.who-we-are-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(3, 96, 189, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.who-we-are-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

/* Contact Section */
/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #041b38 0%, #0b60d3 100%);
    position: relative;
    overflow: hidden;
}

/* Add a subtle decorative element */
.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(3, 96, 189, 0.15) 0%, rgba(0, 31, 62, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Form wider */
    gap: 5rem;
    align-items: center;
}

/* Contact Form Card */
.contact-form-wrapper {
    background: #ffffff;
    padding: 3rem;
    border-radius: 5px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #0a4fac; /* Dark inside white card */
}

/* Info Section Title needs to be white */
.contact-info-wrapper .contact-title {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    color: #0f172a;
    background-color: #f8fafc;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-textarea {
    min-height: 160px;
    resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #0360bd;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(3, 96, 189, 0.1);
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #94a3b8;
}

.contact-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #001f3e 0%, #0360bd 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(3, 96, 189, 0.2);
    width: 100%; /* Full width button */
    margin-top: 1rem;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(3, 96, 189, 0.3);
}

.form-message {
    margin-top: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    width: 100%;
    min-height: 1.5em;
}

.form-message.success {
    color: #10b981;
}

.form-message.error {
    color: #ef4444;
}

/* Contact Info */
.contact-info-wrapper {
    padding-left: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgb(255, 255, 255);
    border-radius: 50px;
    color: #7dd3fc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-detail-item:hover .contact-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.61);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: #ffffff; /* White icons */
}

.contact-text p {
    color: #cbd5e1; /* Light gray text */
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0.25rem;
    font-weight: 400;
}

.contact-text p:first-child {
    color: #ffffff;
    font-weight: 600;
}

.contact-text a {
    color: #38bdf8; /* Light blue links */
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-text a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-info-wrapper {
        order: -1; /* Info first on mobile */
    }
    
    .contact-form-wrapper {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 5rem 0;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .contact-title {
        font-size: 2rem;
    }
    
    .contact-info-wrapper .contact-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 640px) {
    .contact-section {
        padding: 4rem 0;
    }
    
    .contact-container {
        padding: 0 1rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
        border-radius: 5px;
    }

    .contact-title {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .contact-info-wrapper .contact-title {
        text-align: center;
    }
    
    .contact-detail-item {
        gap: 1rem;
    }

    .contact-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0 0.5rem;
    }

    .contact-section {
        padding: 3rem 0;
    }

    .contact-detail-item {
        align-items: flex-start; 
    }

    .contact-icon {
        margin-top: 0.25rem;
    }

    .contact-text {
        word-break: break-word;
    }
}

/* Footer Styles */
.footer {
    background-color: #0b0f16;
    color: var(--footer-text);
    padding: 2rem 0;
    margin-top: auto;
    text-align: center;
}

footer .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

/* Buttons (if any) */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #0360bd 0%, #001f3e 100%);
    color: var(--white);
    padding: 1rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 20px rgba(3, 96, 189, 0.3);
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(3, 96, 189, 0.5);
    background: linear-gradient(135deg, #001f3e 0%, #0360bd 100%);
}

/* Responsive */
.burger-menu {
    display: none; /* Hide by default to prevent flash on desktop */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    flex-shrink: 0; /* Prevent shrinking on small screens */
}

@media (max-width: 1024px) {
    .burger-menu {
        display: flex;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%); /* Center vertically */
    }

    /* Ensure logo doesn't overlap the absolute positioned burger menu */
    .logo {
        max-width: calc(100% - 40px);
        z-index: 1002; /* Ensure logo is clickable */
    }
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background: #0a4fac;
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

/* Burger Animation */
.burger-menu.open span:nth-child(1) {
    transform: rotate(45deg);
}

.burger-menu.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px); /* Move left instead of right to prevent overflow */
}

.burger-menu.open span:nth-child(3) {
    transform: rotate(-45deg);
}

@media (max-width: 1024px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 90px; /* Header height */
        right: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: linear-gradient(180deg, #001f3f 0%, #003366 100%);
        transition: right 0.3s ease-in-out, visibility 0.3s ease-in-out;
        padding: 2rem;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
        align-items: center;
        overflow-y: auto;
        z-index: 1000; /* Behind burger (1001) */
        visibility: hidden; /* Hide from layout/scroll when closed */
    }

    .nav-links.active {
        right: 0;
        visibility: visible;
    }

    .nav-links a {
        font-size: 1.2rem;
        margin: 1rem 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 1rem;
        color: var(--white);
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    /* РћС‚РєР»СЋС‡Р°РµРј СЃС‚Р°СЂС‹Р№ СЃС‚РёР»СЊ РґР»СЏ РјРѕР±РёР»РєРё, РµСЃР»Рё РѕРЅ РјРµС€Р°РµС‚ */
    nav {
        flex-wrap: nowrap;
        padding: 0;
    }
}



/* Who We Are Section */
.who-we-are-section {
    width: 100%;
    background-color: #dbeafe; /* Light blue background */
    padding: 4rem 1rem;
    display: flex;
    justify-content: center;
}

.who-we-are-container {
    max-width: 1280px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.who-title {
    flex: 1;
    min-width: 300px;
}

.who-title h2 {
    font-size: 3.3rem;
    color: #0360bd;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.1;
}

.who-content {
    flex: 1.5;
    min-width: 300px;
    background-color: #bfdbfe;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 3rem;
    color: #334155;
    font-size: 1.25rem;
    line-height: 1.6;
    border-radius: 16px;
}


@media (max-width: 1024px) {
    .who-we-are-container {
        gap: 2rem;
        padding: 0 1rem;
    }

    .who-title h2 {
        font-size: 3rem;
    }

    .who-content {
        padding: 2.5rem;
    }
        .home-banner {
    padding: 0;
    }
}

@media (max-width: 768px) {
    .home-banner {
    padding: 0;
    }
    .who-we-are-section {
        padding: 3rem 1rem;
    }

    .who-we-are-container {
        flex-direction: column;
        gap: 2rem;
    }

    .who-title {
        min-width: auto;
        text-align: center;
    }

    .who-title h2 {
        font-size: 2.5rem;
        text-align: center;
    }

    .who-content {
        min-width: auto;
        padding: 2rem;
        font-size: 1.1rem;
        text-align: justify; /* Для лучшего вида текста */
    }
    .logo-text-red-2 {
    font-size: 4rem;
    }
    .logo-text-blue-2 {
    font-size: 4rem;
    }
    .logo-text-limited-2 {
    font-size: 3rem;
    }
    .banner-text-2 {
    font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .who-we-are-section {
        padding: 2rem 1rem;
    }

    .who-title h2 {
        font-size: 2rem;
    }

    .who-content {
        padding: 1.5rem;
        font-size: 1rem;
    }
    .home-banner {
    padding: 0;
    }
    .logo-text-red-2 {
    font-size: 4rem;
    }
    .logo-text-blue-2 {
    font-size: 4rem;
    }
    .logo-text-limited-2 {
    font-size: 3rem;
    }
    .banner-text-2 {
    font-size: 1.6rem;
    }

}

@media (max-width: 480px) {

    /* Reduce logo size on small screens to prevent pushing burger menu off-screen */
    .logo-text {
        font-size: 1.1rem; 
        max-width: 170px; /* РћРіСЂР°РЅРёС‡РёРІР°РµРј С€РёСЂРёРЅСѓ, С‡С‚РѕР±С‹ РЅРµ РІС‹С‚Р°Р»РєРёРІР°С‚СЊ Р±СѓСЂРіРµСЂ */
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .logo-suffix {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }
    
    .logo-icon svg,
    .logo-icon img {
        height: 36px;
        width: auto;
    }
}

/* Principles Section */
.principles-section {
    width: 100%;
    padding: 6rem 0;
    background-color: #fff;
}

.principles-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.principles-title {
    font-size: 3rem;
    color: #0360bd;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.principles-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0360bd, #00d2ff);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.principle-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 31, 62, 0.1);
}

.principle-card h3 {
    font-size: 1.25rem;
    color: #001f3e;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
}

.principle-card h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: #00d2ff;
    margin-top: 0.8rem;
    border-radius: 2px;
}

.principle-card p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    text-align: left;
    flex-grow: 1;
}

.principle-card.light-blue {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
}

.principle-card.dark-blue {
    background: linear-gradient(145deg, #f1f5f9 0%, #e2e8f0 100%);
}

.principle-card.image-card {
    padding: 0;
    overflow: hidden;
    height: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.principle-card.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    border-radius: 16px;
    transition: transform 0.5s ease;
}

.principle-card.image-card:hover img {
    transform: scale(1.05);
}

/* Responsive Principles */
@media (max-width: 1280px) {
    .principles-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 1024px) {
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .principles-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .principles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .principles-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .principle-card {
        padding: 2rem;
    }
    
    .principle-card.image-card {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .principles-section {
        padding: 3rem 1rem;
    }

    .principles-title {
        font-size: 2rem;
    }
    
    .principle-card {
        padding: 1.5rem;
    }

    .principle-card h3 {
        font-size: 1.1rem;
    }

    .principle-card p {
        font-size: 0.9rem;
    }
    
    .principle-card.image-card {
        min-height: 200px;
    }
}

.page-digitalservices .principles-section,
.page-commercialbrokerage .principles-section,
.page-certification .principles-section,
.page-electronics .principles-section,
.page-logistics .principles-section {
    background: #f8fafc;
}

.page-digitalservices .why-choose-us-grid,
.page-commercialbrokerage .why-choose-us-grid,
.page-certification .why-choose-us-grid,
.page-electronics .why-choose-us-grid,
.page-logistics .why-choose-us-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.page-digitalservices .why-card,
.page-commercialbrokerage .why-card,
.page-certification .why-card,
.page-electronics .why-card,
.page-logistics .why-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 24px rgba(0, 31, 62, 0.06);
    position: relative;
    overflow: hidden;
}

.page-digitalservices .why-card::before,
.page-commercialbrokerage .why-card::before,
.page-certification .why-card::before,
.page-electronics .why-card::before,
.page-logistics .why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #001f3e 0%, #0360bd 100%);
}

.page-digitalservices .why-card h3,
.page-commercialbrokerage .why-card h3,
.page-certification .why-card h3,
.page-electronics .why-card h3,
.page-logistics .why-card h3 {
    color: #001f3e;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.page-digitalservices .why-card p,
.page-commercialbrokerage .why-card p,
.page-certification .why-card p,
.page-electronics .why-card p,
.page-logistics .why-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.page-digitalservices .why-image-card,
.page-commercialbrokerage .why-image-card,
.page-certification .why-image-card,
.page-electronics .why-image-card,
.page-logistics .why-image-card {
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 24px rgba(0, 31, 62, 0.08);
}

.page-digitalservices .why-image-card img,
.page-commercialbrokerage .why-image-card img,
.page-certification .why-image-card img,
.page-electronics .why-image-card img,
.page-logistics .why-image-card img {
    border-radius: 0;
}

.page-digitalservices .principles-title.principles-title-alt,
.page-commercialbrokerage .principles-title.principles-title-alt,
.page-certification .principles-title.principles-title-alt,
.page-electronics .principles-title.principles-title-alt,
.page-logistics .principles-title.principles-title-alt {
    margin-top: 4rem;
    margin-bottom: 2rem;
    text-align: left;
}

.page-digitalservices .principles-title.principles-title-alt::after,
.page-commercialbrokerage .principles-title.principles-title-alt::after,
.page-certification .principles-title.principles-title-alt::after,
.page-electronics .principles-title.principles-title-alt::after,
.page-logistics .principles-title.principles-title-alt::after {
    margin: 1rem 0 0;
}

.page-digitalservices .principles-grid,
.page-commercialbrokerage .principles-grid,
.page-certification .principles-grid,
.page-electronics .principles-grid,
.page-logistics .principles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    counter-reset: digital-principles;
}

.page-digitalservices .principle-card,
.page-commercialbrokerage .principle-card,
.page-certification .principle-card,
.page-electronics .principle-card,
.page-logistics .principle-card {
    padding: 0;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 24px rgba(0, 31, 62, 0.06);
    position: relative;
    counter-increment: digital-principles;
}

.page-digitalservices .principle-card::before,
.page-commercialbrokerage .principle-card::before,
.page-certification .principle-card::before,
.page-electronics .principle-card::before,
.page-logistics .principle-card::before {
    content: counter(digital-principles, decimal-leading-zero);
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 2;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #001f3e;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
}

.page-digitalservices .principle-card h3,
.page-commercialbrokerage .principle-card h3,
.page-certification .principle-card h3,
.page-electronics .principle-card h3,
.page-logistics .principle-card h3 {
    margin: 0;
    padding: 1.75rem 2rem 2rem 2rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: #001f3e;
    line-height: 1.25;
}

.page-digitalservices .principle-card h3::after,
.page-commercialbrokerage .principle-card h3::after,
.page-certification .principle-card h3::after,
.page-electronics .principle-card h3::after,
.page-logistics .principle-card h3::after {
    display: none;
}

.page-digitalservices .principle-media,
.page-commercialbrokerage .principle-media,
.page-certification .principle-media,
.page-electronics .principle-media,
.page-logistics .principle-media {
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    margin: 0;
    position: relative;
}

.page-digitalservices .principle-media::after,
.page-commercialbrokerage .principle-media::after,
.page-certification .principle-media::after,
.page-electronics .principle-media::after,
.page-logistics .principle-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 31, 62, 0.35), rgba(0, 31, 62, 0) 55%);
    pointer-events: none;
}

.page-digitalservices .principle-media img,
.page-commercialbrokerage .principle-media img,
.page-certification .principle-media img,
.page-electronics .principle-media img,
.page-logistics .principle-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.page-digitalservices .principle-card:hover .principle-media img,
.page-commercialbrokerage .principle-card:hover .principle-media img,
.page-certification .principle-card:hover .principle-media img,
.page-electronics .principle-card:hover .principle-media img,
.page-logistics .principle-card:hover .principle-media img {
    transform: scale(1.03);
}

.page-digitalservices .and-more-section,
.page-commercialbrokerage .and-more-section,
.page-certification .and-more-section,
.page-electronics .and-more-section,
.page-logistics .and-more-section {
    margin-top: 4rem;
    text-align: left;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 31, 62, 0.06);
}

.page-digitalservices .and-more-section::before,
.page-commercialbrokerage .and-more-section::before,
.page-certification .and-more-section::before,
.page-electronics .and-more-section::before,
.page-logistics .and-more-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #001f3e 0%, #0360bd 100%);
}

.page-digitalservices .and-more-title,
.page-commercialbrokerage .and-more-title,
.page-certification .and-more-title,
.page-electronics .and-more-title,
.page-logistics .and-more-title {
    color: #0360bd;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
}

.page-digitalservices .and-more-text,
.page-commercialbrokerage .and-more-text,
.page-certification .and-more-text,
.page-electronics .and-more-text,
.page-logistics .and-more-text {
    max-width: 900px;
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1024px) {
    .page-digitalservices .why-choose-us-grid,
    .page-commercialbrokerage .why-choose-us-grid,
    .page-certification .why-choose-us-grid,
    .page-electronics .why-choose-us-grid,
    .page-logistics .why-choose-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-digitalservices .principles-grid,
    .page-commercialbrokerage .principles-grid,
    .page-certification .principles-grid,
    .page-electronics .principles-grid,
    .page-logistics .principles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .page-digitalservices .why-choose-us-grid,
    .page-commercialbrokerage .why-choose-us-grid,
    .page-certification .why-choose-us-grid,
    .page-electronics .why-choose-us-grid,
    .page-logistics .why-choose-us-grid {
        grid-template-columns: 1fr;
    }

    .page-digitalservices .and-more-section,
    .page-commercialbrokerage .and-more-section,
    .page-certification .and-more-section,
    .page-electronics .and-more-section,
    .page-logistics .and-more-section {
        padding: 2rem;
    }
}

/* Warranty Section */
.warranty-section {
    padding: 3rem 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.warranty-section--gallery {
    
    background: linear-gradient(135deg, #0b0f16 0%, #141b27 100%);
}

.who-split-section {
    padding: 6rem 0;
    background: #ffffff;
}

.who-split-section__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.who-split-section__media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    box-shadow: 0 16px 40px rgba(0, 31, 62, 0.14);
}

.who-split-section__content {
    text-align: center;
}

.who-split-section__content h2 {
    margin: 0 0 1.25rem 0;
    font-size: 3.2rem;
    font-weight: 700;
    color: #0a4fac;
}

.who-split-section__content p {
    margin: 0 auto;
    max-width: 720px;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #0f172a;
}

@media (max-width: 768px) {
    .who-split-section {
        padding: 4rem 0;
    }

    .who-split-section__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .who-split-section__content h2 {
        font-size: 2.4rem;
    }
}

.apart-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.apart-section__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.apart-section__title {
    font-size: 3rem;
    color: #0a4fac;
    font-weight: 700;
    margin: 0 0 3rem 0;
    text-align: center;
    position: relative;
}

.apart-section__title::after {
    content: '';
    display: block;
    width: 160px;
    height: 4px;
    background: linear-gradient(90deg, #0a4fac, #55aaff);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.apart-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.apart-item {
    background: #ffffff;
    border-radius: 5px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 24px rgba(0, 31, 62, 0.06);
    padding: 2rem;
}

.apart-item h3 {
    margin: 0 0 0.75rem 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: #001f3e;
}

.apart-item p {
    margin: 0;
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .apart-section {
        padding: 4rem 0;
    }

    .apart-section__title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .apart-grid {
        grid-template-columns: 1fr;
    }
}

.warranty-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    position: relative;
    gap: 4rem;
}

.warranty-section--gallery .warranty-container {
    display: block;
}

.warranty-section--gallery .warranty-title {
    font-size: 3rem;
    color: rgba(76, 199, 255, 0.95);
    font-weight: 700;
    margin: 0 0 4rem 0;
    text-align: center;
    position: relative;
}

.warranty-section--gallery .warranty-title::after {
    display: none;
}

.warranty-section--gallery .warranty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.warranty-section--gallery .warranty-section__text {
    margin: 2.5rem auto 0 auto;
    max-width: 1000px;
    text-align: center;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.35rem;
    line-height: 1.7;
}

.warranty-section--gallery .warranty-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    border: 0;
    box-shadow: none;
    transition: none;
}

.warranty-section--gallery .warranty-card:hover {
    transform: none;
    box-shadow: none;
}

.warranty-section--gallery .warranty-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    border-radius: 5px;
    box-shadow: 0 10px 24px rgba(0, 31, 62, 0.08);
}

.warranty-section--gallery .warranty-card__body {
    padding: 1rem 0 0 0;
    text-align: center;
}

.warranty-section--gallery .warranty-card__body h3 {
    margin: 0 0 0.75rem 0;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}

.warranty-section--gallery .warranty-card__body p {
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 420px;
}

.warranty-image {
    flex: 0 0 45%;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    transform: perspective(1000px) rotateY(5deg);
    transition: transform 0.5s ease;
}

.warranty-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.warranty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.warranty-image:hover img {
    transform: scale(1.05);
}

.warranty-content {
    flex: 1;
    position: relative;
    z-index: 1;
    padding: 2rem 0;
}

.warranty-content h3 {
    font-size: 2.5rem;
    color: #0360bd;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
}

.warranty-content h3::before {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0360bd, #00d2ff);
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.warranty-content p {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .warranty-section--gallery .warranty-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .warranty-section--gallery .warranty-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .warranty-section--gallery .warranty-card img {
        height: 140px;
    }

    .warranty-section--gallery .warranty-card__body {
        text-align: center;
        padding: 0.85rem 0 0 0;
    }

    .warranty-section--gallery .warranty-section__text {
        font-size: 1.05rem;
        margin-top: 1.75rem;
    }
}

@media (max-width: 520px) {
    .warranty-section--gallery .warranty-grid {
        grid-template-columns: 1fr;
    }
}

.page-digitalservices .warranty-section,
.page-commercialbrokerage .warranty-section,
.page-certification .warranty-section,
.page-electronics .warranty-section,
.page-logistics .warranty-section {
    background: #ffffff;
}

.page-digitalservices .warranty-section::before,
.page-commercialbrokerage .warranty-section::before,
.page-certification .warranty-section::before,
.page-electronics .warranty-section::before,
.page-logistics .warranty-section::before {
    display: none;
}

.page-digitalservices .warranty-container,
.page-commercialbrokerage .warranty-container,
.page-certification .warranty-container,
.page-electronics .warranty-container,
.page-logistics .warranty-container {
    z-index: 1;
}

.page-digitalservices .warranty-content,
.page-commercialbrokerage .warranty-content,
.page-certification .warranty-content,
.page-electronics .warranty-content,
.page-logistics .warranty-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.page-digitalservices .warranty-content p,
.page-commercialbrokerage .warranty-content p,
.page-certification .warranty-content p,
.page-electronics .warranty-content p,
.page-logistics .warranty-content p {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #0f172a;
    line-height: 1.4;
    box-shadow: 0 10px 24px rgba(0, 31, 62, 0.08);
}

.page-digitalservices .warranty-content p::before,
.page-commercialbrokerage .warranty-content p::before,
.page-certification .warranty-content p::before,
.page-electronics .warranty-content p::before,
.page-logistics .warranty-content p::before {
    content: '✓';
    width: 26px;
    height: 26px;
    margin-top: 0.15rem;
    flex-shrink: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #001f3e 0%, #0360bd 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    line-height: 1;
}

/* Responsive Warranty */
@media (max-width: 1280px) {
    .warranty-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 1024px) {
    .warranty-image {
        flex: 0 0 350px;
        height: 450px;
    }
    
    .warranty-content {
        padding: 3rem 3rem 3rem 5rem;
    }
}

@media (max-width: 768px) {
    .warranty-section {
        padding: 2rem 0;
    }

    .warranty-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .warranty-image {
        width: 100%;
        max-width: 400px;
        height: 300px;
        margin-bottom: -2rem; /* Overlap vertical */
        flex: none;
        margin-left: auto;
        margin-right: auto;
    }
    
    .warranty-content {
        margin-left: 0;
        padding: 4rem 2rem 2rem 2rem; /* Top padding for image overlap */
        border-radius: 8px;
        text-align: center;
        min-height: auto;
    }

    .warranty-content h3 {
        font-size: 1.5rem;
        text-align: center;
    }

    .warranty-content p {
        text-align: center;
        font-size: 1rem;
    }

    .page-digitalservices .warranty-content,
    .page-commercialbrokerage .warranty-content,
    .page-certification .warranty-content,
    .page-electronics .warranty-content,
    .page-logistics .warranty-content {
        padding: 0;
        text-align: left;
    }

    .page-digitalservices .warranty-content p,
    .page-commercialbrokerage .warranty-content p,
    .page-certification .warranty-content p,
    .page-electronics .warranty-content p,
    .page-logistics .warranty-content p {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .warranty-section {
        padding: 1rem 0;
    }

    .warranty-image {
        height: 250px;
        max-width: 100%;
        margin-bottom: -1.5rem;
    }
    
    .warranty-content {
        padding: 3rem 1.5rem 1.5rem 1.5rem;
    }
    
    .warranty-content h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .warranty-content p {
        font-size: 0.95rem;
    }
}

/* Advantages Section */
.advantages-section {
    padding: 3rem 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.advantages-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.advantages-title {
    font-size: 3rem;
    color: #0a4fac;
    font-weight: 700;
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
}

.advantages-title::after {
    content: '';
    display: block;
    width: 160px;
    height: 4px;
    background: linear-gradient(90deg, #0a4fac, #55aaff);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.advantages-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.advantage-item {
    text-align: center;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 31, 62, 0.1);
    border-color: rgba(3, 96, 189, 0.1);
}

.border-r {  
    border-radius: 999px;
}

.advantage-icon {
    width: 170px;
    height: 170px;
    margin-bottom: 1.5rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(3, 96, 189, 0.3);
    transition: transform 0.3s ease, border-radius 0.3s ease;
    transform: rotate(-5deg);
}

.advantage-item:hover .advantage-icon {
    transform: rotate(0deg) scale(1.1);
    border-radius: 50%;
    background: linear-gradient(135deg, #00d2ff 0%, #007bff 100%);
}

.advantage-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    transition: transform 0.3s ease;
}

.advantage-item:hover .advantage-icon svg {
    transform: scale(1.1);
}

.advantage-item h3 {
    color: #001f3e;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

.advantage-item p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.advantage-item p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 300px; /* Prevent text from getting too wide */
}

/* Responsive Advantages */

/* Laptop / Small Desktop */
@media (max-width: 1280px) {
   
    .advantage-item h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 1024px) {
    .advantages-grid--3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .advantage-icon {
    width: 150px;
    height: 150px;
    }
    .advantage-item {
    text-align: center;
    padding: 1rem;
    }
}
@media (max-width: 800px) {
    .advantages-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .advantage-icon {
    width: 150px;
    height: 150px;
    }
    .advantage-item {
    text-align: center;
    padding: 1rem;
    }
}
@media (max-width: 640px) {
    .advantages-grid--3 {
        grid-template-columns: 1fr;
    }
    .advantage-icon {
    width: 150px;
    height: 150px;
    }
    .advantage-item {
    text-align: center;
    padding: 1rem;
    }
    .advantages-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
}

/* Logistics Section */
.logistics-section {
    padding: 6rem 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.logistics-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-title {
    font-size: 3rem;
    color: #0360bd;
    font-weight: 700;
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0360bd, #00d2ff);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.logistics-wrapper {
    display: flex;
    gap: 4rem;
    align-items: stretch;
}

.logistics-image-col {
    flex: 0 0 40%;
    position: relative;
}

.logistics-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    height: 100%;
    min-height: 500px;
}

.logistics-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.logistics-image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,31,62,0.8), transparent);
}

.logistics-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.logistics-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.logistics-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,31,62,0.1);
    border-color: rgba(3,96,189,0.2);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

.card-icon.air { background: linear-gradient(135deg, #3b82f6, #0ea5e9); }
.card-icon.train { background: linear-gradient(135deg, #f59e0b, #d97706); }
.card-icon.sea { background: linear-gradient(135deg, #0360bd, #001f3e); }
.card-icon.warehouse { background: linear-gradient(135deg, #10b981, #059669); }

.logistics-card h3 {
    font-size: 1.25rem;
    color: #001f3e;
    margin: 0;
    font-weight: 700;
}

.card-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-row {
    display: flex;
    flex-direction: column;
    font-size: 0.95rem;
    line-height: 1.5;
}

.feature-label {
    font-weight: 700;
    color: #0360bd;
    margin-bottom: 0.25rem;
}

.feature-text {
    color: #475569;
}

@media (max-width: 1024px) {
    .logistics-wrapper {
        flex-direction: column;
    }
    
    .logistics-image-col {
        width: 100%;
        position: static;
        margin-bottom: 2rem;
    }
    
    .logistics-image-wrapper {
        height: 400px;
    }
}

@media (max-width: 640px) {
    .logistics-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .logistics-image-wrapper {
        height: 300px;
    }
}



/* Electronics Distribution Section */
.electronics-section {
    padding: 6rem 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.electronics-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.electronics-wrapper {
    display: flex;
    gap: 4rem;
    align-items: stretch;
}

.electronics-image-col {
    flex: 0 0 40%;
    position: relative;
}

.electronics-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    height: 100%;
    min-height: 500px;
}

.electronics-image-wrapper img.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.electronics-image-wrapper:hover img.main-img {
    transform: scale(1.05);
}

.electronics-image-wrapper .secondary-img {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 3px solid rgba(255,255,255,0.8);
    z-index: 2;
}

.electronics-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.electronics-intro-text {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.electronics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.electronics-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.electronics-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,31,62,0.1);
    border-color: rgba(3,96,189,0.2);
    background: #fff;
}

.elec-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
}

.elec-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.elec-card-icon svg {
    width: 22px;
    height: 22px;
}

.elec-card-icon.supply { background: linear-gradient(135deg, #3b82f6, #0ea5e9); }
.elec-card-icon.market { background: linear-gradient(135deg, #0360bd, #001f3e); }

.electronics-card h3 {
    font-size: 1.1rem;
    color: #001f3e;
    margin: 0;
    font-weight: 700;
}

.elec-feature-row {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.elec-feature-row:last-child {
    margin-bottom: 0;
}

.elec-feature-label {
    font-size: 0.85rem;
    color: #0360bd;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.elec-feature-text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .electronics-wrapper {
        flex-direction: column;
    }
    
    .electronics-image-col {
        width: 100%;
        height: auto;
        flex: none;
    }

    .electronics-image-wrapper {
        min-height: 400px;
    }
    
    .electronics-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .electronics-image-wrapper {
        min-height: 300px;
    }
}

/* Our Services Section */
.services-section {
    padding: 6rem 0;
    background-color: #f8fafc;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.services-stack {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-row {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: start;
    padding: 3rem;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,31,62,0.08);
}

.service-row-header {
    position: sticky;
    top: 100px;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #001f3e 0%, #0360bd 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(3,96,189,0.2);
    transition: transform 0.3s ease;
}

.service-row:hover .service-icon-large {
    transform: scale(1.05) rotate(5deg);
}

.service-icon-large svg {
    width: 40px;
    height: 40px;
}

.service-row-header h3 {
    font-size: 1.8rem;
    color: #001f3e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-row-header p {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.6;
}

.service-row-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-sub-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-sub-card:hover {
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: rgba(3,96,189,0.1);
    transform: translateY(-3px);
}

.sub-num {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0360bd;
    background: rgba(3,96,189,0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.service-sub-card h4 {
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-sub-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1024px) {
    .service-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .service-row-header {
        position: static;
        margin-bottom: 2rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .service-row-grid {
        grid-template-columns: 1fr;
    }
    
    .services-stack {
        gap: 2rem;
    }
    
    .service-row {
        padding: 1.5rem;
    }
}

/* Animation Utilities */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px); /* Changed to Y-axis to prevent horizontal overflow */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

@media (max-width: 768px) {
    .animate-on-scroll {
        transform: translateY(30px); /* Smaller shift on mobile */
    }
}

.animate-on-scroll.animate-up {
    transform: translateY(50px); /* Same as default now */
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.animate-up.visible {
    transform: translateY(0);
}

.animate-on-scroll.animate-right {
    transform: translateY(50px); /* Changed from translateX(50px) to prevent horizontal overflow */
}

.animate-on-scroll.animate-right.visible {
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {    .animate-on-scroll {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.why-choose-us-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.why-choose-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 2rem;
    align-items: stretch;
}

.why-card {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
}

.why-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.why-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.why-image-card {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.why-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.why-image-card:hover img {
    transform: scale(1.02);
}

@media (max-width: 992px) {
    .why-choose-us-grid {
        grid-template-columns: 1fr;
    }
    
    .why-image-card {
        order: -1; /* Image on top on mobile */
        margin-bottom: 2rem;
        min-height: 250px; /* Ensure visible height on mobile */
    }
}

/* New Why Choose Us Grid (Image Left + Text Right) */
.why-choose-us-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;
}

.why-item-2 {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.why-item-img {
    flex-shrink: 0;
    width: 310px;
    height: 260px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.why-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.why-item-2:hover .why-item-img img {
    transform: scale(1.05);
}

.why-item-text h3 {
    color: #3366cc; /* Blue color */
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .why-choose-us-grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-item-2 {
        flex-direction: column;
        text-align: center;
        background-color: #f8fafc;
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .why-item-img {
        width: 100%;
        height: 200px;
    }
    
    .why-item-text h3 {
        margin-top: 1rem;
    }
}
