/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Logo and Slogan Container - Updated */
.logo-slogan-container {
    width: 100%;
    height: 350px;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 42, 58, 0.15);
}

/* Slogan above the image */
.slogan-above {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(11, 42, 58, 0.95) 0%, rgba(11, 42, 58, 0.7) 50%, transparent 100%);
    padding: 20px 20px 40px;
    color: white;
    text-align: center;
    z-index: 2;
}

.slogan-above-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 15px;
}

.slogan-above-line {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slogan-above-line-1 {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.slogan-above-line-2 {
    font-size: 32px;
    color: var(--accent-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slogan-above-line-3 {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

/* Logo image wrapper */
.logo-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8fafc;
    padding-top: 60px; /* Добавляем отступ сверху для слогана */
    padding-bottom: 80px; /* Добавляем отступ снизу для нижнего слогана */
}

.company-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    padding: 0 20px;
}

/* Slogan overlay at bottom */
.slogan-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(11, 42, 58, 0.95) 0%, rgba(11, 42, 58, 0.7) 50%, transparent 100%);
    padding: 20px 20px 20px;
    color: white;
    text-align: center;
    z-index: 2;
}

.slogan-overlay-content {
    margin-bottom: 10px;
}

.slogan-line-4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slogan-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
    margin: 10px auto 15px;
}

