.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 768px) {
    .container {
        width: 100%;
    }
}
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}
@media (min-width: 1400px) {
    .container {
        width: 1400px;
    }
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.woff2') format('woff2'), url('../fonts/Poppins-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Semibold.woff2') format('woff2'), url('../fonts/Poppins-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.woff2') format('woff2'), url('../fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'), url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2'), url('../fonts/Montserrat-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Semibold.woff2') format('woff2'), url('../fonts/Montserrat-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2'), url('../fonts/Montserrat-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}
body {
    margin: 0;
    height: 100%;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
}
p {
    margin: 0;
    margin-bottom: 15px;
}

/* Header Styles */
#header {
    width: 100%;
    padding: 30px 0;
    position: relative;
    z-index: 100;
}
#header .logo img {
    max-width: 200px;
    height: auto;
}
#header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#header #menu {
    font-family: 'Montserrat';
    font-weight: 600;
    display: flex;
    padding: 0;
    list-style: none;
}
#header #menu li {
    margin: 0;
    padding: 5px 15px;
}
#header #menu a {
    color: #1b1b1b;
    text-decoration: none;
    font-size: 1.3em;
    transition: color 0.3s;
}
#header #menu a:hover {
    color: #2b388f;
}

/* Banner Styles */
#banner {
    position: relative;
    z-index: 1;
    padding: 0px 0;
}
#banner .container {
    text-align: center;
    font-family: 'Poppins';
    font-weight: 600 !important;
}
#banner .container h3 {
    color: #1b1b1b;
    font-size: 4.68em;
}
#banner .container h2 {
    color: #2b388f;
    font-size: 10.37em;
    margin-bottom: 35px;
    line-height: 1.1;
}
#banner .container a {
    background: #2b388f;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Montserrat';
    padding: 14px 30px 11px;
    font-size: 2.2em;
    border-radius: 50px;
    display: inline-block;
    transition: background 0.3s;
}
#banner .container a:hover {
    background: #1e2769;
}
#banner .container #banner-image {
    text-align: center;
    margin-top: 75px;
}
#banner .container #banner-image img {
    max-width: 100%;
    height: auto;
}

/* Services Styles */
#services {
    position: relative;
    margin-top: -150px;
    z-index: 2;
    padding: 200px 0 90px;
}
#services .container {
    color: #fff;
    text-align: center;
    background: #191919;
    border-radius: 55px;
    padding: 60px 30px 90px;
}
#services .container > h2 {
    font-family: 'Poppins';
    font-size: 4.68em;
    margin-bottom: 20px;
}
#services .container p {
    font-family: 'Montserrat';
    font-size: 1.85em;
    margin-bottom: 60px;
}
#services .container #services-images {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
}
#services .container #services-images .service {
    width: calc(100% / 3 - 55px);
    min-height: 400px;
    background-size: cover !important;
    background-position: center center !important;
    border-radius: 40px;
    position: relative;
    box-shadow: inset 1px -57px 43px -10px #000000;
    cursor: pointer;
    transition: transform 0.3s;
}
#services .container #services-images .service:hover {
    transform: translateY(-10px);
}
#services .container #services-images .service h2 {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%,0);
    font-family: 'Montserrat';
    font-weight: bold;
    font-size: 2.2em;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.procurement {
    background: #2b388f url('../img/procurement.jpg') no-repeat center center;
}
.freight {
    background: #2b388f url('../img/freight.jpg') no-repeat center center;
}
.sourcing {
    background: #2b388f url('../img/werehousing.jpg') no-repeat center center;
}

/* About Us Styles */
#about-us, #why-choose-us {
    padding: 100px 0;
}
#about-us .container, #why-choose-us .container {
    display: flex;
    align-items: flex-start;
}
#about-us .container h2, #why-choose-us .container h2 {
    font-family: 'Poppins';
    font-size: 4.68em;
    min-width: 470px;
    margin-right: 50px;
    line-height: 1.2;
}
#about-us .container .about-text, #why-choose-us .container .about-text {
    flex: 1 1 0;
}
#about-us .container .about-text p, #why-choose-us .container .about-text p {
    line-height: 1.9;
    font-family: 'Montserrat';
    font-size: 1.8em;
    margin-bottom: 55px;
}

