@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
     font-family: 'Poppins', sans-serif;
}

.top-bar,
.main-nav,
.main-nav a,
.dropdown-toggle,
.top-contact,
.top-social {
     font-family: 'Poppins', sans-serif;
}


/* ===========================
   RESET
=========================== */

:root{
    --green:#60c1ba;
    --dark-green:#0e8077;
    --deep:#1d1f20;
    --text:#222;
    --muted:#666;
    --light:#f8f8f8;
    --accent:#0cb740;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
     font-family: 'Poppins', sans-serif;
    color:var(--text);
    background:#fff;
    line-height:1.5;
}

img{
    display:block;
    max-width:100%;
}

a{
    color:inherit;
    text-decoration:none;
}

button,
input,
textarea{
    font:inherit;
}

.container{
    width:min(1320px, calc(100% - 36px));
    margin-inline:auto;
}

.section-space{
    padding:100px 0;
}


/* ===========================
   TOP BAR
=========================== */

.top-bar {
    background: #67c4bc;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.top-bar-inner{
    min-height:40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.top-contact{
    display:flex;
    align-items:center;
    gap:22px;
}

.top-contact a,
.top-contact span{
    opacity:.96;
}

.top-social{
    display:flex;
    align-items:center;
    gap:15px;
    font-size: 18px;
}

.top-social a:hover{
    opacity:.7;
}


/* ===========================
   HEADER / NAV
=========================== */

.site-header{
    position:relative;
    z-index:1000;
}

.main-nav-wrap{
    background:#fff;
    box-shadow:0 1px 7px rgba(0,0,0,.05);
}

.main-nav-inner{
    min-height:74px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.logo img{
    width:270px;
    height:auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 16px;
    font-weight: 500;
}

.main-nav > a,
.dropdown-toggle{
    position:relative;
    color:#161616;
    background:none;
    border:0;
    padding:28px 0 25px;
    cursor:pointer;
}

.main-nav > a::after,
.dropdown-toggle::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:18px;
    height:2px;
    background:#1b8a7e;
    transform:scaleX(0);
    transform-origin:left;
    transition:.22s ease;
}

.main-nav > a:hover::after,
.main-nav > a.active::after,
.nav-dropdown:hover .dropdown-toggle::after{
    transform:scaleX(1);
}

.nav-dropdown{
    position:relative;
}

.dropdown-toggle span{
    font-size:16px;
    margin-left:3px;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:-18px;
    width:235px;
    padding:9px 0;
    background:#fff;
    border-top:3px solid #67c4bc;
    box-shadow:0 10px 30px rgba(0,0,0,.16);
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.2s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu a{
    display:block;
    padding:11px 17px;
    font-size:16px;
    border-bottom:1px solid #eee;
}

.dropdown-menu a:last-child{
    border-bottom:0;
}

.dropdown-menu a:hover{
    background:#f4f7f7;
    color:#178b81;
}

.menu-toggle{
    display:none;
}


/* ===========================
   HERO
=========================== */

.hero-section{
    min-height:800px;
    background-size:cover;
    background-position:center center;
    display:flex;
    align-items:center;
}

.hero-inner{
    display:flex;
    align-items:center;
}

.hero-content{
    max-width:670px;
    color:#fff;
    margin-left:8px;
}

.hero-content h1{
    margin:0;
    font-size:105px;
    line-height:.98;
    font-weight:700;
    letter-spacing:-1.5px;
}

.hero-content p{
    margin:18px 0 22px;
    font-size:35px;
    line-height:1.25;
}

.hero-buttons{
    display:flex;
    gap:12px;
}

.btn{
    min-width:112px;
    padding:10px 17px;
    border-radius:20px;
    font-size:22px;
    text-align:center;
    transition:.2s ease;
}

.btn.primary{
    background:#68c7bf;
    color:#fff;
}

.btn.secondary{
    background:rgba(255,255,255,.26);
    color:#fff;
}

.btn:hover{
    transform:translateY(-2px);
    filter:brightness(.97);
}


/* ===========================
   MAIN SERVICE CARDS
=========================== */

.service-cards{
    max-width:1200px;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:14px;
}

.service-card{
    text-align:center;
}

.service-card img{
    width:100%;
    aspect-ratio:1.6/1;
    object-fit:cover;
    border-radius:8px;
}

.service-card h3{
    margin:15px 0 8px;
    color:#12998e;
    font-size:32px;
}

.service-card p{
    margin:0;
    font-size:16px;
    color:#666;
    line-height:1.65;
}


/* ===========================
   ABOUT
=========================== */

.about-grid{
    max-width:1200px;
    display:grid;
    grid-template-columns:1fr 1.04fr;
    gap:62px;
    align-items:center;
}

.section-kicker{
    color:#1a9b8f;
    font-size:20px;
    font-weight:700;
}

.about-copy h2 {
    margin: 0 0 18px;
    font-size: 65px;
    font-weight: 700;
    line-height: 1.02;
}

.about-copy p{
    margin:0 0 12px;
    font-size:18px;
    line-height:1.55;
}

.about-image img{
    width:100%;
    border-radius:5px;
}


/* ===========================
   SPECIAL SERVICES
=========================== */

.special-services{
    position:relative;
    overflow:visible;
    padding:54px 0 64px;
    color:#fff;
    background:
        radial-gradient(circle at 20% 25%, rgba(255,255,255,.035), transparent 2px),
        linear-gradient(#242627,#1f2122);
    background-size:16px 16px, auto;
}

.special-ship{
    position:absolute;
    top:-62px;
    left:calc(50% - 420px);
    width:220px;
    z-index:2;
    pointer-events:none;
}

.special-heading-grid{
    max-width:1200px;
    margin:0 auto 25px;
    display:grid;
    grid-template-columns:300px 1fr;
    gap:55px;
    align-items:start;
}

.special-heading-grid h2{
    margin:0;
    font-size:45px;
    line-height:.95;
    font-weight:600;
}

.special-heading-grid h2 span{
    font-weight:400;
}

.special-intro{
    margin:6px 0 0;
    padding-left:17px;
    border-left:5px solid #13ae9c;
    font-size:18px;
    line-height:1.45;
}

.special-services-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    row-gap:34px;
}

.special-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    gap:10px;
    text-align:center;
    font-size:24px;
}

.special-item img{
    width:100px;
    height:100px;
    object-fit:contain;
    transition:.25s ease;
}

.special-item:hover img{
    transform:translateY(-4px) scale(1.04);
}


/* ===========================
   MISSION / VISION
=========================== */

.mission-grid{
    max-width:1200px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
}

.mission-grid h2{
    margin:0 0 13px;
    font-size:55px;
}

.mission-grid p{
    margin:0;
    font-size:16px;
    line-height:1.75;
}


/* ===========================
   INDUSTRIES
=========================== */

.industries-section{
    padding:44px 0 54px;
    background-size:cover;
    background-position:center;
    color:#fff;
}

.industries-title{
    margin:0 0 28px;
    text-align:center;
    font-size:65px;
    font-weight:600;
}

.industries-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    row-gap:50px;
}

