/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Отключаем все синие линии и анимации */
*::before,
*::after {
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    border-bottom: none !important;
}

.service-card::before,
.service-card::after,
.advantage-item::before,
.advantage-item::after,
.stat-item::before,
.stat-item::after,
.widget-card::before,
.widget-card::after,
.info-item::before,
.info-item::after,
.contact-item::before,
.contact-item::after,
.project-card::before,
.project-card::after {
    display: none !important;
    border: none !important;
    background: none !important;
    transform: none !important;
    transition: none !important;
}

/* Отключаем все скроллбары на ПК версии */
@media (min-width: 769px) {
    * {
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
    
    *::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
    
    *::-webkit-scrollbar-track {
        display: none !important;
    }
    
    *::-webkit-scrollbar-thumb {
        display: none !important;
    }
    
    .services,
    .advantages,
    .contacts,
    .projects,
    .team,
    .about,
    .licenses,
    .trust {
        overflow: visible !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
    
    .services *,
    .advantages *,
    .contacts *,
    .projects *,
    .team *,
    .about *,
    .licenses *,
    .trust * {
        overflow: visible !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
}

/* Отключаем повторные анимации для карточек */
.service-card.animated,
.advantage-item.animated {
    animation: none !important;
    transition: none !important;
}

.service-card.animated:hover,
.advantage-item.animated:hover {
    animation: none !important;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background: #23558D;
    border-radius: 5px;
    padding: 0 2px;
}

::-webkit-scrollbar-track {
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    width: 100%;
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #22558c;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #22558c;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #22558c;
}

.title {
    font-weight: 600;
    font-size: 34px;
    line-height: 56px;
    color: #22558c;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 48px;
}

.btn-primary {
    background: linear-gradient(135deg, #23558D, #1a3f6b);
    color: white;
    box-shadow: 0 4px 15px rgba(35, 85, 141, 0.3);
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1a3f6b, #0f2a4a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(35, 85, 141, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #23558D, #1a3f6b);
    color: white;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(35, 85, 141, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #1a3f6b, #0f2a4a);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(35, 85, 141, 0.4);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    width: 270px;
    height: auto;
    margin-bottom: 30px;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #23558D;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(35, 85, 141, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.header-logo .logo {
    height: 97px;
    width: auto;
    transition: transform 0.3s ease;
}

.header-logo .logo:hover {
    transform: scale(1.05);
}

    .header-nav {
        display: flex;
        align-items: center;
    }
    


.nav-list {
    display: flex;
    list-style: none;
    gap: 16px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    transition: color 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: #23558D;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #23558D;
    transition: width 0.3s ease;
}

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

.nav-link.active {
    color: #23558D;
}

.nav-link.active::after {
    width: 100%;
}

.header-contacts {
    display: flex;
    align-items: center;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background: linear-gradient(135deg, #23558D, #1a3f6b);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(35, 85, 141, 0.3);
    border: 2px solid transparent;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #1a3f6b, #0f2a4a);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(35, 85, 141, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-icon {
    width: 20px;
    height: 20px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */


.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: url('../images/pexels-laura-tancredi-7078666.jpg') center/cover;
    background-size: cover;
    background-position: center;
    opacity: 0.9;
    filter: brightness(1.0) contrast(1.1) saturate(1.0);
    z-index: -2;
    transform: translateZ(0);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: linear-gradient(135deg, rgba(35, 85, 141, 0.2) 0%, rgba(26, 63, 107, 0.3) 100%), 
                linear-gradient(45deg, rgba(128, 128, 128, 0.05) 25%, transparent 25%, transparent 75%, rgba(128, 128, 128, 0.05) 75%),
                linear-gradient(45deg, rgba(128, 128, 128, 0.05) 25%, transparent 25%, transparent 75%, rgba(128, 128, 128, 0.05) 75%);
    background-size: 100% 100%, 20px 20px, 20px 20px;
    background-position: 0 0, 0 0, 10px 10px;
    z-index: -1;
    transform: translateZ(0);
    will-change: transform;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 180px 0 80px;
    min-height: 100vh;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-badge span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: none;
}

.hero-title-accent {
    background: linear-gradient(135deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtitle {
    font-size: clamp(1.3rem, 2.8vw, 2rem);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    margin-bottom: 25px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: none;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    line-height: 1.7;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: none;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-feature svg {
    width: 20px;
    height: 20px;
    color: #fff;
    flex-shrink: 0;
}

.hero-title-accent {
    background: linear-gradient(135deg, #0066cc, #0052a3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Белый цвет для "Специалист" на ПК версии */
@media (min-width: 769px) {
    .hero-title-accent {
        background: none !important;
        -webkit-background-clip: unset !important;
        -webkit-text-fill-color: unset !important;
        background-clip: unset !important;
        color: #ffffff !important;
        text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3) !important;
    }
}



.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-stats-classic {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8));
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(35, 85, 141, 0.08);
    border: 1px solid rgba(35, 85, 141, 0.08);
    backdrop-filter: blur(8px);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat-classic-item {
    text-align: center;
    position: relative;
}

.stat-classic-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, rgba(35, 85, 141, 0.2), transparent);
}

.stat-classic-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #23558D;
    line-height: 1;
    margin-bottom: 6px;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 1px 3px rgba(35, 85, 141, 0.08);
}

.stat-classic-text {
    font-size: 12px;
    font-weight: 500;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: 'Inter', sans-serif;
}

.hero-buttons .btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    min-width: 200px;
    flex: 1;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(35, 85, 141, 0.4);
}

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

.hero-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 
        0 25px 50px rgba(35, 85, 141, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 520px;
    min-width: 480px;
    width: 100%;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.hero-card:hover::before {
    left: 100%;
}

.hero-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 35px 70px rgba(35, 85, 141, 0.25),
        0 15px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    background: transparent;
    width: 100%;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    background: linear-gradient(135deg, rgba(35, 85, 141, 0.05), rgba(35, 85, 141, 0.02));
    padding: 25px 15px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(35, 85, 141, 0.1);
}

.stat-item::before {
    display: none;
}

.stat-item:hover::before {
    display: none;
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, rgba(35, 85, 141, 0.1), rgba(35, 85, 141, 0.05));
    box-shadow: 
        0 15px 30px rgba(35, 85, 141, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(35, 85, 141, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #23558D;
    line-height: 1;
    position: relative;
    z-index: 2;
}

.stat-digit {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #23558D, #4A90E2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    transition: all 0.3s ease;
}

.stat-number span {
    display: inline-block;
    vertical-align: top;
    color: #23558D !important;
    -webkit-text-fill-color: #23558D !important;
    background: none !important;
}

.stat-item:hover .stat-digit {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 4px rgba(35, 85, 141, 0.3));
}

.stat-description {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-top: 8px;
    text-align: center;
    line-height: 1.3;
}

/* Анимация появления */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.stat-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.stat-item:nth-child(1) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.4s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.6s;
}

.stat-digit {
    animation: pulse 2s ease-in-out infinite;
    animation-delay: 1s;
}

.stat-description {
    animation: none;
}

.stat-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #23558D, #1a3f6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-shadow: 0 4px 8px rgba(35, 85, 141, 0.1);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #fff;
}

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

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #23558D, #1a3f6b);
    color: white;
    text-align: center;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.page-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Director Section */
.director {
    padding: 100px 0;
    background: #fff;
}

.director-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

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

.director-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
}

.director-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.director-card:hover .director-img {
    transform: scale(1.02);
}

.director-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.director-header {
    margin-bottom: 20px;
}

.director-title {
    color: #22558c;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}

.director-company {
    color: #23558D;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0;
}

.director-message {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.director-greeting {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0;
}

.director-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.director-signature {
    margin-top: 20px;
    padding-top: 30px;
    border-top: 2px solid rgba(35, 85, 141, 0.1);
}

.signature-text {
    color: #666;
    font-size: 1rem;
    margin-bottom: 8px;
}

.signature-name {
    color: #22558c;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.signature-position {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Chief Engineer Section */
.chief-engineer {
    padding: 100px 0;
    background: #f8f9fa;
}

.chief-engineer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

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

.chief-engineer-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
}

.chief-engineer-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.chief-engineer-card:hover .chief-engineer-img {
    transform: scale(1.02);
}

.placeholder-image {
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    border: 2px dashed #23558D;
    color: #23558D;
    font-weight: 500;
    transition: all 0.3s ease;
}

.placeholder-image svg {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    opacity: 0.6;
}

.placeholder-image p {
    margin: 0;
    font-size: 16px;
    opacity: 0.8;
}

.placeholder-image:hover {
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    border-color: #1a4a7a;
    transform: scale(1.02);
}

.chief-engineer-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.chief-engineer-header {
    margin-bottom: 20px;
}

.chief-engineer-title {
    color: #22558c;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.2;
}

.chief-engineer-message {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chief-engineer-greeting {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0;
}

.chief-engineer-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.chief-engineer-signature {
    margin-top: 20px;
    padding-top: 30px;
    border-top: 2px solid rgba(35, 85, 141, 0.1);
}

/* Team Section */
.team {
    padding: 100px 0;
    background: #f8f9fa;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

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

.team-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    opacity: 0;
    transform: translateX(-30px);
}

.team-card.animate {
    animation: slideInLeft 0.5s ease forwards;
    animation-delay: 0.1s;
}

.team-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.team-card:hover .team-img {
    transform: scale(1.02);
}

.team-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-departments {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.department-card {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(35, 85, 141, 0.1);
}

.department-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.department-title {
    color: #23558D;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.department-description {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.team-note {
    background: linear-gradient(135deg, #23558D, #1a3f6b);
    color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(35, 85, 141, 0.2);
    opacity: 0;
    transform: translateY(30px);
}

.team-note.animate {
    animation: slideInUp 0.4s ease forwards;
    animation-delay: 0.55s;
}

.team-note p {
    color: white;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

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

.about-mission {
    background: linear-gradient(135deg, #0066cc, #0052a3);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-top: 30px;
    font-weight: 500;
}

.about-features {
    margin-top: 30px;
}

.about-features .feature-content {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(35, 85, 141, 0.1);
}

.about-features .feature-content:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.feature-content h4 {
    color: #23558D;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

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

.about-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

/* Widget Cards */
.widget-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    border: 2px solid rgba(35, 85, 141, 0.1);
    border-radius: 20px;
    padding: 30px 25px;
    margin-bottom: 25px;
    box-shadow: 
        0 15px 35px rgba(35, 85, 141, 0.1),
        0 8px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    transform: translateY(0);
}

.widget-card::before {
    display: none;
}

.widget-card::after {
    display: none;
}

.widget-card:hover::before {
    display: none;
}

.widget-card:hover::after {
    display: none;
}

.widget-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 25px 50px rgba(35, 85, 141, 0.2),
        0 15px 35px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(35, 85, 141, 0.3);
}

.widget-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(35, 85, 141, 0.12), rgba(35, 85, 141, 0.06));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(35, 85, 141, 0.15);
    position: relative;
    overflow: hidden;
}

.widget-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(35, 85, 141, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.widget-card:hover .widget-icon {
    transform: scale(1.15) rotate(8deg);
    background: linear-gradient(135deg, rgba(35, 85, 141, 0.2), rgba(35, 85, 141, 0.1));
    border-color: rgba(35, 85, 141, 0.3);
    box-shadow: 0 8px 25px rgba(35, 85, 141, 0.2);
}

.widget-card:hover .widget-icon::before {
    opacity: 1;
}

.widget-icon svg {
    width: 32px;
    height: 32px;
    color: #23558D;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.widget-card:hover .widget-icon svg {
    transform: scale(1.2);
    filter: drop-shadow(0 3px 6px rgba(35, 85, 141, 0.4));
    color: #1a3f6b;
}

.widget-content h4 {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, #23558D, #4A90E2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: all 0.4s ease;
    position: relative;
}

.widget-card:hover .widget-content h4 {
    transform: translateY(-3px);
    filter: drop-shadow(0 2px 4px rgba(35, 85, 141, 0.2));
}

.widget-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
    transition: all 0.4s ease;
    font-weight: 500;
}

.widget-card:hover .widget-content p {
    color: #333;
    transform: translateY(-2px);
}

/* Widget Grids */
.expertise-widgets,
.coordination-widgets,
.supervision-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* Анимация появления виджетов */
@keyframes widgetFadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.widget-card {
    animation: widgetFadeInUp 0.6s ease forwards;
    opacity: 0;
}

.widget-card:nth-child(1) {
    animation-delay: 0.2s;
}

.widget-card:nth-child(2) {
    animation-delay: 0.4s;
}

.widget-card:nth-child(3) {
    animation-delay: 0.6s;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #fff;
}

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

.service-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    border-radius: 15px;
    border: 1px solid rgba(35, 85, 141, 0.08);
    box-shadow: 0 8px 25px rgba(35, 85, 141, 0.06);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.service-card.animate {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(35, 85, 141, 0.1);
    border-color: rgba(35, 85, 141, 0.15);
}

.service-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #23558D, #1a3f6b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 6px 15px rgba(35, 85, 141, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(35, 85, 141, 0.3);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-icon-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transform: translateX(2px);
}

.service-content {
    flex: 1;
}

.service-title {
    color: #23558D;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.service-description {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
}



/* Advantages Section */
.advantages {
    padding: 100px 0;
    background: #f8f9fa;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-item {
    text-align: center;
    padding: 35px 25px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 20px;
    border: 1px solid rgba(35, 85, 141, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-item::before {
    display: none;
}

.advantage-item:hover {
    transform: translateY(-8px) translateX(0);
    box-shadow: 0 15px 35px rgba(35, 85, 141, 0.15);
    border-color: rgba(35, 85, 141, 0.2);
}

.advantage-item:hover::before {
    display: none;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #23558D, #1a3f6b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(35, 85, 141, 0.25);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.advantage-image {
    width: 150px;
    height: 150px;
    margin: -25px auto 15px;
    position: relative;
    z-index: 2;
    overflow: visible;
    transition: all 0.4s ease;
}

.advantage-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: all 0.4s ease;
}

.advantage-item:hover .advantage-image {
    transform: scale(1.05);
}

.advantage-item:hover .advantage-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(35, 85, 141, 0.35);
}

.advantage-icon svg {
    width: 36px;
    height: 36px;
}

.advantage-item h4 {
    color: #22558c;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.advantage-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Projects Section - Modern Design */
.projects {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.project-card-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    border: 2px solid rgba(35, 85, 141, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 15px 30px rgba(35, 85, 141, 0.1),
        0 8px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    backdrop-filter: blur(15px);
}

/* .project-card-modern:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(35, 85, 141, 0.2),
        0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(35, 85, 141, 0.3);
} */

.project-image-modern {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.project-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    transition: all 0.4s ease;
}

/* .project-card-modern:hover .project-image-modern img {
transform: scale(1.05);
} */



.project-content-modern {
    padding: 18px;
}

.project-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
}

.project-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(35, 85, 141, 0.15), rgba(35, 85, 141, 0.08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(35, 85, 141, 0.2);
    transition: all 0.3s ease;
}

.project-card-modern:hover .project-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(35, 85, 141, 0.25), rgba(35, 85, 141, 0.15));
    border-color: rgba(35, 85, 141, 0.4);
}

.project-icon svg {
    width: 25px;
    height: 25px;
    color: #23558D;
    transition: all 0.3s ease;
}

.project-card-modern:hover .project-icon svg {
    transform: scale(1.2);
    filter: drop-shadow(0 2px 4px rgba(35, 85, 141, 0.3));
}



.project-title-modern {
    font-size: 1.3rem;
    font-weight: 800;
    color: #23558D;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.project-card-modern:hover .project-title-modern {
    transform: translateY(-2px);
    filter: drop-shadow(0 2px 4px rgba(35, 85, 141, 0.2));
}

.project-locations {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
    border-radius: 10px;
    border: 1px solid rgba(35, 85, 141, 0.1);
    position: relative;
    overflow: hidden;
}

/* .location-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(35, 85, 141, 0.05), transparent);
    transition: left 0.6s ease;
} */

/* .location-item:hover::before {
left: 100%;
}

.location-item:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border-color: rgba(35, 85, 141, 0.2);
    box-shadow: 0 8px 20px rgba(35, 85, 141, 0.1);
} */

.location-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(35, 85, 141, 0.1), rgba(35, 85, 141, 0.05));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(35, 85, 141, 0.15);
}

/* .location-item:hover .location-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(35, 85, 141, 0.2), rgba(35, 85, 141, 0.1));
    border-color: rgba(35, 85, 141, 0.3);
} */

.location-icon svg {
    width: 20px;
    height: 20px;
    color: #23558D;
    transition: all 0.3s ease;
}

/* .location-item:hover .location-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 4px rgba(35, 85, 141, 0.3));
} */

.location-info h4 {
    font-size: 13px;
    font-weight: 700;
    color: #23558D;
    margin-bottom: 3px;
    transition: all 0.3s ease;
}

/* .location-item:hover .location-info h4 {
    transform: translateY(-1px);
} */

.location-info p {
    font-size: 11px;
    color: #666;
    line-height: 1.2;
    margin: 0;
    transition: all 0.3s ease;
}

/* .location-item:hover .location-info p {
    color: #555;
} */

/* Projects Slider Section */
.projects-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.projects-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.project-card-modern {
    display: none;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-card-modern.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.project-card-modern.fade-out {
    opacity: 0;
    transform: translateX(-100px);
}

.projects-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    padding: 20px;
}

.nav-btn {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(35, 85, 141, 0.15), rgba(35, 85, 141, 0.08));
    color: #23558D;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid rgba(35, 85, 141, 0.25);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(35, 85, 141, 0.2), transparent);
    transition: left 0.6s ease;
}

.nav-btn:hover::before {
    left: 100%;
}

.nav-btn:hover {
    background: linear-gradient(135deg, rgba(35, 85, 141, 0.25), rgba(35, 85, 141, 0.15));
    transform: scale(1.15);
    border-color: rgba(35, 85, 141, 0.5);
    box-shadow: 0 12px 30px rgba(35, 85, 141, 0.4);
}

.nav-btn:active {
    transform: scale(0.9);
    transition: all 0.1s ease;
}

.nav-btn svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.nav-btn:hover svg {
    transform: scale(1.2);
    filter: drop-shadow(0 2px 4px rgba(35, 85, 141, 0.3));
}

.projects-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(35, 85, 141, 0.15), rgba(35, 85, 141, 0.08));
    border: 2px solid rgba(35, 85, 141, 0.25);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(35, 85, 141, 0.25), transparent);
    transition: left 0.8s ease;
}

