/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #ec1313;
    --color-dark: #111827;
    --color-dark-gray: #1f2937;
    --color-gray: #4b5563;
    --color-light-gray: #6b7280;
    --color-lighter-gray: #9ca3af;
    --color-bg-light: #f4f4f5;
    --color-bg-white: #ffffff;
    --color-border: #e5e7eb;
    --color-border-light: #f3f4f6;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-dark);
    background-color: var(--color-bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 260px;
}

/* Top Bar */
.top-bar {
    background-color: var(--color-dark-gray);
    border-bottom: 1px solid #374151;
    height: 33px;
    display: flex;
    align-items: center;
}

.top-bar-content {
    display: flex;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d1d5db;
    font-size: 12px;
}

.top-bar-item .icon {
    width: 16px;
    height: 20px;
}

.top-bar-links {
    margin-left: auto;
    display: flex;
    gap: 24px;
}

.top-bar-links a {
    color: #d1d5db;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar-links a:hover {
    color: var(--color-bg-white);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    height: 80px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
}

.header .container {
    height: 100%;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 20px;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: auto;
    max-height: 90px;
    width: auto;
    object-fit: contain;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transition: none !important;
}

/* Ensure logo is always visible on all pages */
img.logo-img {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.logo-text {
    font-size: 20px;
    font-weight: 400;
    color: var(--color-dark);
    letter-spacing: -0.5px;
}

.logo-text strong {
    font-weight: 900;
    color: var(--color-dark);
}

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-gray);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-dark);
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
}

.header-contact {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
    min-width: 0;
    flex-shrink: 1;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--color-dark);
    white-space: nowrap;
    line-height: 1.4;
}

.header-contact-item .contact-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    flex-shrink: 0;
}