.industry-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
    font-size:35px;
}

.industry-icon{
    width:100px;
    height:100px;
    
    display:grid;
    place-items:center;
    transition:.22s ease;
}

.industry-icon img{
    width:100px;
    height:100px;
    object-fit:contain;
}

.industry-item:hover .industry-icon{
    transform:translateY(-4px) scale(1.04);
}


/* ===========================
   QUOTE
=========================== */

.quote-grid{
    max-width:1200px;
    display:grid;
    grid-template-columns:1.42fr .58fr;
    gap:25px;
    align-items:start;
}

.quote-form{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px 18px;
}

.form-grid{
    grid-column:1 / -1;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:11px 18px;
}

.quote-form label span,
.freight-field legend{
    display:block;
    margin-bottom:5px;
    font-size:16px;
    color:#222;
}

.quote-form em{
    color:#e30000;
    font-style:normal;
}

.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form input[type="number"],
.quote-form textarea{
    width:100%;
    border:1px solid #e5e5e5;
    border-radius:6px;
    background:#fff;
    padding:8px 9px;
    font-size:16px;
    outline:none;
}

.quote-form input:focus,
.quote-form textarea:focus{
    border-color:#72c8c1;
    box-shadow:0 0 0 2px rgba(114,200,193,.12);
}

.freight-field{
    border:0;
    padding:0;
    margin:0;
    display:flex;
    align-items:center;
    gap:10px;
}

.freight-field legend{
    width:100%;
}

.freight-field label{
    font-size:16px;
    display:flex;
    align-items:center;
    gap:4px;
}

.weight-field{
    display:block;
}

.full-field{
    grid-column:1 / -1;
}

.full-field textarea{
    min-height:86px;
    resize:vertical;
}

.submit-btn{
    grid-column:1 / -1;
    border:0;
    background:#0f877e;
    color:#fff;
    height:40px;
    border-radius:2px;
    cursor:pointer;
    font-size:18px;
}

.submit-btn:hover{
    background:#0b746c;
}

.quote-side{
    padding-left:10px;
}