.slogan-tagline {
    font-size: 14px;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

/* Hover effects */
.logo-slogan-container:hover .slogan-above-line-2 {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

.logo-slogan-container:hover .slogan-line-4 {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .slogan-above-line-2,
    .slogan-line-4 {
        font-size: 28px;
    }
    
    .slogan-above-line-1,
    .slogan-above-line-3 {
        font-size: 18px;
    }
    
    .slogan-above {
        padding: 15px 15px 35px;
    }
    
    .slogan-overlay {
        padding: 15px 15px 15px;
    }
    
    .logo-image-wrapper {
        padding-top: 50px;
        padding-bottom: 70px;
    }
}

@media (max-width: 768px) {
    .logo-slogan-container {
        height: 300px;
    }
    
    .slogan-above-content {
        gap: 5px 10px;
    }
    
    .slogan-above-line-2,
    .slogan-line-4 {
        font-size: 24px;
    }
    
    .slogan-above-line-1,
    .slogan-above-line-3 {
        font-size: 16px;
    }
    
    .slogan-tagline {
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .logo-image-wrapper {
        padding-top: 45px;
        padding-bottom: 65px;
    }
}

@media (max-width: 576px) {
    .logo-slogan-container {
        height: 280px;
    }
    
    .slogan-above-content {
        flex-direction: column;
        gap: 5px;
    }
    
    .slogan-above-line-2,
    .slogan-line-4 {
        font-size: 22px;
    }
    
    .slogan-above-line-1,
    .slogan-above-line-3 {
        font-size: 14px;
    }
    
    .slogan-above {
        padding: 10px 10px 30px;
    }
    
    .slogan-overlay {
        padding: 10px 10px 10px;
    }
    
    .logo-image-wrapper {
        padding-top: 40px;
        padding-bottom: 60px;
    }
}
:root {
    --primary-color: #0b2a3a;
    --secondary-color: #1a4a5f;
    --accent-color: #3a7ca5;
    --light-color: #f4f6f8;
    --text-color: #0b2a3a;
    --text-light: #6c8a9c;
    --white: #ffffff;
    --gray: #e9ecef;
    --success-color: #2a9d8f;
    --warning-color: #e9c46a;
    --danger-color: #e76f51;
    --shadow: 0 4px 12px rgba(11, 42, 58, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.divider {
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 0 auto 30px;
    border-radius: 2px;
}

.gray {
    background-color: var(--light-color);
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Header & Navigation */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo-container {
    display: flex;
    align-items: center;
}

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

.logo h1 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.logo-subtitle {
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: -3px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(11, 42, 58, 0.9), rgba(11, 42, 58, 0.95)), url('https://media.istockphoto.com/id/1279313029/tr/foto%C4%9Fraf/a%C4%9F%C4%B1r-y%C3%BCkl%C3%BC-bir-konteyner-kargo-gemisinin-havadan-g%C3%B6r%C3%BCn%C3%BCm%C3%BC.jpg?s=1024x1024&w=is&k=20&c=mRy2kSIEFUW-Q-aOpHG0tPwNUGYhQsbypCYW5vOZ6Jk=');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.logo-hero {
    margin-bottom: 30px;
}

.logo-hero h1 {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 5px;
}

.logo-subtitle-hero {
    font-size: 16px;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.9;
}

.hero-title {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--white);
}

.hero-description {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.7;
}

.stats-container {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    flex-wrap: wrap;
    gap: 40px;
}

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

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.stat-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    opacity: 0.9;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
}

.mission-box {
    background-color: var(--light-color);
    border-left: 4px solid var(--accent-color);
    padding: 25px;
    margin-top: 30px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.mission-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mission-box i {
    color: var(--accent-color);
}

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

.image-placeholder {
    width: 100%;
    height: 350px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--accent-color);
    border: 2px dashed var(--accent-color);
}

.image-placeholder i {
    font-size: 80px;
    margin-bottom: 20px;
}

.image-placeholder p {
    font-weight: 600;
    font-size: 18px;
    color: var(--primary-color);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(11, 42, 58, 0.15);
}

.service-icon {
    background-color: var(--light-color);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--accent-color);
    font-size: 28px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
}

.service-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.warning-box {
    background-color: rgba(233, 196, 106, 0.2);
    border: 1px solid var(--warning-color);
    border-radius: var(--border-radius);
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.warning-box i {
    color: var(--warning-color);
    font-size: 24px;
    margin-top: 5px;
}

.warning-box p {
    margin: 0;
    font-size: 16px;
}

/* Scenarios Section */
.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.scenario-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-top: 3px solid transparent;
}

.scenario-item:hover {
    border-top-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.scenario-item i {
    font-size: 36px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.scenario-item h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.scenario-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-box {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-box .btn-secondary {
    color: var(--white);
    border-color: var(--white);
}

.cta-box .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Process Section */
.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.step:not(:last-child):after {
    content: '';
    position: absolute;
    left: 35px;
    top: 80px;
    bottom: -40px;
    width: 2px;
    background-color: var(--accent-color);
    opacity: 0.3;
}

.step-number {
    background-color: var(--accent-color);
    color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 30px;
    z-index: 1;
}

.step-content {
    padding-top: 10px;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-details h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-details i {
    color: var(--accent-color);
}

.contact-details p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.client-types {
    margin-top: 40px;
}

.client-types h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.client-types ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.client-types li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
}

.client-types li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 20px;
}

.ethics-statement {
    margin-top: 40px;
    background-color: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
}

.ethics-statement h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d1d9e0;
    border-radius: var(--border-radius);
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(58, 124, 165, 0.2);
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox input {
    width: auto;
    margin-top: 5px;
}

.checkbox label {
    font-weight: normal;
    font-size: 14px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo h3 {
    font-size: 26px;
    margin-bottom: 5px;
    color: var(--white);
}

.footer-tagline {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
}

.footer-links h4, .footer-services h4, .footer-contact h4 {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links ul, .footer-services ul {
    list-style: none;
    padding-left: 0;
}

.footer-links li, .footer-services li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-services li {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-legal {
    margin-top: 30px;
    font-size: 13px;
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .section-title {
        font-size: 32px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .logo-hero h1 {
        font-size: 42px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .scenarios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step {
        flex-direction: column;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .step:not(:last-child):after {
        left: 35px;
        top: 70px;
        bottom: -20px;
        height: 40px;
        width: 2px;
    }
    
    .client-types ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .logo h1 {
        font-size: 22px;
    }
    
    .logo-hero h1 {
        font-size: 36px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .services-grid, .scenarios-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact p, .contact-details p {
        justify-content: center;
    }
}