/* Map Styles */
#mapa {
    padding: 50px 0;
}
#mapa .container img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Quote Styles */
#quote {
   background: url(../img/container.jpg);
   background-repeat: no-repeat;
   background-position: 50vw center;
   margin-bottom: 100px;
    
}
#quote .container {
    display: flex;
    flex-wrap: wrap;
}
#quote .container h2 {
    font-family: 'Poppins';
    font-size: 4.68em;
    width: 100%;
    margin-bottom: 40px;
    line-height: 1.2;
}
#quote .container #contact-form {
    max-width: 650px;
    width: 100%;
}
#quote .container #contact-form .two {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
#quote .container #contact-form .two > label {
    width: calc(50% - 7.5px);
}
#quote .container #contact-form label input {
    width: 100%;
    background: #f2f2f2;
    border-radius: 20px;
    border: none;
    font-family: 'Montserrat';
    font-weight: 400;
    padding: 12px 20px;
    font-size: 1.2em;
    margin-bottom: 25px;
    color: #7a7a7a;
    transition: background 0.3s;
}
#quote .container #contact-form label input:focus {
    background: #e6e6e6;
    outline: none;
}
#quote .container #contact-form textarea {
    width: 100%;
    background: #f2f2f2;
    border-radius: 20px;
    border: none;
    resize: none;
    height: 200px;
    font-family: 'Montserrat';
    font-weight: 400;
    color: #7a7a7a;
    padding: 12px 20px;
    font-size: 1.2em;
    margin-bottom: 25px;
    transition: background 0.3s;
}
#quote .container #contact-form textarea:focus {
    background: #e6e6e6;
    outline: none;
}
#quote .container #contact-form input[type="submit"] {
    background: #2b388f;
    color: #fff;
    border-radius: 40px;
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 1.8em;
    padding: 15px 50px 12px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}
#quote .container #contact-form input[type="submit"]:hover {
    background: #1e2769;
}

/* Footer Styles */
#footer {
    background: #000;
    padding: 60px 0;
    color: #fff;
}
#footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
#footer .container .col {
    width: calc(100% / 3);
    font-family: 'Montserrat';
    font-weight: 600;
}
#footer .container .col:first-child img {
    max-width: 200px;
    margin-bottom: 20px;
}
#footer .container .col:last-child {
    text-align: right;
}
#footer .contact {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
#footer .contact img {
    margin-right: 15px;
}
#footer .contact div p {
    margin-bottom: 5px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}
.background-modal {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container-modal {
    max-width: 650px;
    background: #1e1e1e;
    color: #fff;
    text-align: center;
    padding: 45px;
    border-radius: 40px;
    font-family: 'Montserrat';
    position: relative;
    margin: 20px;
}
.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 30px;
    cursor: pointer;
    color: #fff;
}
.container-modal h3 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.container-modal p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
}
.container-modal h4 {
    font-size: 1.8em;
    margin-bottom: 20px;
}
.container-modal ul {
    list-style: none;
    padding: 0;
    text-align: left;
}
.container-modal ul li {
    font-size: 1.2em;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}
.container-modal ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2b388f;
}
#logos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
#logos-container .logo {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
}
#logos-container .logo img {
    max-width: 100%;
    max-height: 100%;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    #banner .container h2 {
        font-size: 8em;
    }
    #services .container #services-images .service {
        width: calc(50% - 20px);
        margin-bottom: 20px;
    }
}

@media (max-width: 992px) {
    #header .container {
        flex-direction: column;
    }
    #header #menu {
        margin-top: 20px;
        width: 100%;
        justify-content: center;
    }
    #banner .container h2 {
        font-size: 6em;
    }
    #banner .container h3 {
        font-size: 3.5em;
    }
    #about-us .container, #why-choose-us .container {
        flex-direction: column;
    }
    #about-us .container h2, #why-choose-us .container h2 {
        min-width: auto;
        margin-right: 0;
        margin-bottom: 30px;
    }
    #footer .container {
        flex-direction: column;
    }
    #footer .container .col {
        width: 100%;
        margin-bottom: 30px;
        text-align: center !important;
    }
    #footer .contact {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    #banner .container h2 {
        font-size: 4em;
    }
    #banner .container h3 {
        font-size: 2.5em;
    }
    #banner .container a {
        font-size: 1.5em;
    }
    #services {
        margin-top: -100px;
        padding: 150px 0 50px;
    }
    #services .container #services-images .service {
        width: 100%;
    }
    #quote .container #contact-form .two {
        flex-direction: column;
    }
    #quote .container #contact-form .two > label {
        width: 100%;
    }
    .container-modal {
        padding: 30px 20px;
    }
}.map-wrapper {  position: relative;  display: inline-block;  width: 100%;}#world-map {  width: 100%;  height: auto;  display: block;}#map-canvas {  position: absolute;  top: 0;  left: 0;  width: 100%;  height: 100%;  pointer-events: none;}.glow-point {  position: absolute;  width: 12px;  height: 12px;  background: #000;  border-radius: 50%;  box-shadow: 0 0 8px 3px rgba(0, 0, 0, 0.6);  transform: translate(-50%, -50%);  animation: glow 1.5s infinite alternate;}@keyframes glow {  from { opacity: 0.6; transform: translate(-50%, -50%) scale(0.9); }  to { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }}#map-banner {  position: absolute;  top: 50%;  left: 50%;  transform: translate(-50%, -50%);  background: rgba(0, 0, 0, 0.85);  color: #fff;  padding: 15px 25px;  border-radius: 10px;  font-size: 1.3em;  letter-spacing: 1px;  opacity: 0;  transition: opacity 1s ease-in-out;}