.dot:hover::before {
    left: 100%;
}

.dot:hover {
    transform: scale(1.4);
    background: linear-gradient(135deg, rgba(35, 85, 141, 0.3), rgba(35, 85, 141, 0.15));
    border-color: rgba(35, 85, 141, 0.5);
    box-shadow: 0 6px 15px rgba(35, 85, 141, 0.4);
}

.dot.active {
    background: linear-gradient(135deg, #23558D, #4A90E2);
    border-color: #23558D;
    transform: scale(1.3);
    box-shadow: 0 8px 20px rgba(35, 85, 141, 0.6);
    animation: dotPulse 2.5s infinite;
}

@keyframes dotPulse {
    0%, 100% {
        box-shadow: 0 6px 16px rgba(35, 85, 141, 0.5);
    }
    50% {
        box-shadow: 0 6px 20px rgba(35, 85, 141, 0.8);
    }
}

/* Projects Section - Legacy (keeping for compatibility) */
.projects {
    padding: 100px 0;
    background: #f8f9fa;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-content {
    padding: 30px;
}

.project-title {
    color: #333;
    margin-bottom: 15px;
    font-size: 20px;
}

.project-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.project-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-type {
    background: linear-gradient(135deg, #23558D, #1a3f6b);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-year {
    color: #666;
    font-weight: 600;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: #fff;
}

.reviews-slider {
    max-width: 800px;
    margin: 0 auto;
}

.review-card {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid rgba(35, 85, 141, 0.1);
}

.review-text {
    font-size: 18px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
}

.review-text::before {
    content: '"';
    font-size: 60px;
    color: #23558D;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
}

.review-text::after {
    content: '"';
    font-size: 60px;
    color: #23558D;
    position: absolute;
    bottom: -40px;
    right: -10px;
    font-family: serif;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-name {
    color: #333;
    margin-bottom: 5px;
    font-size: 16px;
}

.author-position {
    color: #666;
    font-size: 14px;
}

/* Swiper Pagination */
.swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #23558D;
}

/* Contacts Section */
.contacts {
    padding: 100px 0;
    background: #f8f9fa;
}

.contacts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #23558D, #1a3f6b);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 6px 15px rgba(35, 85, 141, 0.3);
}

.contact-icon svg {
    width: 28px;
    height: 28px;
}

.contact-details h4 {
    color: #22558c;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
}

.contact-details p {
    color: #666;
    margin-bottom: 0;
}

.contact-details a {
    color: #23558D;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.contact-details a:hover {
    color: #1a3f6b;
}

/* Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    margin-top: -30px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #23558D;
}

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

.contact-form .btn {
    margin-top: -10px;
}

.form-message {
    margin-top: 15px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo .logo {
    height: 90px;
    width: auto;
    margin-bottom: 20px;
}

.footer-logo p {
    color: #ccc;
    margin-bottom: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .director-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .director-title {
        font-size: 2rem;
    }
    
    .director-company {
        font-size: 1.5rem;
    }
    
    .director-greeting {
        font-size: 1.2rem;
    }
    
    .director-text {
        font-size: 1rem;
    }
    
    .chief-engineer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .chief-engineer-title {
        font-size: 2rem;
    }
    
    .chief-engineer-greeting {
        font-size: 1.2rem;
    }
    
    .chief-engineer-text {
        font-size: 1rem;
    }
    
    .team-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contacts-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Modern Projects Mobile Styles */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-card-modern {
        border-radius: 18px;
    }
    
    .project-image-modern {
        height: 180px;
    }
    
    .project-content-modern {
        padding: 15px;
    }
    
    .project-title-modern {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .project-header {
        margin-bottom: 12px;
    }
    
    .project-icon {
        width: 45px;
        height: 45px;
    }
    
    .project-icon svg {
        width: 22px;
        height: 22px;
    }
    

    
    .location-item {
        padding: 12px;
        gap: 10px;
    }
    
    .location-icon {
        width: 35px;
        height: 35px;
    }
    
    .location-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .location-info h4 {
        font-size: 13px;
    }
    
    .location-info p {
        font-size: 11px;
    }
    
    /* Mobile Slider Styles */
    .projects-navigation {
        gap: 20px;
        margin-top: 30px;
        padding: 15px;
    }
    
    .nav-btn {
        width: 50px;
        height: 50px;
    }
    
    .nav-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .projects-dots {
        gap: 10px;
    }
    
    .dot {
        width: 14px;
        height: 14px;
    }
    
    .hero-stats-classic {
        flex-direction: column;
        gap: 30px;
        margin-top: 30px;
        padding: 30px 20px;
    }
    
    .hero-badge {
        display: none;
    }
    
    .stat-classic-item:not(:last-child)::after {
        display: none;
    }
    
    .stat-classic-number {
        font-size: 2.5rem;
    }
    
    .stat-classic-text {
        font-size: 12px;
    }
    
    .header-nav {
        display: none;
    }
    
    .header-contacts {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-nav.active {
        display: flex !important;
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        border-top: 1px solid rgba(35, 85, 141, 0.1);
        padding: 20px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .header-nav.active .nav-list {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    
    .header-nav.active .nav-link {
        font-size: 16px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(35, 85, 141, 0.1);
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .advantage-item {
        padding: 30px 20px;
    }
    
    .advantage-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .advantage-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .advantage-image {
        width: 120px;
        height: 120px;
        margin: -20px auto 15px;
    }
    
    .advantage-item h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .advantage-item p {
        font-size: 14px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto;
    }
    
    .service-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-description {
        font-size: 14px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .department-card {
        padding: 20px;
    }
    
    .expertise-widgets,
    .coordination-widgets,
    .supervision-widgets {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .widget-card {
        padding: 25px 20px;
        margin-bottom: 20px;
        border-radius: 18px;
    }
    
    .widget-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
        border-radius: 14px;
    }
    
    .widget-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .widget-content h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .widget-content p {
        font-size: 14px;
    }
    
    .department-title {
        font-size: 16px;
    }
    
    .department-description {
        font-size: 14px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-badge {
        display: none;
    }
    
    .hero-content {
        padding: 100px 0 40px;
    }
    
    .hero-card {
        padding: 25px 20px;
        max-width: 100%;
        min-width: auto;
    }
    
    .service-card,
    .project-card,
    .review-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

/* Parallax and smooth scrolling */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* Smooth transition between sections */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: transparent;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.about {
    position: relative;
    z-index: 2;
    background: #fff;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.slide-in-left {
    animation: slideInLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.slide-in-right {
    animation: slideInRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.scale-in {
    animation: scaleIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Hover effects */
.service-card:hover,
.project-card:hover,
.advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Smooth transitions for interactive elements */
.service-card,
.project-card,
.advantage-item,
.btn,
.nav-link,
.contact-btn {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Service cards animation */
.service-card {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Loading animation for buttons */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 80px;
}

/* Expertise Section */
.expertise {
    padding: 70px 0;
    background: #f8f9fa;
}

.expertise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.expertise-image {
    display: flex;
    justify-content: center;
    margin-top: -30px;
}

.expertise-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 450px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateX(-30px) translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.expertise-card.animate {
    animation: slideInLeft 0.5s ease forwards;
    animation-delay: 0.1s;
}

.expertise-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.expertise-card:hover .expertise-img {
    transform: scale(1.02);
}

.expertise-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.expertise-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
}

.expertise-title {
    color: #22558c;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.2;
}

.expertise-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-square {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #23558D, #1a3f6b);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-main {
    color: #23558D;
    font-weight: 800;
    font-size: 18px;
    line-height: 1;
}

.logo-sub {
    color: #23558D;
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
}

.expertise-description {
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(35, 85, 141, 0.1);
    box-shadow: 0 10px 30px rgba(35, 85, 141, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.expertise-description:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(35, 85, 141, 0.12);
    border-color: rgba(35, 85, 141, 0.2);
}

.expertise-description p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 500;
    position: relative;
    padding-left: 20px;
}

.expertise-description p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #23558D, #4A90E2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.expertise-description:hover p::before {
    transform: scale(1.5);
    box-shadow: 0 0 10px rgba(35, 85, 141, 0.3);
}

/* Mobile responsiveness for expertise section */
@media (max-width: 768px) {
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .expertise-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .expertise-title {
        font-size: 2rem;
    }
    
    .expertise-description p {
        font-size: 1rem;
    }
}

/* Coordination Section */
.coordination {
    padding: 70px 0;
    background: #fff;
}

.coordination-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.coordination-image {
    display: flex;
    justify-content: center;
    margin-top: -30px;
}

.coordination-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 450px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.3s ease;
}

.coordination-card:hover {
    transform: translateX(-30px) translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.coordination-card.animate {
    animation: slideInLeft 0.5s ease forwards;
    animation-delay: 0.1s;
}

.coordination-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.coordination-card:hover .coordination-img {
    transform: scale(1.02);
}

.coordination-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.coordination-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
}

.coordination-title {
    color: #22558c;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.2;
}

.coordination-description {
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(35, 85, 141, 0.1);
    box-shadow: 0 10px 30px rgba(35, 85, 141, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.coordination-description:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(35, 85, 141, 0.12);
    border-color: rgba(35, 85, 141, 0.2);
}

.coordination-description p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 500;
    position: relative;
    padding-left: 20px;
}

.coordination-description p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #23558D, #4A90E2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.coordination-description:hover p::before {
    transform: scale(1.5);
    box-shadow: 0 0 10px rgba(35, 85, 141, 0.3);
}

/* Mobile responsiveness for coordination section */
@media (max-width: 768px) {
    .coordination-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .coordination-image {
        margin-top: -20px;
    }
    
    .coordination-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .coordination-title {
        font-size: 2rem;
    }
    
    .coordination-description p {
        font-size: 1rem;
    }
}

/* Author's Supervision Section */
.supervision {
    padding: 70px 0;
    background: #f8f9fa;
}

.supervision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.supervision-image {
    display: flex;
    justify-content: center;
    margin-top: -30px;
}

.supervision-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 450px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.3s ease;
}

.supervision-card:hover {
    transform: translateX(-30px) translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.supervision-card.animate {
    animation: slideInLeft 0.5s ease forwards;
    animation-delay: 0.1s;
}

.supervision-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.supervision-card:hover .supervision-img {
    transform: scale(1.02);
}

.supervision-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.supervision-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
}

.supervision-title {
    color: #22558c;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.2;
}

.supervision-description {
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(35, 85, 141, 0.1);
    box-shadow: 0 10px 30px rgba(35, 85, 141, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.supervision-description:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(35, 85, 141, 0.12);
    border-color: rgba(35, 85, 141, 0.2);
}

.supervision-description p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 500;
    position: relative;
    padding-left: 20px;
}

.supervision-description p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #23558D, #4A90E2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.supervision-description:hover p::before {
    transform: scale(1.5);
    box-shadow: 0 0 10px rgba(35, 85, 141, 0.3);
}

/* Mobile responsiveness for supervision section */
@media (max-width: 768px) {
    .supervision-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .supervision-image {
        margin-top: -20px;
    }
    
    .supervision-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .supervision-title {
        font-size: 2rem;
    }
    
    .supervision-description p {
        font-size: 1rem;
    }
}

/* Gas Pipeline Project Section */
.gas-pipeline {
    padding: 50px 0;
    background: #fff;
}

.gas-pipeline-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.gas-pipeline-image {
    display: flex;
    justify-content: center;
    margin-top: -20px;
}

.gas-pipeline-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 600px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.3s ease;
}

.gas-pipeline-card:hover {
    transform: translateX(-30px) translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.gas-pipeline-card.animate {
    animation: slideInLeft 0.5s ease forwards;
    animation-delay: 0.1s;
}

.gas-pipeline-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gas-pipeline-card:hover .gas-pipeline-img {
    transform: scale(1.02);
}

.gas-pipeline-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.gas-pipeline-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 15px;
}

.gas-pipeline-title {
    color: #22558c;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.2;
}

.gas-pipeline-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
    padding: 25px;
    border-radius: 18px;
    border: 1px solid rgba(35, 85, 141, 0.1);
    box-shadow: 0 8px 25px rgba(35, 85, 141, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.gas-pipeline-description:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(35, 85, 141, 0.12);
    border-color: rgba(35, 85, 141, 0.2);
}

.gas-pipeline-description p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 500;
    position: relative;
    padding-left: 18px;
}

.gas-pipeline-description p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: linear-gradient(135deg, #23558D, #4A90E2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.gas-pipeline-description:hover p::before {
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(35, 85, 141, 0.3);
}

/* Mobile responsiveness for gas-pipeline section */
@media (max-width: 768px) {
    .gas-pipeline-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .gas-pipeline-image {
        margin-top: -15px;
    }
    
    .gas-pipeline-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .gas-pipeline-title {
        font-size: 1.8rem;
    }
    
    .gas-pipeline-description p {
        font-size: 0.95rem;
    }
}

/* Linear Object Solutions Section */
.linear-object {
    padding: 50px 0;
    background: #f8f9fa;
}

.linear-object-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.linear-object-image {
    display: flex;
    justify-content: center;
    margin-top: -20px;
}

.linear-object-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 500px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.3s ease;
}

.linear-object-card:hover {
    transform: translateX(-30px) translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.linear-object-card.animate {
    animation: slideInLeft 0.5s ease forwards;
    animation-delay: 0.1s;
}

.linear-object-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.linear-object-card:hover .linear-object-img {
    transform: scale(1.02);
}

.linear-object-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.linear-object-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 15px;
}

.linear-object-title {
    color: #22558c;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.3;
}

.linear-object-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
    padding: 25px;
    border-radius: 18px;
    border: 1px solid rgba(35, 85, 141, 0.1);
    box-shadow: 0 8px 25px rgba(35, 85, 141, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.linear-object-description:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(35, 85, 141, 0.12);
    border-color: rgba(35, 85, 141, 0.2);
}

.linear-object-description p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 500;
    position: relative;
    padding-left: 18px;
}

.linear-object-description p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: linear-gradient(135deg, #23558D, #4A90E2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.linear-object-description:hover p::before {
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(35, 85, 141, 0.3);
}

/* Mobile responsiveness for linear-object section */
@media (max-width: 768px) {
    .linear-object-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .linear-object-image {
        margin-top: -15px;
    }
    
    .linear-object-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .linear-object-title {
        font-size: 1.6rem;
    }
    
    .linear-object-description p {
        font-size: 0.95rem;
    }
}

/* Infrastructure Buildings Section */
.infrastructure-buildings {
    padding: 50px 0;
    background: #fff;
}

.infrastructure-buildings .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.infrastructure-buildings-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.infrastructure-buildings-image {
    display: flex;
    justify-content: center;
    margin-top: -20px;
}

.infrastructure-buildings-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 450px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.3s ease;
}

.infrastructure-buildings-card:hover {
    transform: translateX(-30px) translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.infrastructure-buildings-card.animate {
    animation: slideInLeft 0.5s ease forwards;
    animation-delay: 0.1s;
}

.infrastructure-buildings-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.infrastructure-buildings-card:hover .infrastructure-buildings-img {
    transform: scale(1.02);
}

.infrastructure-buildings-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.infrastructure-buildings-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 15px;
}

.infrastructure-buildings-title {
    color: #22558c;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.3;
}

.infrastructure-buildings-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
    padding: 25px;
    border-radius: 18px;
    border: 1px solid rgba(35, 85, 141, 0.1);
    box-shadow: 0 8px 25px rgba(35, 85, 141, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.infrastructure-buildings-description:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(35, 85, 141, 0.12);
    border-color: rgba(35, 85, 141, 0.2);
}

.infrastructure-buildings-description p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 500;
    position: relative;
    padding-left: 18px;
}