.quote-side h2{
    margin:0;
    font-size:35px;
    font-weight:400;
}

.quote-line{
    display:block;
    width:145px;
    height:3px;
    background:#0ca494;
    margin:18px 0;
}

.quote-side p{
    font-size:18px;
    line-height:1.65;
    margin:0 0 12px;
}

.quote-side img{
    width:270px;
    margin:6px auto 0;
}

.honeypot{
    position:absolute!important;
    left:-9999px!important;
}


/* ===========================
   FOOTER
=========================== */

.site-footer{
    background:#fff;
    color:#222;
}

.footer-accent{
    height:9px;
    border-top:4px solid #0d1b1a;
    background:#0f9d92;
}

.footer-grid{
    padding:45px 0 38px;
    display:grid;
    grid-template-columns:1.4fr .8fr 1.05fr 1.2fr;
    gap:38px;
}

.footer-logo{
    width:270px;
    margin-bottom:18px;
}

.footer-about p{
    max-width:250px;
    font-size:16px;
    line-height:1.65;
    margin:0 0 16px;
}

.footer-grid h3{
    margin:0 0 16px;
    font-size:22px;
}

.footer-grid ul{
    margin:0;
    padding:0;
    list-style:none;
}

.footer-grid li{
    margin-bottom:8px;
    font-size:16px;
    font-weight: 600px;
    line-height:1.45;
}

.footer-grid a:hover{
    color:#0e978c;
}

.footer-social{
    display:flex;
    gap:13px;
    font-size:20px;
}

.contact-list li{
    margin-bottom:12px;
}

.copyright{
    min-height:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:7px 15px;
    background:#54b8b0;
    color:#fff;
    font-size:16px;
}


/* ===========================
   WHATSAPP
=========================== */

.whatsapp-float{
    position:fixed;
    right:17px;
    bottom:15px;
    width:75px;
    height:75px;
    border-radius:50%;
    display:grid;
    place-items:center;
    background:#29cf61;
    color:#fff;
    border:2px solid #fff;
    box-shadow:0 3px 12px rgba(0,0,0,.2);
    z-index:999;
    font-size:32px;
}


/* ===========================
   SCROLL REVEAL
=========================== */

.reveal-up,
.reveal-left,
.reveal-right{
    opacity:0;
    transition:
        opacity .7s ease,
        transform .7s ease;
    will-change:transform,opacity;
}

.reveal-up{
    transform:translateY(35px);
}

.reveal-left{
    transform:translateX(-35px);
}

.reveal-right{
    transform:translateX(35px);
}

.is-visible{
    opacity:1!important;
    transform:none!important;
}


/* ===========================
   RESPONSIVE
=========================== */

/* =========================================
   RESPONSIVE FIXES
   Add this at the END of style.css
========================================= */


/* ---------- LARGE LAPTOPS / DESKTOPS ---------- */

@media (min-width: 1200px) {

    .container {
        width: min(1110px, calc(100% - 40px));
    }

    .hero-section {
        min-height: 700px;
    }
}


/* ---------- NORMAL LAPTOPS ---------- */