.header-contact-item span {
    font-size: 12px;
    color: var(--color-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-label {
    font-size: 12px;
    color: var(--color-light-gray);
    margin-bottom: 4px;
}

.contact-phone {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    box-shadow: 0px 10px 15px -3px rgba(236, 19, 19, 0.25), 0px 4px 6px -4px rgba(236, 19, 19, 0.25);
}

.btn-primary:hover {
    background-color: #d01111;
    transform: translateY(-1px);
    box-shadow: 0px 12px 20px -3px rgba(236, 19, 19, 0.3), 0px 6px 8px -4px rgba(236, 19, 19, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(2px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero {
    position: relative;
    height: 1020px;
    background-color: var(--color-dark);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .container {
    width: 100%;
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
}

.hero-layout {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    min-height: 780px;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #111827 0%, #1a1a1a 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('icons/bg.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #111827 0%, rgba(17, 24, 39, 0.1) 50%, rgba(17, 24, 39, 0) 100%),
                linear-gradient(0deg, #111827 0%, rgba(17, 24, 39, 0) 50%, rgba(17, 24, 39, 0) 100%);
}

.hero-content {
    max-width: 640px;
    padding: 80px 0;
    justify-self: start;
    position: relative;
    z-index: 14;
}

.hero-brand {
    position: absolute;
    left: 800px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    pointer-events: none;
    z-index: 11;
}

.hero-brand-logo {
    width: 800px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.45));
    opacity: 0;
    transform: translateX(72px) scale(0.96);
    animation: heroLogoIn 0.9s ease-out 0.2s forwards;
}

@keyframes heroLogoIn {
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    margin-bottom: 40px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.hero-badge span:last-child {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 72px;
    color: white;
    margin-bottom: 32px;
    letter-spacing: -1.8px;
}

.gradient-text {
    background: linear-gradient(90deg, #ec1313 0%, #f87171 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    font-weight: 300;
    line-height: 29.25px;
    color: #9ca3af;
    margin-bottom: 48px;
    max-width: 653px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 80px;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
    opacity: 0.5;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.scroll-indicator svg {
    transform: rotate(180deg);
}

/* Statistics Section */
.statistics {
    background-color: var(--color-primary);
    height: 130px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.statistics .container {
    height: 100%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    height: 100%;
    align-items: stretch;
}

.stat-item {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 20px;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: white;
    line-height: 40px;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

/* Services Section */
.services {
    position: relative;
    background-color: #1a1a1a;
    padding: 112px 0;
    overflow: hidden;
}

.services-background {
    position: absolute;
    inset: 0;
    background: #1a1a1a;
}

.services-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://www.figma.com/api/mcp/asset/6278a74f-1f0c-482e-a821-f17a7a3fb725');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.services-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.9) 0%, rgba(17, 17, 17, 0.95) 50%, rgba(26, 26, 26, 0.8) 100%);
}

.services .container {
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-divider {
    width: 96px;
    height: 4px;
    background-color: var(--color-primary);
    border-radius: 9999px;
    margin: 0 auto 24px;
}

.section-title {
    font-size: 60px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.service-card {
    text-align: center;
    padding: 24px;
}

.service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(236, 19, 19, 0.2);
    border-radius: 50%;
    filter: blur(12px);
    z-index: -1;
}

.service-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.service-description {
    font-size: 14px;
    line-height: 22.75px;
    color: #9ca3af;
}

/* Sectoral Solutions Section */
.sectoral-solutions {
    background-color: white;
    padding: 96px 0;
    position: relative;
}

.sectoral-solutions .container {
    max-width: 1680px;
    padding: 0 40px;
}

.sectoral-solutions::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://www.figma.com/api/mcp/asset/7c651e4f-3acb-47d0-a8bc-8be583d64488') top left/67px 100px;
    opacity: 0.05;
    pointer-events: none;
}

.section-header-center {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--color-border-light);
    border: 1px solid var(--color-border);
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
}

.section-title-large {
    font-size: 48px;
    font-weight: 900;
    color: var(--color-dark);
    letter-spacing: -1.2px;
    margin-bottom: 24px;
}

.text-red {
    color: var(--color-primary);
}

.section-description {
    font-size: 18px;
    line-height: 29.25px;
    color: var(--color-gray);
    max-width: 753px;
    margin: 0 auto;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.sector-card {
    background: linear-gradient(145deg, #ffffff 0%, #f5f5f7 100%);
    border: 1px solid var(--color-border-light);
    border-radius: 20px;
    padding: 28px 30px;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sector-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.15);
}

.sector-icon-wrapper {
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.sector-icon-bg {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, rgba(236, 19, 19, 0.12) 0%, rgba(236, 19, 19, 0.06) 100%);
    border: 1px solid rgba(236, 19, 19, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 8px 18px rgba(236, 19, 19, 0.12);
}

.sector-icon-main {
    width: 120px;
    height: 120px;
    object-fit: contain;
    position: absolute;
    right: 10px;
    top: -20px;
    bottom: 8px;
    opacity: 0.12;
    z-index: 1;
    pointer-events: none;
}

.sector-icon-small {
    width: 40px;
    height: 40px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.sector-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
    line-height: 32px;
}

.sector-description {
    font-size: 16px;
    line-height: 24px;
    color: var(--color-light-gray);
    margin-bottom: 24px;
    flex-grow: 1;
}

.sector-divider {
    width: 48px;
    height: 4px;
    background-color: var(--color-border);
    border-radius: 9999px;
}

/* About Section */
.about {
    background-color: white;
    padding: 96px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    height: 602px;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:url('icons/yol1.jpg');
    background-size: cover;
    background-position: center;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-badge {
    background: rgba(255, 255, 255, 0.9);
    padding: 24px 32px;
    border-radius: 8px;
    text-align: center;
    transform: rotate(-1deg);
    box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.05);
}

.company-name {
    font-size: 24px;
    font-weight: 900;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: -1.2px;
    margin-bottom: 4px;
}

.company-subtitle {
    font-size: 10px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-badge {
    position: absolute;
    bottom: -32px;
    right: -32px;
    background: white;
    border-left: 4px solid var(--color-primary);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
   
}


.trust-users {
    display: flex;
    gap: 8px; /* ensure avatars do not overlap */
    margin-bottom: 16px;
}

.user-avatar {
    width: 60px;
    height: 40px; /* keep square */
    
    border: 2px solid white;
   
    margin-left: 0; /* no overlap */
}

.user-avatar img {
    width: 90%;
    height: 100%;
   
    object-fit: cover;
}

.user-avatar:first-child {
    margin-left: 0;
}

.user-avatar-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: var(--color-border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-gray);
    margin-left: -8px;
}

.trust-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.trust-subtitle {
    font-size: 12px;
    color: var(--color-light-gray);
}

.about-text {
    padding-left: 32px;
}

.section-badge-small {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2.8px;
    margin-bottom: 16px;
}

.about-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    color: var(--color-dark);
    margin-bottom: 24px;
}

.about-description {
    font-size: 18px;
    line-height: 29.25px;
    color: var(--color-gray);
    margin-bottom: 32px;
}

.features-list {
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-border-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.feature-description {
    font-size: 14px;
    color: var(--color-gray);
}

.references-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    text-decoration: none;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 4px;
    transition: color 0.3s;
}

.references-link:hover {
    color: var(--color-primary);
}

/* CTA Section */
.cta {
    background-color: var(--color-bg-light);
    padding: 72px 0;
}

.cta .container {
    padding: 0 20px;
}

.cta-box {
    background-color: var(--color-dark-gray);
    border-radius: 16px;
    padding: 68px 72px;
    min-height: 320px;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://www.figma.com/api/mcp/asset/27315437-22f1-46fb-b635-b76f861f1c64') center/cover;
    opacity: 0.1;
    mix-blend-mode: overlay;
}

.cta-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 100%);
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
}

.cta-title {
    font-size: 60px;
    font-weight: 900;
    color: white;
    line-height: 1.05;
    margin-bottom: 24px;
}

.cta-description {
    font-size: 18px;
    line-height: 28px;
    color: #d1d5db;
    margin-bottom: 36px;
    max-width: 760px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.cta-icon {
    position: absolute;
    right: 88px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

.truck-icon {
    width: 178px;
    height: 178px;
    border: 4px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: rgba(31, 41, 55, 0.45);
}

.truck-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid rgba(236, 19, 19, 0.45);
    border-radius: 50%;
}

.truck-icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(236, 19, 19, 0.35));
    z-index: 1;
}

.cta-phone-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Footer */
.footer {
    background-color: #0f0f11;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 64px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 48px;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo-img {
    height: auto;
    max-height: 80px;
    width: auto;
    object-fit: contain;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.logo-bars {
    display: flex;
    gap: 8px;
    margin: 8px 0;
}

.bar {
    width: 4px;
    height: 60%;
    background-color: var(--color-gray);
    border-radius: 1px;
}

.bar.red {
    height: 100%;
    background-color: var(--color-primary);
}

.logo-subtitle {
    margin-top: 8px;
}

.subtitle-line {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.55px;
}

.subtitle-line-small {
    font-size: 9px;
    font-weight: 700;
    color: #d1d5db;
    text-transform: uppercase;
    letter-spacing: 0.9px;
}

.subtitle-line-smallest {
    font-size: 8px;
    font-weight: 500;
    color: var(--color-light-gray);
    text-transform: uppercase;
    letter-spacing: 1.6px;
}

.footer-description {
    font-size: 14px;
    line-height: 22.75px;
    color: var(--color-light-gray);
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-lighter-gray);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 16px;
    position: relative;
    padding-left: 12px;
}

.footer-links li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: var(--color-gray);
    border-radius: 50%;
}

.footer-links a {
    color: var(--color-lighter-gray);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    object-fit: contain;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.footer-contact svg {
    width: 24px;
    height: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact span {
    color: var(--color-lighter-gray);
    font-size: 14px;
    line-height: 20px;
}

.footer-contact li:nth-child(2) span {
    color: white;
    font-size: 18px;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 12px;
    color: var(--color-gray);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 12px;
    color: var(--color-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 1440px) {
    .container {
        padding: 0 120px;
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 80px;
    }

    .cta-box {
        padding: 56px;
    }

    .cta-title {
        font-size: 48px;
    }

    .cta-icon {
        right: 56px;
    }
    
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sector-card {
        min-height: 280px;
        padding: 32px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stat-item:nth-child(4),
    .stat-item:nth-child(5) {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px;
        margin-top: 20px;
    }
    
    .header-contact {
        display: none;
    }

    .hero .container {
        padding-left: 28px;
        padding-right: 28px;
    }

    .hero-brand {
        right: -220px;
    }

    .hero-brand-logo {
        width: 620px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .cta .container {
        padding: 0 16px;
    }

    .cta-box {
        padding: 36px 24px;
        min-height: auto;
    }

    .cta-title {
        font-size: 38px;
    }

    .cta-description {
        font-size: 16px;
        line-height: 26px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .cta-icon {
        display: none;
    }
    
    .hero-title {
        font-size: 48px;
        line-height: 56px;
    }

    .hero-content {
        padding: 64px 0;
    }

    .hero-brand {
        display: none;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-title-large {
        font-size: 36px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-image {
        height: 360px;
    }

    .about-image-wrapper {
        overflow: hidden;
    }

    .trust-badge {
        position: static;
        width: 100%;
        margin-top: 12px;
        padding: 16px;
        border-radius: 12px;
        box-shadow: 0px 10px 20px -8px rgba(0, 0, 0, 0.25);
    }

    .trust-users {
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 12px;
    }

    .user-avatar {
        width: 52px;
        height: 34px;
        border-width: 1px;
    }

    .user-avatar img {
        width: 100%;
        object-fit: contain;
    }

    .user-avatar-more {
        margin-left: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sectors-grid {
        grid-template-columns: 1fr;
    }
    
    .sector-card {
        min-height: auto;
        padding: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .statistics {
        height: auto !important;
    }

    .statistics .container {
        height: auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        height: auto !important;
    }

    .stat-item {
        height: auto;
        min-height: 118px;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-item:nth-child(2n) {
        border-right: none;
    }

    .stat-item:nth-last-child(-n+1),
    .stat-item:nth-last-child(-n+2):nth-child(odd) {
        border-bottom: none;
    }
    
    .header-content {
        position: relative;
    }

    .mobile-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border: 1px solid #e5e7eb;
        border-radius: 10px;
        background: #ffffff;
        font-size: 24px;
        line-height: 1;
        cursor: pointer;
        color: #111827;
        margin-left: auto;
    }

    .header .nav {
        display: none;
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        padding: 12px;
        z-index: 1200;
    }

    .header .nav.mobile-open {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .header .nav.mobile-open .nav-link {
        padding: 10px 8px;
    }

    .header .btn.btn-primary {
        display: none;
    }
    
    .header-contact {
        display: none;
    }
}