.infrastructure-buildings-description p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: linear-gradient(135deg, #23558D, #4A90E2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.infrastructure-buildings-description:hover p::before {
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(35, 85, 141, 0.3);
}

/* Mobile responsiveness for infrastructure-buildings section */
@media (max-width: 768px) {
    .infrastructure-buildings-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .infrastructure-buildings-image {
        margin-top: -15px;
    }
    
    .infrastructure-buildings-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .infrastructure-buildings-title {
        font-size: 1.6rem;
    }
    
    .infrastructure-buildings-description p {
        font-size: 0.95rem;
    }
}

/* Construction Organization Project Section */
.construction-organization {
    padding: 50px 0;
    background: #f8f9fa;
}

.construction-organization .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.construction-organization-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.construction-organization-image {
    display: flex;
    justify-content: center;
    margin-top: -20px;
}

.construction-organization-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 500px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.3s ease;
}

.construction-organization-card:hover {
    transform: translateX(-30px) translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.construction-organization-card.animate {
    animation: slideInLeft 0.5s ease forwards;
    animation-delay: 0.1s;
}

.construction-organization-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.construction-organization-card:hover .construction-organization-img {
    transform: scale(1.02);
}

.construction-organization-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.construction-organization-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 15px;
}

.construction-organization-title {
    color: #22558c;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.3;
}