@media (max-width: 1199px) {

    .container {
        width: calc(100% - 40px);
        max-width: 1050px;
    }

    .main-nav {
        gap: 18px;
        font-size: 12px;
    }

    .logo img {
        width: 150px;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .service-cards,
    .about-grid,
    .special-heading-grid,
    .special-services-grid,
    .mission-grid,
    .quote-grid {
        max-width: 900px;
    }

    .footer-grid {
        gap: 28px;
    }
}


/* ---------- TABLETS ---------- */

@media (max-width: 991px) {

    .top-bar-inner {
        flex-wrap: wrap;
        justify-content: center;
        padding: 7px 0;
    }

    .top-contact {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .top-social {
        display: none;
    }


    /* HEADER */

    .main-nav-inner {
        min-height: 70px;
    }

    .menu-toggle {
        display: flex;
        width: 42px;
        height: 38px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        background: transparent;
        border: 0;
        cursor: pointer;
    }

    .menu-toggle span {
        width: 24px;
        height: 2px;
        background: #222;
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #fff;
        box-shadow: 0 12px 25px rgba(0,0,0,.12);
        padding: 10px 25px 20px;
        z-index: 999;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav > a,
    .dropdown-toggle {
        width: 100%;
        text-align: left;
        padding: 13px 0;
        border-bottom: 1px solid #eee;
    }

    .main-nav > a::after,
    .dropdown-toggle::after {
        display: none;
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        border-top: 0;
        padding: 5px 0 8px 14px;
    }

    .nav-dropdown.open .dropdown-menu {
        display: block;
    }


    /* HERO */

    .hero-section {
        min-height: 440px;
        background-position: center;
    }

    .hero-content {
        max-width: 470px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 18px;
    }


    /* SERVICE CARDS */

    .service-cards {
        max-width: 100%;
        gap: 20px;
    }

    .service-card h3 {
        font-size: 19px;
    }


    /* ABOUT */

    .about-grid {
        max-width: 100%;
        gap: 40px;
    }


    /* SPECIAL SERVICES */

    .special-ship {
        display: none;
    }

    .special-heading-grid {
        max-width: 100%;
    }

    .special-services-grid {
        max-width: 100%;
    }


    /* MISSION */

    .mission-grid {
        max-width: 100%;
        gap: 45px;
    }


    /* INDUSTRIES */

    .industries-grid {
        max-width: 650px;
    }


    /* QUOTE */

    .quote-grid {
        max-width: 100%;
        grid-template-columns: 1.3fr .7fr;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
}


/* ---------- MOBILE LANDSCAPE / LARGE PHONES ---------- */

@media (max-width: 767px) {

    .container {
        width: calc(100% - 28px);
    }

    .section-space {
        padding: 50px 0;
    }


    /* TOP BAR */

    .top-bar {
        display: none;
    }


    /* HEADER */

    .logo img {
        width: 140px;
    }


    /* HERO */

    .hero-section {
        min-height: 390px;
        background-position: center;
    }

    .hero-content {
        max-width: 320px;
        margin-left: 0;
    }

    .hero-content h1 {
        font-size: 42px;
        line-height: 1;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.3;
    }

    .hero-buttons {
        flex-wrap: wrap;
    }

    .btn {
        min-width: 105px;
        padding: 9px 15px;
    }


    /* MAIN SERVICES */

    .service-cards {
        grid-template-columns: 1fr;
        gap: 34px;
        max-width: 420px;
    }

    .service-card {
        margin: auto;
    }

    .service-card h3 {
        font-size: 21px;
    }

    .service-card p {
        font-size: 12px;
    }


    /* ABOUT */

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-copy h2 {
        font-size: 30px;
    }

    .about-copy p {
        font-size: 13px;
    }


    /* SPECIAL SERVICES */

    .special-heading-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .special-heading-grid h2 {
        font-size: 28px;
    }

    .special-intro {
        font-size: 12px;
    }

    .special-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
    }


    /* MISSION / VISION */

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .mission-grid h2 {
        font-size: 28px;
    }

    .mission-grid p {
        font-size: 12px;
        line-height: 1.6;
    }


    /* INDUSTRIES */

    .industries-section {
        padding: 40px 0 45px;
    }

    .industries-title {
        font-size: 36px;
        margin-bottom: 28px;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 18px;
    }

    .industry-icon {
        width: 55px;
        height: 55px;
    }

    .industry-icon img {
        width: 55px;
        height: 55px;
    }

    .industry-item {
        font-size: 14px;
    }


    /* QUOTE */

    .quote-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .quote-form {
        grid-template-columns: 1fr;
    }

    .quote-side {
        padding-left: 0;
    }

    .quote-side img {
        margin-left: 0;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    .footer-about p {
        max-width: 100%;
    }
}


/* ---------- SMALL MOBILE ---------- */

@media (max-width: 480px) {

    .container {
        width: calc(100% - 22px);
    }


    /* HEADER */

    .main-nav-inner {
        min-height: 64px;
    }

    .logo img {
        width: 125px;
    }


    /* HERO */

    .hero-section {
        min-height: 350px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-buttons {
        gap: 8px;
    }


    /* SERVICES */

    .service-card img {
        border-radius: 6px;
    }


    /* SPECIAL SERVICES */

    .special-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .special-item {
        font-size: 12px;
    }


    /* INDUSTRIES */

    .industries-title {
        font-size: 32px;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-item span {
        font-size: 13px;
        text-align: center;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-about {
        grid-column: auto;
    }

    .copyright {
        font-size: 14px;
        line-height: 1.4;
        padding: 9px 12px;
    }


    /* WHATSAPP */

    .whatsapp-float {
        right: 35px;
        bottom: 65px;
        width: 50px;
        height: 50px;
    }
}













.form-success,
.form-error {
    grid-column: 1 / -1;
    width: 100%;
    padding: 11px 14px;
    margin-bottom: 12px;
    border-radius: 4px;
    font-size: 12px;
}

.form-success {
    background: #eaf8f4;
    border: 1px solid #47a98f;
    color: #23705c;
}

.form-error {
    background: #fff1f1;
    border: 1px solid #d56161;
    color: #a63030;
}