.construction-organization-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
    padding: 25px;
    border-radius: 18px;
    border: 1px solid rgba(35, 85, 141, 0.1);
    box-shadow: 0 8px 25px rgba(35, 85, 141, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.construction-organization-description:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(35, 85, 141, 0.12);
    border-color: rgba(35, 85, 141, 0.2);
}

.construction-organization-description p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 500;
    position: relative;
    padding-left: 18px;
}

.construction-organization-description p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: linear-gradient(135deg, #23558D, #4A90E2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.construction-organization-description:hover p::before {
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(35, 85, 141, 0.3);
}

/* Mobile responsiveness for construction-organization section */
@media (max-width: 768px) {
    .construction-organization-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .construction-organization-image {
        margin-top: -15px;
    }
    
    .construction-organization-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .construction-organization-title {
        font-size: 1.6rem;
    }
    
    .construction-organization-description p {
        font-size: 0.95rem;
    }
}

/* External Lighting Section */
.external-lighting {
    padding: 70px 0;
    background: #fff;
}

.external-lighting .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.external-lighting-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.external-lighting-image {
    display: flex;
    justify-content: center;
    margin-top: -20px;
}

.external-lighting-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 450px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.3s ease;
}

.external-lighting-card:hover {
    transform: translateX(-30px) translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.external-lighting-card.animate {
    animation: slideInLeft 0.5s ease forwards;
    animation-delay: 0.1s;
}

.external-lighting-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.external-lighting-card:hover .external-lighting-img {
    transform: scale(1.02);
}

.external-lighting-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.external-lighting-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 15px;
}

.external-lighting-title {
    color: #22558c;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.3;
}

.external-lighting-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
    padding: 25px;
    border-radius: 18px;
    border: 1px solid rgba(35, 85, 141, 0.1);
    box-shadow: 0 8px 25px rgba(35, 85, 141, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.external-lighting-description:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(35, 85, 141, 0.12);
    border-color: rgba(35, 85, 141, 0.2);
}

.external-lighting-description p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 500;
    position: relative;
    padding-left: 18px;
}

.external-lighting-description p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: linear-gradient(135deg, #23558D, #4A90E2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.external-lighting-description:hover p::before {
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(35, 85, 141, 0.3);
}

/* Mobile responsiveness for external-lighting section */
@media (max-width: 768px) {
    .external-lighting-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .external-lighting-image {
        margin-top: -15px;
    }
    
    .external-lighting-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .external-lighting-title {
        font-size: 1.6rem;
    }
    
    .external-lighting-description p {
        font-size: 0.95rem;
    }
}

/* High Voltage Cable Lines Section */
.high-voltage-cables {
    padding: 70px 0;
    background: #f8f9fa;
}

.high-voltage-cables .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.high-voltage-cables-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.high-voltage-cables-image {
    display: flex;
    justify-content: center;
    margin-top: -20px;
}

.high-voltage-cables-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 600px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.3s ease;
}

.high-voltage-cables-card:hover {
    transform: translateX(-30px) translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.high-voltage-cables-card.animate {
    animation: slideInLeft 0.5s ease forwards;
    animation-delay: 0.1s;
}

.high-voltage-cables-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.high-voltage-cables-card:hover .high-voltage-cables-img {
    transform: scale(1.02);
}

.high-voltage-cables-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.high-voltage-cables-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 15px;
}

.high-voltage-cables-title {
    color: #22558c;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.3;
}

.high-voltage-cables-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
    padding: 25px;
    border-radius: 18px;
    border: 1px solid rgba(35, 85, 141, 0.1);
    box-shadow: 0 8px 25px rgba(35, 85, 141, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.high-voltage-cables-description:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(35, 85, 141, 0.12);
    border-color: rgba(35, 85, 141, 0.2);
}

.high-voltage-cables-description p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 500;
    position: relative;
    padding-left: 18px;
}

.high-voltage-cables-description p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: linear-gradient(135deg, #23558D, #4A90E2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.high-voltage-cables-description:hover p::before {
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(35, 85, 141, 0.3);
}

/* Mobile responsiveness for high-voltage-cables section */
@media (max-width: 768px) {
    .high-voltage-cables-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .high-voltage-cables-image {
        margin-top: -15px;
    }
    
    .high-voltage-cables-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .high-voltage-cables-title {
        font-size: 1.6rem;
    }
    
    .high-voltage-cables-description p {
        font-size: 0.95rem;
    }
}

/* Road Traffic Management Section */
.road-traffic-management {
    padding: 70px 0;
    background: #fff;
}

.road-traffic-management .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.road-traffic-management-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.road-traffic-management-image {
    display: flex;
    justify-content: center;
    margin-top: -20px;
}

.road-traffic-management-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 600px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.3s ease;
}

.road-traffic-management-card:hover {
    transform: translateX(-30px) translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.road-traffic-management-card.animate {
    animation: slideInLeft 0.5s ease forwards;
    animation-delay: 0.1s;
}

.road-traffic-management-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.road-traffic-management-card:hover .road-traffic-management-img {
    transform: scale(1.02);
}

.road-traffic-management-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.road-traffic-management-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 15px;
}

.road-traffic-management-title {
    color: #22558c;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.3;
}

.road-traffic-management-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
    padding: 25px;
    border-radius: 18px;
    border: 1px solid rgba(35, 85, 141, 0.1);
    box-shadow: 0 8px 25px rgba(35, 85, 141, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.road-traffic-management-description:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(35, 85, 141, 0.12);
    border-color: rgba(35, 85, 141, 0.2);
}

.road-traffic-management-description p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 500;
    position: relative;
    padding-left: 18px;
}

.road-traffic-management-description p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: linear-gradient(135deg, #23558D, #4A90E2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.road-traffic-management-description:hover p::before {
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(35, 85, 141, 0.3);
}

/* Mobile responsiveness for road-traffic-management section */
@media (max-width: 768px) {
    .road-traffic-management-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .road-traffic-management-image {
        margin-top: -15px;
    }
    
    .road-traffic-management-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .road-traffic-management-title {
        font-size: 1.4rem;
    }
    
    .road-traffic-management-description p {
        font-size: 0.95rem;
    }
}

/* Engineering Geological Survey Section */
.engineering-geological-survey {
    padding: 70px 0;
    background: #f8f9fa;
}

.engineering-geological-survey .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.engineering-geological-survey-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.engineering-geological-survey-image {
    display: flex;
    justify-content: center;
    margin-top: -20px;
}

.engineering-geological-survey-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 600px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.3s ease;
}

.engineering-geological-survey-card:hover {
    transform: translateX(-30px) translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.engineering-geological-survey-card.animate {
    animation: slideInLeft 0.5s ease forwards;
    animation-delay: 0.1s;
}

.engineering-geological-survey-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.engineering-geological-survey-card:hover .engineering-geological-survey-img {
    transform: scale(1.02);
}

.engineering-geological-survey-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.engineering-geological-survey-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 15px;
}

.engineering-geological-survey-title {
    color: #22558c;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.3;
}

.engineering-geological-survey-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
    padding: 25px;
    border-radius: 18px;
    border: 1px solid rgba(35, 85, 141, 0.1);
    box-shadow: 0 8px 25px rgba(35, 85, 141, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.engineering-geological-survey-description:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(35, 85, 141, 0.12);
    border-color: rgba(35, 85, 141, 0.2);
}

.engineering-geological-survey-description p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 500;
    position: relative;
    padding-left: 18px;
}

.engineering-geological-survey-description p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: linear-gradient(135deg, #23558D, #4A90E2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.engineering-geological-survey-description:hover p::before {
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(35, 85, 141, 0.3);
}

/* Mobile responsiveness for engineering-geological-survey section */
@media (max-width: 768px) {
    .engineering-geological-survey-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .engineering-geological-survey-image {
        margin-top: -15px;
    }
    
    .engineering-geological-survey-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .engineering-geological-survey-title {
        font-size: 1.6rem;
    }
    
    .engineering-geological-survey-description p {
        font-size: 0.95rem;
    }
}

/* Geotechnical Monitoring Program Section */
.geotechnical-monitoring-program {
    padding: 70px 0;
    background: #fff;
}

.geotechnical-monitoring-program .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.geotechnical-monitoring-program-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.geotechnical-monitoring-program-image {
    display: flex;
    justify-content: center;
    margin-top: -20px;
}

.geotechnical-monitoring-program-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 600px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.3s ease;
}

.geotechnical-monitoring-program-card:hover {
    transform: translateX(-30px) translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.geotechnical-monitoring-program-card.animate {
    animation: slideInLeft 0.5s ease forwards;
    animation-delay: 0.1s;
}

.geotechnical-monitoring-program-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.geotechnical-monitoring-program-card:hover .geotechnical-monitoring-program-img {
    transform: scale(1.02);
}

.geotechnical-monitoring-program-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.geotechnical-monitoring-program-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 15px;
}

.geotechnical-monitoring-program-title {
    color: #22558c;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.3;
}

.geotechnical-monitoring-program-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
    padding: 25px;
    border-radius: 18px;
    border: 1px solid rgba(35, 85, 141, 0.1);
    box-shadow: 0 8px 25px rgba(35, 85, 141, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.geotechnical-monitoring-program-description:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(35, 85, 141, 0.12);
    border-color: rgba(35, 85, 141, 0.2);
}

.geotechnical-monitoring-program-description p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 500;
    position: relative;
    padding-left: 18px;
}

.geotechnical-monitoring-program-description p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: linear-gradient(135deg, #23558D, #4A90E2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.geotechnical-monitoring-program-description:hover p::before {
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(35, 85, 141, 0.3);
}

/* Mobile responsiveness for geotechnical-monitoring-program section */
@media (max-width: 768px) {
    .geotechnical-monitoring-program-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .geotechnical-monitoring-program-image {
        margin-top: -15px;
    }
    
    .geotechnical-monitoring-program-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .geotechnical-monitoring-program-title {
        font-size: 1.4rem;
    }
    
    .geotechnical-monitoring-program-description p {
        font-size: 0.95rem;
    }
}

/* Engineering Environmental Survey Section */
.engineering-environmental-survey {
    padding: 70px 0;
    background: #f8f9fa;
}

.engineering-environmental-survey .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.engineering-environmental-survey-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.engineering-environmental-survey-image {
    display: flex;
    justify-content: center;
    margin-top: -20px;
}

.engineering-environmental-survey-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 600px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.3s ease;
}

.engineering-environmental-survey-card:hover {
    transform: translateX(-30px) translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.engineering-environmental-survey-card.animate {
    animation: slideInLeft 0.5s ease forwards;
    animation-delay: 0.1s;
}

.engineering-environmental-survey-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.engineering-environmental-survey-card:hover .engineering-environmental-survey-img {
    transform: scale(1.02);
}

.engineering-environmental-survey-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.engineering-environmental-survey-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 15px;
}

.engineering-environmental-survey-title {
    color: #22558c;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.3;
}

.engineering-environmental-survey-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
    padding: 25px;
    border-radius: 18px;
    border: 1px solid rgba(35, 85, 141, 0.1);
    box-shadow: 0 8px 25px rgba(35, 85, 141, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.engineering-environmental-survey-description:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(35, 85, 141, 0.12);
    border-color: rgba(35, 85, 141, 0.2);
}

.engineering-environmental-survey-description p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 500;
    position: relative;
    padding-left: 18px;
}

.engineering-environmental-survey-description p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: linear-gradient(135deg, #23558D, #4A90E2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.engineering-environmental-survey-description:hover p::before {
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(35, 85, 141, 0.3);
}

/* Mobile responsiveness for engineering-environmental-survey section */
@media (max-width: 768px) {
    .engineering-environmental-survey-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .engineering-environmental-survey-image {
        margin-top: -15px;
    }
    
    .engineering-environmental-survey-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .engineering-environmental-survey-title {
        font-size: 1.6rem;
    }
    
    .engineering-environmental-survey-description p {
        font-size: 0.95rem;
    }
}

/* Environmental Protection Section */
.environmental-protection {
    padding: 70px 0;
    background: #fff;
}

.environmental-protection .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.environmental-protection-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.environmental-protection-image {
    display: flex;
    justify-content: center;
    margin-top: -20px;
}

.environmental-protection-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 600px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.3s ease;
}

.environmental-protection-card:hover {
    transform: translateX(-30px) translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.environmental-protection-card.animate {
    animation: slideInLeft 0.5s ease forwards;
    animation-delay: 0.1s;
}

.environmental-protection-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.environmental-protection-card:hover .environmental-protection-img {
    transform: scale(1.02);
}

.environmental-protection-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.environmental-protection-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 15px;
}

.environmental-protection-title {
    color: #22558c;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.3;
}

.environmental-protection-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
    padding: 25px;
    border-radius: 18px;
    border: 1px solid rgba(35, 85, 141, 0.1);
    box-shadow: 0 8px 25px rgba(35, 85, 141, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.environmental-protection-description:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(35, 85, 141, 0.12);
    border-color: rgba(35, 85, 141, 0.2);
}

.environmental-protection-description p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 500;
    position: relative;
    padding-left: 18px;
}

.environmental-protection-description p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: linear-gradient(135deg, #23558D, #4A90E2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.environmental-protection-description:hover p::before {
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(35, 85, 141, 0.3);
}

/* Mobile responsiveness for environmental-protection section */
@media (max-width: 768px) {
    .environmental-protection-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .environmental-protection-image {
        margin-top: -15px;
    }
    
    .environmental-protection-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .environmental-protection-title {
        font-size: 1.6rem;
    }
    
    .environmental-protection-description p {
        font-size: 0.95rem;
    }
}

/* Landscaping, Greening, and Dendrology Section */
.landscaping-greening-dendrology {
    padding: 70px 0;
    background: #f8f9fa;
}

.landscaping-greening-dendrology .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.landscaping-greening-dendrology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.landscaping-greening-dendrology-image {
    display: flex;
    justify-content: center;
    margin-top: -20px;
}

.landscaping-greening-dendrology-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 600px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.3s ease;
}

.landscaping-greening-dendrology-card:hover {
    transform: translateX(-30px) translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.landscaping-greening-dendrology-card.animate {
    animation: slideInLeft 0.5s ease forwards;
    animation-delay: 0.1s;
}

.landscaping-greening-dendrology-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.landscaping-greening-dendrology-card:hover .landscaping-greening-dendrology-img {
    transform: scale(1.02);
}

.landscaping-greening-dendrology-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.landscaping-greening-dendrology-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 15px;
}

.landscaping-greening-dendrology-title {
    color: #22558c;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.3;
}

.landscaping-greening-dendrology-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
    padding: 25px;
    border-radius: 18px;
    border: 1px solid rgba(35, 85, 141, 0.1);
    box-shadow: 0 8px 25px rgba(35, 85, 141, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.landscaping-greening-dendrology-description:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(35, 85, 141, 0.12);
    border-color: rgba(35, 85, 141, 0.2);
}

.landscaping-greening-dendrology-description p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 500;
    position: relative;
    padding-left: 18px;
}

.landscaping-greening-dendrology-description p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: linear-gradient(135deg, #23558D, #4A90E2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.landscaping-greening-dendrology-description:hover p::before {
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(35, 85, 141, 0.3);
}

/* Mobile responsiveness for landscaping-greening-dendrology section */
@media (max-width: 768px) {
    .landscaping-greening-dendrology-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .landscaping-greening-dendrology-image {
        margin-top: -15px;
    }
    
    .landscaping-greening-dendrology-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .landscaping-greening-dendrology-title {
        font-size: 1.4rem;
    }
    
    .landscaping-greening-dendrology-description p {
        font-size: 0.95rem;
    }
}

/* Trust Section */
.trust {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.trust::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.trust .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.trust .section-title {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #23558D, #1a3f6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(35, 85, 141, 0.1);
}

.trust-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trust-logos {
    max-width: 1400px;
    width: 100%;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    position: relative;
    margin: 0 auto;
}

.trust-logos.animate {
    animation: logosFloat 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.3s;
}

.trust-logos-img {
    width: 100%;
    max-width: 1300px;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.08));
    transition: all 0.4s ease;
    position: relative;
    margin: 0 auto;
}

.trust-logos-img:hover {
    transform: scale(1.08) translateY(-10px);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

/* Enhanced Trust Section */
.trust {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.trust::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(35, 85, 141, 0.2), transparent);
}

.trust-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

@keyframes logosFloat {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-10px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Licenses Section - Document Style */
.licenses {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.licenses-content {
    max-width: 1200px;
    margin: 0 auto;
}

.licenses-documents {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.document-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.document-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.document-item:hover {
    transform: translateY(-5px);
}

.document-preview {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.document-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 98%, #f0f0f0 100%);
    pointer-events: none;
}

.document-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

.document-logo {
    font-size: 18px;
    font-weight: 700;
    color: #23558D;
    letter-spacing: 1px;
}

.document-number {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.document-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.document-content {
    flex: 1;
    text-align: center;
}

.document-content p {
    font-size: 14px;
    color: #666;
    margin: 5px 0;
    line-height: 1.4;
}

.document-footer {
    margin-top: 20px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    padding-top: 15px;
}

.validity {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.document-hint {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(35, 85, 141, 0.9);
    color: white;
    font-size: 11px;
    font-weight: 500;
    border-radius: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.document-hint svg {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.document-item:hover .document-hint {
    opacity: 1;
    transform: translateY(0);
}

.document-item:hover .document-hint svg {
    transform: translateX(2px);
}

.licenses-description {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.description-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.description-list li {
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    font-weight: 400;
}

.description-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #23558D;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(35, 85, 141, 0.1);
}

/* Licenses Info Section */
.licenses-info {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    border: 1px solid rgba(35, 85, 141, 0.1);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 
        0 10px 30px rgba(35, 85, 141, 0.08),
        0 4px 15px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
}

.licenses-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #23558D, #1a3f6b);
}

.info-header {
    margin-bottom: 30px;
}

.info-header h3 {
    color: #23558D;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.info-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #23558D, #1a3f6b);
    border-radius: 2px;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(35, 85, 141, 0.03), rgba(35, 85, 141, 0.06));
    border-radius: 12px;
    border-left: none;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: linear-gradient(135deg, rgba(35, 85, 141, 0.08), rgba(35, 85, 141, 0.12));
    transform: none;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #23558D, #1a3f6b);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 3px 10px rgba(35, 85, 141, 0.2);
    flex-shrink: 0;
}

.info-icon svg {
    width: 20px;
    height: 20px;
}

.info-item p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

.licenses-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.licenses-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
}

.licenses-title {
    color: #22558c;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.2;
}

.licenses-description {
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(35, 85, 141, 0.1);
    box-shadow: 0 10px 30px rgba(35, 85, 141, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.licenses-description:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(35, 85, 141, 0.12);
    border-color: rgba(35, 85, 141, 0.2);
}

.licenses-description p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 500;
    position: relative;
    padding-left: 20px;
}

.licenses-description p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #23558D, #4A90E2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.licenses-description:hover p::before {
    transform: scale(1.5);
    box-shadow: 0 0 10px rgba(35, 85, 141, 0.3);
}

/* License Modal */
.license-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: modalFadeIn 0.3s ease;
}

.license-modal-content {
    position: relative;
    background-color: #fff;
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 1200px;
    height: 90%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

.license-modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #aaa;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
}

.license-modal-close:hover {
    color: #23558D;
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.license-modal-body {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.license-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Mobile responsiveness for trust section */
@media (max-width: 768px) {
    .trust {
        padding: 40px 10px;
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .trust .section-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 30px;
        padding: 0 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
    
    .trust .section-subtitle,
    .trust .section-header .section-subtitle {
        display: none !important;
    }
    
    .trust-content {
        padding: 0 5px;
        max-width: 100%;
        box-sizing: border-box;
        min-height: auto;
    }
    
    .trust-description,
    .trust .trust-description {
        display: none !important;
    }
    
    .trust-logos {
        max-width: 100%;
        width: 100%;
        padding: 0 5px;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    .trust-logos-img {
        max-width: 100%;
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        box-sizing: border-box;
        min-height: 200px;
    }
    
    .trust-logos-img:hover {
        transform: scale(1.02) translateY(-5px);
    }
    
    /* Document grid styles (if any) */
    .document-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .document-preview {
        padding: 20px;
        min-height: 180px;
    }
    
    .document-logo {
        font-size: 16px;
    }
    
    .document-title {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .document-content p {
        font-size: 13px;
    }
    
    .licenses-description {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .description-list {
        gap: 20px;
    }
    
    .description-list li {
        font-size: 15px;
        padding-left: 25px;
    }
    
    .description-list li::before {
        width: 6px;
        height: 6px;
        top: 6px;
    }
    
    .document-hint {
        bottom: 10px;
        right: 10px;
        padding: 5px 10px;
        font-size: 10px;
    }
    
    .document-hint svg {
        width: 10px;
        height: 10px;
    }
    
    .license-modal-content {
        width: 95%;
        height: 95%;
        margin: 2.5% auto;
    }
}

/* Mobile responsiveness for advantages section */
@media (max-width: 768px) {
    .advantages {
        padding: 60px 0;
        overflow-x: hidden;
        width: 100%;
    }
    
    .advantages .section-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 20px;
        padding: 0 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .advantage-item {
        padding: 20px 15px;
        margin: 0;
        border-radius: 15px;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .advantage-image {
        width: 80px;
        height: 80px;
        margin: -10px auto 15px;
        max-width: 100%;
    }
    
    .advantage-item h4 {
        font-size: 15px;
        margin-bottom: 10px;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .advantage-item p {
        font-size: 13px;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .container {
        padding: 0 10px;
        max-width: 100%;
        overflow-x: hidden;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .advantages {
        padding: 40px 0;
        overflow-x: hidden;
    }
    
    .advantages .section-title {
        font-size: 1.6rem;
        padding: 0 8px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .advantages-grid {
        padding: 0 8px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .advantage-item {
        padding: 15px 10px;
        margin: 0;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .advantage-image {
        width: 60px;
        height: 60px;
        margin: -8px auto 10px;
        max-width: 100%;
    }
    
    .advantage-item h4 {
        font-size: 14px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .advantage-item p {
        font-size: 12px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .container {
        padding: 0 8px;
        max-width: 100%;
        overflow-x: hidden;
    }
}

/* Global mobile fixes */
@media (max-width: 768px) {
    .main {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
}

/* Mobile fixes for all sections */
@media (max-width: 768px) {
    /* Licenses section fixes */
    .licenses .section-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 20px;
        padding: 0 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .licenses {
        padding: 60px 0;
        overflow-x: hidden;
    }
    
    .licenses-content {
        padding: 0 10px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .licenses-documents {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .document-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .document-preview {
        padding: 20px 15px;
        min-height: 160px;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .document-title {
        font-size: 14px;
        margin-bottom: 12px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .document-content p {
        font-size: 12px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Contacts section fixes */
    .contacts {
        padding: 60px 0;
        overflow-x: hidden;
    }
    
    .contacts .section-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 20px;
        padding: 0 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .contacts-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 10px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .contacts-info {
        gap: 25px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .contact-item {
        gap: 15px;
        max-width: 100%;
        box-sizing: border-box;
        align-items: center;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }
    
    .contact-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .contact-details {
        flex: 1;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .contact-details h4 {
        font-size: 16px;
        margin-bottom: 6px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .contact-details p {
        font-size: 14px;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .contact-details a {
        font-size: 14px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .contact-form {
        padding: 25px 20px;
        margin-top: 0;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .form {
        gap: 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    /* General section title fixes */
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 20px;
        padding: 0 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .section-subtitle {
        font-size: 16px;
        padding: 0 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    /* Trust section */
    .trust {
        padding: 30px 5px;
    }
    
    .trust .section-title {
        font-size: 1.8rem;
        padding: 0 5px;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .trust .section-subtitle,
    .trust .section-header .section-subtitle {
        display: none !important;
    }
    
    .trust-content {
        padding: 0 2px;
    }
    
    .trust-description,
    .trust .trust-description {
        display: none !important;
    }
    
    .trust-logos {
        padding: 0 2px;
    }
    
    .trust-logos-img {
        max-width: 100%;
        min-height: 150px;
    }
    
    /* Licenses section */
    .licenses .section-title {
        font-size: 1.6rem;
        padding: 0 8px;
    }
    
    .licenses-content {
        padding: 0 8px;
    }
    
    .document-grid {
        padding: 0 8px;
    }
    
    .document-preview {
        padding: 15px 12px;
        min-height: 140px;
    }
    
    .document-title {
        font-size: 13px;
    }
    
    .document-content p {
        font-size: 11px;
    }
    
    /* Contacts section */
    .contacts .section-title {
        font-size: 1.6rem;
        padding: 0 8px;
    }
    
    .contacts-content {
        padding: 0 8px;
        gap: 30px;
    }
    
    .contacts-info {
        gap: 20px;
    }
    
    .contact-item {
        gap: 12px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-details h4 {
        font-size: 15px;
    }
    
    .contact-details p {
        font-size: 13px;
    }
    
    .contact-details a {
        font-size: 13px;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 13px;
    }
    
    /* General section titles */
    .section-title {
        font-size: 1.6rem;
        padding: 0 8px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .section-subtitle {
        font-size: 14px;
        padding: 0 8px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* ===== КОМПЛЕКСНЫЕ ИСПРАВЛЕНИЯ МОБИЛЬНОЙ ВЕРСИИ ===== */

/* Глобальные исправления для всех разделов */
@media (max-width: 768px) {
    /* Общие стили для всех заголовков */
    .section-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        padding: 0 10px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        text-align: center !important;
    }
    
    .section-subtitle {
        font-size: 16px !important;
        padding: 0 10px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        text-align: center !important;
    }
    
    /* Исправления для раздела "Преимущества компании" */
    .advantages {
        padding: 60px 10px !important;
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .advantages .section-title {
        font-size: 2rem !important;
        padding: 0 10px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    .advantages-grid {
        padding: 0 10px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .advantage-item {
        padding: 20px 15px !important;
        margin: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    
    .advantage-image {
        width: 80px !important;
        height: 80px !important;
    }
    
    .advantage-item h4 {
        font-size: 16px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .advantage-item p {
        font-size: 14px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    /* Исправления для раздела "Нам доверяют" */
    .trust {
        padding: 40px 10px !important;
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .trust .section-title {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 30px !important;
        padding: 0 10px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        text-align: center !important;
    }
    
    .trust .section-subtitle,
    .trust .section-header .section-subtitle {
        display: none !important;
    }
    
    .trust-content {
        padding: 0 5px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        min-height: auto !important;
    }
    
    .trust-description,
    .trust .trust-description {
        display: none !important;
    }
    
    .trust-logos {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 5px !important;
        box-sizing: border-box !important;
        margin: 0 auto !important;
    }
    
    .trust-logos-img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
        min-height: 200px !important;
    }
    
    /* Исправления для раздела "ЛИЦЕНЗИИ И СЕРТИФИКАТЫ" */
    .licenses {
        padding: 60px 10px !important;
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .licenses .section-title {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        padding: 0 10px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        text-align: center !important;
    }
    
    .licenses-content {
        padding: 0 10px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .licenses-documents {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .document-grid {
        padding: 0 10px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .document-preview {
        padding: 20px 15px !important;
        min-height: 160px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .document-title {
        font-size: 14px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .document-content p {
        font-size: 12px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Исправления для раздела "Контакты" */
    .contacts {
        padding: 60px 10px !important;
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .contacts .section-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        padding: 0 10px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        text-align: center !important;
    }
    
    .contacts-content {
        padding: 0 10px !important;
        gap: 40px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .contacts-info {
        gap: 25px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .contact-item {
        gap: 15px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .contact-icon {
        width: 50px !important;
        height: 50px !important;
        flex-shrink: 0 !important;
    }
    
    .contact-icon svg {
        width: 22px !important;
        height: 22px !important;
    }
    
    .contact-details h4 {
        font-size: 16px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .contact-details p,
    .contact-details a {
        font-size: 14px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .contact-form {
        padding: 25px 20px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px !important;
        font-size: 14px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* Дополнительные исправления для очень маленьких экранов */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem !important;
        padding: 0 8px !important;
    }
    
    .section-subtitle {
        font-size: 14px !important;
        padding: 0 8px !important;
    }
    
    /* Преимущества компании */
    .advantages {
        padding: 40px 8px !important;
    }
    
    .advantages .section-title {
        font-size: 1.6rem !important;
        padding: 0 8px !important;
    }
    
    .advantages-grid {
        padding: 0 8px !important;
    }
    
    .advantage-item {
        padding: 15px 12px !important;
    }
    
    .advantage-image {
        width: 60px !important;
        height: 60px !important;
    }
    
    .advantage-item h4 {
        font-size: 14px !important;
    }
    
    .advantage-item p {
        font-size: 12px !important;
    }
    
    /* Нам доверяют */
    .trust {
        padding: 30px 5px !important;
    }
    
    .trust .section-title {
        font-size: 1.8rem !important;
        padding: 0 5px !important;
        margin-bottom: 25px !important;
        text-align: center !important;
    }
    
    .trust .section-subtitle,
    .trust .section-header .section-subtitle {
        display: none !important;
    }
    
    .trust-content {
        padding: 0 2px !important;
    }
    
    .trust-description,
    .trust .trust-description {
        display: none !important;
    }
    
    .trust-logos {
        padding: 0 2px !important;
    }
    
    .trust-logos-img {
        max-width: 100% !important;
        min-height: 150px !important;
    }
    
    /* Лицензии */
    .licenses {
        padding: 40px 8px !important;
    }
    
    .licenses .section-title {
        font-size: 1.4rem !important;
        padding: 0 8px !important;
    }
    
    .licenses-content {
        padding: 0 8px !important;
    }
    
    .document-grid {
        padding: 0 8px !important;
    }
    
    .document-preview {
        padding: 15px 12px !important;
        min-height: 140px !important;
    }
    
    .document-title {
        font-size: 13px !important;
    }
    
    .document-content p {
        font-size: 11px !important;
    }
    
    /* Контакты */
    .contacts {
        padding: 40px 8px !important;
    }
    
    .contacts .section-title {
        font-size: 1.6rem !important;
        padding: 0 8px !important;
    }
    
    .contacts-content {
        padding: 0 8px !important;
        gap: 30px !important;
    }
    
    .contacts-info {
        gap: 20px !important;
    }
    
    .contact-item {
        gap: 12px !important;
    }
    
    .contact-icon {
        width: 45px !important;
        height: 45px !important;
    }
    
    .contact-icon svg {
        width: 20px !important;
        height: 20px !important;
    }
    
    .contact-details h4 {
        font-size: 15px !important;
    }
    
    .contact-details p,
    .contact-details a {
        font-size: 13px !important;
    }
    
    .contact-form {
        padding: 20px 15px !important;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px !important;
        font-size: 13px !important;
    }
}

