/* ==========================================
   AGRO PYRAMIDS
   MAIN STYLESHEET
========================================== */

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    color:#333;
    background:#fff;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* COLORS */

:root{

    --green:#0B7A3E;

    --dark:#163020;

    --gold:#C9A227;

    --light:#F8F9FA;

    --white:#ffffff;

}

/* CONTAINER */

.container{

    width:92%;

    max-width:1300px;

    margin:auto;

}

/* ==========================
   TOP BAR
========================== */

.top-bar{

    background:var(--dark);

    color:white;

    font-size:14px;

}

.top-bar-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:42px;

}

.top-left,
.top-right{

    display:flex;

    align-items:center;

    gap:25px;

}

.top-bar a,
.top-bar span{

    color:white;

}

.top-bar i{

    color:var(--gold);

    margin-right:8px;

}

.language-selector{

    display:flex;

    align-items:center;

    gap:8px;

}

.language-selector select{

    background:none;

    border:none;

    color:white;

    cursor:pointer;

    outline:none;

}

.language-selector option{

    color:#222;

}

/* ==========================
   HEADER
========================== */

.header{

    width:100%;

    background:white;

    position:sticky;

    top:0;

    z-index:999;

    box-shadow:0 2px 20px rgba(0,0,0,.05);

}

.header-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:72px;

}

/* LOGO */

.logo{

    display:flex;

    align-items:center;

    gap:15px;

}

.logo img{

    height:55px;

}

.logo-text h3{

    color:var(--dark);

    font-size:24px;

    font-family:'Poppins',sans-serif;

}

.logo-text span{

    font-size:12px;

    color:#666;

}

/* NAVIGATION */

.navbar ul{

    display:flex;

    align-items:center;

    gap:35px;

}

.navbar a{

    color:var(--dark);

    font-weight:600;

    position:relative;

    transition:.3s;

}

.navbar a:hover{

    color:var(--green);

}

.navbar a.active{

    color:var(--green);

}

.navbar a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--green);

    transition:.3s;

}

.navbar a:hover::after{

    width:100%;

}

/* BUTTON */

.quote-btn{

    background:var(--green);

    color:white;

    padding:14px 28px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.quote-btn:hover{

    background:var(--dark);

    transform:translateY(-2px);

}

/* MOBILE BUTTON */

.menu-toggle{

    display:none;

    border:none;

    background:none;

    font-size:28px;

    cursor:pointer;

    color:var(--dark);

}
/* ==========================================
   HERO SLIDER
========================================== */

.hero-slider{
    width:100%;
    height:calc(100vh - 114px);
    overflow:hidden;
}

.heroSwiper,
.swiper-wrapper,
.swiper-slide{
    width:100%;
    height:100%;
}

.hero-slide{
    position:relative;
    display:flex;
    align-items:center;
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-content{
    position:relative;
    z-index:5;
    display:flex;
    align-items:center;
    height:100%;
}

.hero-box{
    max-width:700px;
    padding:60px;
    border-radius:20px;
    color:#fff;
}

.hero-tag{
    display:inline-block;
    color:#C9A227;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    margin-bottom:20px;
    text-transform:uppercase;
}

.hero-box h1{
    font-family:'Poppins',sans-serif;
    font-size:64px;
    line-height:1.1;
    margin-bottom:25px;
    color:#fff;
}

.hero-box p{
    font-size:20px;
    line-height:1.8;
    margin-bottom:35px;
    color:#f2f2f2;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary{
    display:inline-block;
    background:#0B7A3E;
    color:#fff;
    padding:18px 40px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    background:#163020;
}

.btn-outline{
    display:inline-block;
    border:2px solid #fff;
    color:#fff;
    padding:18px 40px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-outline:hover{
    background:#fff;
    color:#163020;
}

.swiper-button-next,
.swiper-button-prev{
    color:#fff;
}

.swiper-pagination-bullet{
    background:#fff;
    opacity:.5;
}

.swiper-pagination-bullet-active{
    background:#C9A227;
    opacity:1;
}
/* ==========================================
   STATISTICS
========================================== */

.statistics{
    padding:40px 0;
    background:#ffffff;
}

.section-title{
    text-align:center;
    max-width:750px;
    margin:0 auto 60px;
}

.section-title span{
    color:#C9A227;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    font-size:14px;
}

.section-title h2{
    font-size:48px;
    color:#163020;
    margin:15px 0;
    font-family:'Poppins',sans-serif;
}

.section-title p{
    color:#666;
    font-size:18px;
    line-height:1.8;
}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-card{
/* Staggered Layout */

.stat-card:nth-child(2){
    margin-top:40px;
}

.stat-card:nth-child(4){
    margin-top:40px;
}
    position:relative;

    height:340px;

    overflow:hidden;

    border-radius:20px;

    cursor:pointer;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.stat-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.7s;

}

.stat-card:hover img{
    transform:scale(1.08) rotate(.5deg);

}

.stat-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.15),
        rgba(0,0,0,.75)
    );

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:35px;

    transition:.4s;

}

.stat-card:hover .stat-overlay{

    background:linear-gradient(
        rgba(11,122,62,.25),
        rgba(11,122,62,.85)
    );

}

.stat-overlay h2{

    display:inline-block;

    color:#fff;

    font-size:72px;
text-shadow:0 5px 20px rgba(0,0,0,.35);
    font-weight:800;

    font-family:'Poppins',sans-serif;

    line-height:1;

}

.stat-overlay span{

    color:#C9A227;

    font-size:34px;

    font-weight:700;

}

.stat-overlay h4{

    color:#fff;

    margin-top:12px;

    font-size:24px;

    font-weight:600;

}

.stat-card::after{
    height:6px;
    border-radius:10px;
    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:0;

    background:#C9A227;

    transition:.4s;

}

.stat-card:hover::after{

    width:100%;

}
@media(max-width:992px){

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.stats-grid{

grid-template-columns:1fr;

}

.section-title h2{

font-size:34px;

}

.hero-box h1{

font-size:42px;

}

}
/*==================================
            ABOUT
==================================*/

.about{
    padding:60px 0;
    background:#f8f9fa;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

/* LEFT SIDE */

.about-images{
    position:relative;
    height:650px;
}

.about-images img{
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
    transition:.4s;
}

.about-images img:hover{
    transform:translateY(-10px);
}

.img-large{
    width:75%;
    height:100%;
}

.img-small{
    position:absolute;
    width:45%;
    height:260px;
    right:0;
}

.img-small.top{
    top:30px;
}

.img-small.bottom{
    bottom:30px;
}

/* RIGHT SIDE */

.section-subtitle{

    color:#C9A227;

    letter-spacing:3px;

    font-size:14px;

    font-weight:700;

    text-transform:uppercase;

}

.about-content h2{

    font-size:52px;

    color:#163020;

    margin:20px 0;

    line-height:1.2;

    font-family:'Poppins',sans-serif;

}

.about-content p{

    color:#666;

    line-height:1.9;

    font-size:18px;

    margin-bottom:35px;

}

.about-features{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

    margin-bottom:40px;

}

.about-features div{

    font-weight:600;

    color:#163020;

}

.about-btn{

    display:inline-block;

    padding:18px 40px;

    background:#0B7A3E;

    color:white;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.about-btn:hover{

    background:#163020;

    transform:translateY(-3px);

}
@media(max-width:992px){

.about-grid{

grid-template-columns:1fr;

}

.about-images{

height:500px;

margin-bottom:40px;

}

.about-content{

text-align:center;

}

.about-features{

grid-template-columns:1fr;

}

}
/*==================================
        PRODUCT CATEGORIES
==================================*/

.categories{
    padding:50px 0;
    background:#ffffff;
}

.category-grid{

    display:grid;

    grid-template-columns:2fr 1fr;

    grid-template-rows:repeat(3,220px);

    gap:25px;

}

.category-card{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    text-decoration:none;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.category-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.7s;

}

.category-card:hover img{

    transform:scale(1.08);

}

.category-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:35px;

    background:linear-gradient(
        rgba(0,0,0,.15),
        rgba(0,0,0,.80)
    );

    transition:.4s;

}

.category-card:hover .category-overlay{

    background:linear-gradient(
        rgba(11,122,62,.20),
        rgba(11,122,62,.85)
    );

}

.category-overlay h3{

    color:#fff;

    font-size:30px;

    margin-bottom:12px;

    font-family:'Poppins',sans-serif;

}

.category-overlay p{

    color:#eee;

    line-height:1.7;

    margin-bottom:20px;

}

.category-overlay span{

    color:#C9A227;

    font-weight:700;

    transition:.3s;

}

.category-card:hover span{

    margin-left:10px;

}

/* Layout */

.category-card:first-child{

    grid-row:1 / 4;

}

.category-card:nth-child(2){

    grid-row:1;

}

.category-card:nth-child(3){

    grid-row:2;

}

.category-card:nth-child(4){

    grid-row:3;

}
@media(max-width:992px){

.category-grid{

grid-template-columns:1fr;

grid-template-rows:auto;

}

.category-card{

height:320px;

}

.category-card:first-child{

grid-row:auto;

}

}
/*==================================
      PRODUCTION PROCESS
==================================*/

.process{
    padding:60px 0;
    background:#f5faf6;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.process-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
}

.process-card:hover{
    transform:translateY(-10px);
}

.process-card img{
    width:100%;
    height:230px;
    object-fit:cover;
    transition:.5s;
}

.process-card:hover img{
    transform:scale(1.08);
}

.process-card h3{
    padding:25px 25px 10px;
    color:#163020;
    font-size:24px;
}

.process-card p{
    padding:0 25px 30px;
    color:#666;
    line-height:1.8;
}
@media(max-width:992px){

.process-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.process-grid{

grid-template-columns:1fr;

}

}
/*==================================
        WHY CHOOSE US
==================================*/

.why-us{
    padding:60px 0;
    background:#ffffff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.why-card{

    background:#fff;

    padding:40px 35px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    border-top:5px solid transparent;

}

.why-card:hover{

    transform:translateY(-10px);

    border-color:#0B7A3E;

}

.why-icon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#0B7A3E;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    transition:.35s;

}

.why-card:hover .why-icon{

    background:#C9A227;

    transform:rotate(10deg);

}

.why-card h3{

    color:#163020;

    margin-bottom:15px;

    font-size:24px;

}

.why-card p{

    color:#666;

    line-height:1.8;

}
@media(max-width:992px){

.why-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.why-grid{
    grid-template-columns:1fr;
}

}
.export-map{
    background:#0f231c;
    padding:50px 0;
}
#exportMap{
    position:relative;
    width:100%;
    height:600px;
    overflow:hidden;
    border-radius:30px;

    background:linear-gradient(
        135deg,
        #163020,
        #0b7a3e
    );
}
.map-image{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:contain;

    opacity:.28;

    z-index:2;

}

/* SVG */

.routes{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    z-index:3;

}

/* Egypt */

.egypt {
    fill: #18c964;
    filter:
        drop-shadow(0 0 6px #18c964)
        drop-shadow(0 0 18px #18c964)
        drop-shadow(0 0 30px rgba(24,201,100,.6));
}

.pulse{
    fill:none;
    stroke:#16c75c;
    stroke-width:2;
    transform-box: fill-box;
    transform-origin: center;
}

.pulse1{
    animation:pulse 2.5s infinite;
}

.pulse2{
    animation:pulse 2.5s infinite 1.25s;
}

@keyframes pulse{

    0%{
        r:8;
        opacity:0.8;
    }

    100%{
        r:40;
        opacity:0;
    }

}

/* Destinations */

.destination{

    fill:#D4AF37;

    filter:drop-shadow(0 0 10px #D4AF37);

}

@keyframes pulseEgypt{

0%{

transform:scale(1);

}

50%{

transform:scale(1.35);

}

100%{

transform:scale(1);

}

}
.route{
    fill:none;
    stroke:#D4AF37;
    stroke-width:2.5;
    stroke-linecap:round;

    opacity:.45;

    filter:drop-shadow(0 0 5px #D4AF37);

    stroke-dasharray:10 6;

    animation:flow 2.5s linear infinite;
}

@keyframes flow{

    from{
        stroke-dashoffset:100;
    }

    to{
        stroke-dashoffset:0;
    }

}
/* ==========================
   EXPORT MAP TITLE
========================== */

.export-map .section-title h2{

    color:#ffffff;

    font-size:56px;

    font-weight:800;

    margin:18px 0;

    text-shadow:0 5px 25px rgba(0,0,0,.45);

}

.export-map .section-title p{

    color:rgba(255,255,255,.85);

    max-width:760px;

    margin:auto;

    font-size:19px;

    line-height:1.9;

}

.export-map .section-title span{

    color:#D4AF37;

    letter-spacing:4px;

    font-weight:700;

}
/* ==========================
   STARS BACKGROUND
========================== */

.stars{
    position:absolute;
    inset:0;

    z-index:1;

    opacity:.15;

    background-image:
        radial-gradient(circle,#fff 1px,transparent 1px);

    background-size:45px 45px;
}

@keyframes starsMove{

    from{

        transform:translateY(0);

    }

    to{

        transform:translateY(-40px);

    }

}
/* ==========================
   EXPORT MAP LABELS
========================== */

.map-label {
    position: absolute;
    z-index: 5;

    padding: 7px 13px;

    background: rgba(10, 35, 25, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.5);

    border-radius: 20px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: .5px;

    box-shadow: 0 5px 15px rgba(0,0,0,.25);

    backdrop-filter: blur(8px);
}

/* Europe */
.label-europe {
    left: 50%;
    top: 19%;
}

.label-gulf {
    left: 62%;
    top: 42%;
}

.label-russia {
    left: 74%;
    top: 14%;
}

/* Africa */
.label-africa {
    left: 55%;
    top: 77%;
}

/* Americas */
.label-americas {
    left: 18%;
    top: 32%;
}
/* ==========================
   MOVING EXPORT SHIPMENTS
========================== */

.shipment {
    r: 4px;
    fill: #D4AF37;

    filter:
        drop-shadow(0 0 5px #D4AF37)
        drop-shadow(0 0 12px rgba(212,175,55,.8));
}
/* ==========================
   CALL TO ACTION
========================== */

.cta-section {
    position: relative;
    min-height: 420px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 0;
    padding: 80px 20px;

    background:
    linear-gradient(
       rgba(10, 45, 27, 0.50),
rgba(10, 45, 27, 0.52)
    ),
    url("/assets/images/cta.jpg");
    background-size: cover;
    background-position: center;

    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;

    max-width: 850px;

    text-align: center;

    color: #ffffff;
}

.cta-label {
    display: inline-block;

    margin-bottom: 15px;

    color: #D4AF37;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 4px;
}

.cta-content h2 {
    margin: 0 0 20px;

    font-size: 46px;
    line-height: 1.2;
    font-weight: 800;

    color: #ffffff;
}

.cta-content p {
    max-width: 700px;

    margin: 0 auto 35px;

    color: rgba(255,255,255,.82);

    font-size: 18px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 170px;

    padding: 14px 28px;

    border-radius: 30px;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}

.cta-primary {
    background: #D4AF37;
    color: #163020;

    box-shadow:
        0 8px 25px rgba(212,175,55,.25);
}

.cta-secondary {
    background: transparent;

    color: #ffffff;

    border: 1px solid rgba(255,255,255,.7);
}

.cta-btn:hover {
    transform: translateY(-4px);
}

.cta-primary:hover {
    background: #e2c45b;

    box-shadow:
        0 12px 30px rgba(212,175,55,.35);
}

.cta-secondary:hover {
    background: rgba(255,255,255,.12);
}
/* ==========================
   FOOTER
========================== */

.site-footer {
    background: #0b2417;
    color: #ffffff;

    padding-top: 55px;
    padding-bottom: 0;
}


/* Main footer */

.footer-container {
    width: 100%;
    max-width: none;

    margin: 0;

    padding: 0 6% 45px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 40px;

    box-sizing: border-box;
}

/* Company */

.footer-logo {
    font-size: 28px;

    font-weight: 800;

    margin-bottom: 18px;

    color: #ffffff;
}

.footer-logo span {
    color: #D4AF37;
}

.footer-company p {
    max-width: 350px;

    color: rgba(255,255,255,.68);

    font-size: 14px;

    line-height: 1.8;
}


/* Headings */

.footer-column h3 {
    margin: 0 0 20px;

    color: #D4AF37;

    font-size: 16px;

    font-weight: 700;
}


/* Links */

.footer-column > a {
    display: block;

    width: fit-content;

    margin-bottom: 12px;

    color: rgba(255,255,255,.7);

    font-size: 14px;

    text-decoration: none;

    transition:
        color .25s ease,
        transform .25s ease;
}

.footer-column > a:hover {
    color: #D4AF37;

    transform: translateX(4px);
}


/* Contact */

.footer-contact p {
    margin: 0 0 12px;

    color: rgba(255,255,255,.7);

    font-size: 14px;

    line-height: 1.6;
}


/* Social */

.footer-social {
    display: flex;

    gap: 10px;

    margin-top: 25px;
}

.footer-social a {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.2);

    border-radius: 50%;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.footer-social a:hover {
    background: #D4AF37;

    border-color: #D4AF37;

    color: #0b2417;

    transform: translateY(-3px);
}


/* Quote button */

.footer-quote {
    margin-top: 20px !important;

    padding: 11px 20px;

    background: #D4AF37;

    color: #0b2417 !important;

    border-radius: 25px;

    font-weight: 700;
}

.footer-quote:hover {
    background: #e4c55e;

    transform: translateY(-2px) !important;
}


/* Bottom */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);

    width: 100%;
    max-width: none;

    margin: 0;

    padding: 20px 6%;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    box-sizing: border-box;
}
.footer-bottom p {
    margin: 0;

    color: rgba(255,255,255,.45);

    font-size: 12px;
}


/* ==========================
   FOOTER MOBILE
========================== */

@media (max-width: 800px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;

        gap: 40px 25px;
    }

    .footer-bottom {
        flex-direction: column;

        text-align: center;

        align-items: center;
    }

}


@media (max-width: 500px) {

    .site-footer {
        padding-top: 50px;
    }

    .footer-container {
        grid-template-columns: 1fr;

        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-company p {
        max-width: none;
    }

}
/* =========================================
   FINAL FOOTER WIDTH FIX
========================================= */

.site-footer {
    width: 100%;
    margin: 0;
    padding: 55px 0 0;
    background: #0b2417;
    box-sizing: border-box;
}

.site-footer .footer-container {
    width: 100%;
    max-width: none !important;

    margin: 0 !important;

    padding: 0 7% 45px !important;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;

    box-sizing: border-box;
}

.site-footer .footer-bottom {
    width: 100%;
    max-width: none !important;

    margin: 0 !important;

    padding: 20px 7% !important;

    box-sizing: border-box;
}
/* =========================================
   ABOUT PAGE
========================================= */

.page-hero {
    position: relative;
    min-height: 420px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            rgba(8, 35, 22, 0.72),
            rgba(8, 35, 22, 0.78)
        ),
        url("../images/about/farm.jpg");

    background-size: cover;
    background-position: center;
}

.page-hero-content {
    position: relative;
    z-index: 2;

    color: #ffffff;
}

.page-hero-content span {
    display: inline-block;

    margin-bottom: 15px;

    color: #D4AF37;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
}

.page-hero-content h1 {
    margin: 0 0 18px;

    font-family: "Poppins", sans-serif;

    font-size: clamp(38px, 5vw, 64px);

    line-height: 1.08;
}

.page-hero-content p {
    max-width: 600px;

    margin: 0;

    color: rgba(255,255,255,.8);

    font-size: 17px;
    line-height: 1.7;
}


/* Introduction */

.about-intro {
    padding: 70px 0;
    background: #ffffff;
}

.about-intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}

.about-intro-image img {
    width: 100%;
    height: 450px;

    object-fit: cover;

    border-radius: 4px;
}

.about-intro-content h2 {
    margin: 12px 0 20px;

    font-family: "Poppins", sans-serif;

    font-size: clamp(30px, 4vw, 46px);

    line-height: 1.15;

    color: #123524;
}

.about-intro-content p {
    margin-bottom: 16px;

    color: #666;

    line-height: 1.8;
}

.section-subtitle {
    color: #D4AF37;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;
}


/* Approach */

.about-approach {
    padding: 65px 0;

    background: #f8f9fa;
}

.approach-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}

.approach-card {
    padding: 30px 25px;

    background: #ffffff;

    border: 1px solid #eeeeee;

    text-align: center;

    transition: transform .25s ease,
                box-shadow .25s ease;
}

.approach-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.approach-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(212,175,55,.12);

    color: #D4AF37;

    font-size: 24px;
}

.approach-card h3 {
    margin-bottom: 10px;

    color: #123524;
}

.approach-card p {
    margin: 0;

    color: #777;

    font-size: 14px;

    line-height: 1.7;
}


/* Process */

.about-process {
    padding: 70px 0;

    background: #ffffff;
}

.about-process-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.about-process-card {
    overflow: hidden;

    background: #f8f9fa;

    border-radius: 4px;
}

.about-process-card img {
    width: 100%;
    height: 210px;

    display: block;

    object-fit: cover;
}

.about-process-card > div {
    padding: 22px;
}

.about-process-card span {
    color: #D4AF37;

    font-size: 13px;

    font-weight: 700;
}

.about-process-card h3 {
    margin: 6px 0 8px;

    color: #123524;
}

.about-process-card p {
    margin: 0;

    color: #777;

    font-size: 14px;

    line-height: 1.7;
}


/* About CTA */

.about-cta {
    padding: 70px 20px;

    text-align: center;

    color: #ffffff;

    background:
        linear-gradient(
            rgba(8,35,22,.86),
            rgba(8,35,22,.9)
        ),
        url("../images/about/export.jpg");

    background-size: cover;
    background-position: center;
}

.about-cta > div {
    max-width: 800px;

    margin: auto;
}

.about-cta span {
    color: #D4AF37;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;
}

.about-cta h2 {
    margin: 12px 0 15px;

    font-family: "Poppins", sans-serif;

    font-size: clamp(30px, 4vw, 48px);

    line-height: 1.15;
}

.about-cta p {
    max-width: 650px;

    margin: 0 auto 25px;

    color: rgba(255,255,255,.75);

    line-height: 1.7;
}


/* About page mobile */

@media (max-width: 900px) {

    .about-intro-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .page-hero {
        min-height: 350px;
    }

    .about-intro {
        padding: 50px 0;
    }

    .about-intro-image img {
        height: 320px;
    }

    .approach-grid,
    .about-process-grid {
        grid-template-columns: 1fr;
    }

    .about-approach,
    .about-process {
        padding: 50px 0;
    }

}
/* =========================================
   PRODUCTS PAGE
========================================= */

.products-hero {
    position: relative;

    min-height: 420px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            rgba(8, 35, 22, .72),
            rgba(8, 35, 22, .80)
        ),
        url("../images/categories/frozen-vegetables.jpg");

    background-size: cover;
    background-position: center;
}

.products-hero-content {
    position: relative;
    z-index: 2;

    color: #ffffff;
}

.products-hero-content span,
.product-category-heading span,
.products-cta span {
    color: #D4AF37;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
}

.products-hero-content h1 {
    margin: 12px 0 18px;

    font-family: "Poppins", sans-serif;

    font-size: clamp(38px, 5vw, 62px);

    line-height: 1.08;
}

.products-hero-content p {
    max-width: 600px;

    color: rgba(255,255,255,.8);

    font-size: 17px;
    line-height: 1.7;
}


/* Introduction */

.products-intro {
    padding: 60px 0 35px;
}

.products-intro .section-title p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}


/* Category */

.product-category-section {
    padding: 55px 0;

    background: #ffffff;
}

.product-category-light {
    background: #f8f9fa;
}

.product-category-heading {
    display: flex;

    align-items: end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 30px;
}

.product-category-heading h2 {
    margin: 8px 0 0;

    font-family: "Poppins", sans-serif;

    color: #123524;

    font-size: 34px;
}

.product-category-heading p {
    max-width: 500px;

    margin: 0;

    color: #777;

    line-height: 1.7;
}


/* Product grid */

.products-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}


/* Product card */

.product-card {
    overflow: hidden;

    display: flex;
    flex-direction: column;

    background: #ffffff;

    border: 1px solid #e8e8e8;

    color: inherit;

    text-decoration: none;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.product-category-light .product-card {
    background: #ffffff;
}

.product-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 15px 35px rgba(0,0,0,.10);
}

.product-card img {
    width: 100%;
    height: 210px;

    display: block;

    object-fit: cover;

    transition: transform .4s ease;
}

.product-card:hover img {
    transform: scale(1.04);
}

.product-card-content {
    padding: 20px;

    display: flex;
    flex-direction: column;

    flex: 1;
}

.product-card-content span {
    margin-bottom: 7px;

    color: #D4AF37;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.product-card-content h3 {
    margin: 0 0 9px;

    color: #123524;

    font-family: "Poppins", sans-serif;

    font-size: 19px;
}

.product-card-content p {
    margin: 0 0 18px;

    color: #777;

    font-size: 13px;

    line-height: 1.65;
}

.product-card-content strong {
    margin-top: auto;

    color: #123524;

    font-size: 13px;
}

.product-card:hover .product-card-content strong {
    color: #D4AF37;
}


/* CTA */

.products-cta {
    padding: 65px 20px;

    text-align: center;

    color: #ffffff;

    background:
        linear-gradient(
            rgba(8,35,22,.86),
            rgba(8,35,22,.91)
        ),
        url("../images/categories/fresh.jpg");

    background-size: cover;
    background-position: center;
}

.products-cta h2 {
    margin: 10px 0 12px;

    font-family: "Poppins", sans-serif;

    font-size: clamp(30px, 4vw, 46px);
}

.products-cta p {
    max-width: 650px;

    margin: 0 auto 25px;

    color: rgba(255,255,255,.75);

    line-height: 1.7;
}


/* Product page responsive */

@media (max-width: 1000px) {

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 750px) {

    .product-category-heading {
        display: block;
    }

    .product-category-heading p {
        margin-top: 15px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 500px) {

    .products-hero {
        min-height: 350px;
    }

    .product-category-section {
        padding: 45px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card img {
        height: 230px;
    }

}
/* =========================================
   PRODUCT DETAIL PAGE
========================================= */

.product-detail-hero {
    padding: 35px 0 75px;
    background: #f8f9fa;
}

.product-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 35px;

    color: #777;

    font-size: 13px;
}

.product-breadcrumb a {
    color: #123524;
    text-decoration: none;
}

.product-breadcrumb strong {
    color: #123524;
}

.product-detail-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 65px;

    align-items: center;
}

.product-detail-image {
    overflow: hidden;

    background: #ffffff;
}

.product-detail-image img {
    width: 100%;
    height: 520px;

    display: block;

    object-fit: cover;
}

.product-detail-category {
    color: #D4AF37;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
}

.product-detail-content h1 {
    margin: 12px 0 20px;

    color: #123524;

    font-family: "Poppins", sans-serif;

    font-size: clamp(36px, 4vw, 54px);

    line-height: 1.1;
}

.product-detail-intro {
    max-width: 600px;

    color: #666;

    font-size: 17px;

    line-height: 1.8;
}

.product-detail-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 30px;
}

.whatsapp-btn {
    display: inline-flex;

    align-items: center;
    gap: 9px;

    padding: 14px 24px;

    border: 1px solid #123524;

    color: #123524;

    text-decoration: none;

    font-weight: 600;

    transition: .25s ease;
}

.whatsapp-btn:hover {
    background: #123524;
    color: #ffffff;
}


/* Information */

.product-information {
    padding: 70px 0;

    background: #ffffff;
}

.product-information-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;
}

.product-description h2 {
    margin: 10px 0 20px;

    color: #123524;

    font-family: "Poppins", sans-serif;

    font-size: 38px;
}

.product-description p {
    margin-bottom: 17px;

    color: #666;

    line-height: 1.8;
}

.product-specifications {
    padding: 30px;

    background: #f8f9fa;

    border: 1px solid #eeeeee;
}

.product-specifications h3 {
    margin: 0 0 20px;

    color: #123524;

    font-family: "Poppins", sans-serif;
}

.specification-row {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 15px 0;

    border-bottom: 1px solid #e5e5e5;

    font-size: 14px;
}

.specification-row:last-child {
    border-bottom: none;
}

.specification-row span {
    color: #777;
}

.specification-row strong {
    color: #123524;

    text-align: right;
}


/* Benefits */

.product-benefits {
    padding: 65px 0;

    background: #f8f9fa;
}

.product-benefits-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}

.product-benefit {
    padding: 28px 22px;

    background: #ffffff;

    text-align: center;

    border: 1px solid #eeeeee;
}

.product-benefit i {
    margin-bottom: 15px;

    color: #D4AF37;

    font-size: 28px;
}

.product-benefit h3 {
    margin: 0 0 10px;

    color: #123524;
}

.product-benefit p {
    margin: 0;

    color: #777;

    font-size: 14px;

    line-height: 1.7;
}


/* CTA */

.product-detail-cta {
    padding: 70px 20px;

    text-align: center;

    color: #ffffff;

    background: #0b2417;
}

.product-detail-cta span {
    color: #D4AF37;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
}

.product-detail-cta h2 {
    margin: 10px 0 12px;

    font-family: "Poppins", sans-serif;

    font-size: 44px;
}

.product-detail-cta p {
    max-width: 600px;

    margin: 0 auto 25px;

    color: rgba(255,255,255,.75);

    line-height: 1.7;
}


/* Responsive */

@media (max-width: 900px) {

    .product-detail-grid,
    .product-information-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-image img {
        height: 420px;
    }

    .product-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 550px) {

    .product-detail-hero {
        padding-bottom: 50px;
    }

    .product-detail-image img {
        height: 320px;
    }

    .product-benefits-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-buttons {
        flex-direction: column;
    }

    .product-detail-buttons a {
        justify-content: center;
        text-align: center;
    }

}
/* =========================================
   UPDATES SLIDESHOW
========================================= */

.updates-gallery {
    padding: 90px 0;
    background: #f7f9f6;
}

.updates-gallery .section-title {
    text-align: center;
    margin-bottom: 45px;
}

.updates-gallery .section-title p {
    max-width: 650px;
    margin: 15px auto 0;
    color: #666;
}


.updates-slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 620px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 24px;
    background: #111;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}


.update-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}


.update-slide.active {
    opacity: 1;
    visibility: visible;
}


.update-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.update-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 60px;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.78),
            rgba(0, 0, 0, 0.05) 65%
        );
}


.update-content {
    max-width: 650px;
    color: white;
}


.update-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
}


.update-content h2 {
    margin: 0 0 12px;
    font-family: "Poppins", sans-serif;
    font-size: 38px;
    font-weight: 700;
}


.update-content p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}


.slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: white;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}


.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.75);
    transform: translateY(-50%) scale(1.08);
}


.slider-prev {
    left: 25px;
}


.slider-next {
    right: 25px;
}


.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    z-index: 5;
    display: flex;
    gap: 9px;
    transform: translateX(-50%);
}


.slider-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.55);
    transition: all 0.3s ease;
}


.slider-dot.active {
    width: 28px;
    border-radius: 10px;
    background: white;
}


@media (max-width: 768px) {

    .updates-gallery {
        padding: 65px 0;
    }


    .updates-slider {
        height: 480px;
        border-radius: 18px;
    }


    .update-overlay {
        padding: 30px;
    }


    .update-content h2 {
        font-size: 28px;
    }


    .update-content p {
        font-size: 15px;
    }


    .slider-arrow {
        width: 42px;
        height: 42px;
    }


    .slider-prev {
        left: 15px;
    }


    .slider-next {
        right: 15px;
    }

}
/* =========================================
   CONTACT PAGE
========================================= */

.contact-section {
    padding: 90px 0;
    background: #ffffff;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 45px;
}

.contact-info-card {
    padding: 35px 25px;
    text-align: center;
    border: 1px solid #e5e9e5;
    border-radius: 18px;
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef6ed;
    font-size: 25px;
}

.contact-info-card h3 {
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
}

.contact-info-card p {
    margin: 0;
    color: #666;
}

.contact-info-card a {
    color: inherit;
    text-decoration: none;
}

.contact-info-card a:hover {
    text-decoration: underline;
}


/* =========================================
   QUOTE SECTION
========================================= */

.quote-section {
    padding: 100px 0;
    background: #f5f8f4;
}

.quote-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.quote-content h2 {
    margin: 12px 0 20px;
    font-family: "Poppins", sans-serif;
    font-size: 40px;
}

.quote-content > p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.quote-points {
    margin-top: 30px;
}

.quote-point {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.quote-point i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    background: #e4f1df;
}


/* =========================================
   FORM
========================================= */

.quote-form-container {
    padding: 40px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #dfe4df;
    border-radius: 10px;
    outline: none;
    background: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #6d9b5b;
    box-shadow: 0 0 0 3px rgba(109, 155, 91, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.quote-submit {
    width: 100%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}


/* =========================================
   MAP
========================================= */

.contact-map-section {
    padding: 90px 0;
    background: #ffffff;
}

.map-container {
    max-width: 1200px;
    height: 420px;
    margin: 40px auto 0;
    overflow: hidden;
    border-radius: 22px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        linear-gradient(
            135deg,
            #eef4eb,
            #dfe9db
        );
}

.map-placeholder > i {
    margin-bottom: 15px;
    font-size: 55px;
}

.map-placeholder h3 {
    margin-bottom: 5px;
    font-family: "Poppins", sans-serif;
    font-size: 28px;
}

.map-placeholder p {
    margin-bottom: 20px;
    color: #666;
}

.map-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff;
    background: #333;
    transition: transform 0.3s ease;
}

.map-button:hover {
    transform: translateY(-2px);
}


/* =========================================
   CONTACT CTA
========================================= */

.contact-cta {
    padding: 90px 20px;
    text-align: center;
    color: #ffffff;
    background: #234b2c;
}

.contact-cta span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-cta h2 {
    max-width: 800px;
    margin: 15px auto;
    font-family: "Poppins", sans-serif;
    font-size: 40px;
}

.contact-cta p {
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.7;
    opacity: 0.9;
}

.contact-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}


/* =========================================
   CONTACT RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quote-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

}


@media (max-width: 600px) {

    .contact-section,
    .quote-section,
    .contact-map-section {
        padding: 65px 0;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .quote-form-container {
        padding: 25px 20px;
    }

    .quote-content h2 {
        font-size: 32px;
    }

    .contact-cta h2 {
        font-size: 30px;
    }

    .contact-cta-buttons {
        flex-direction: column;
    }

    .map-container {
        height: 350px;
    }

}
/* =========================================
   PAGE HERO TEXT
========================================= */

.page-hero {
    color: #ffffff;
}

.page-hero h1,
.page-hero p,
.page-hero-subtitle {
    color: #ffffff;
}/* =========================================
   MOBILE HEADER & HERO FIX
========================================= */

@media (max-width: 768px) {

    /* HEADER */

    .header {
        position: relative;
        z-index: 1000;
    }

    .header-container {
        min-height: 80px;
        padding: 12px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        max-width: 210px;
    }

    .logo img {
        width: 75px;
        height: auto;
    }

    .logo-text {
        max-width: 120px;
    }

    .logo-text h3 {
        margin: 0;
        font-size: 19px;
        line-height: 1.1;
    }

    .logo-text span {
        display: block;
        margin-top: 5px;
        font-size: 9px;
        line-height: 1.3;
    }


    /* HIDE DESKTOP NAVIGATION */

    .navbar {
        display: none;
    }

    .quote-btn {
        display: none;
    }


    /* MOBILE MENU BUTTON */

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 42px;
        height: 42px;

        border: none;
        border-radius: 8px;

        cursor: pointer;

        font-size: 20px;

        background: #234b2c;
        color: #ffffff;
    }


    /* TOP CONTACT BAR */

    .top-bar {
        overflow: hidden;
    }

    .top-bar .container {
        padding-left: 15px;
        padding-right: 15px;
    }


    /* HERO */

    .hero {
        min-height: 520px;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 30px 25px;
    }

    .hero h1 {
        font-size: 42px;
        line-height: 1.08;
        margin-bottom: 15px;
    }

    .hero p {
        max-width: 300px;
        font-size: 17px;
        line-height: 1.6;
    }

    .hero .container {
        padding-left: 20px;
        padding-right: 20px;
    }


    /* SLIDER ARROWS */

    .hero-slider-arrow,
    .slider-arrow {
        width: 42px;
        height: 42px;
    }

    .hero-slider-arrow.prev,
    .slider-prev {
        left: 12px;
    }

    .hero-slider-arrow.next,
    .slider-next {
        right: 12px;
    }

}/* =========================================
   MOBILE HOME HERO FIX
========================================= */

@media (max-width: 768px) {

    .hero {
        min-height: 520px;
        height: auto;
        overflow: hidden;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 80px 25px 70px;
        margin: 0;
    }

    .hero h1 {
        font-size: 38px;
        line-height: 1.12;
        margin-top: 0;
        margin-bottom: 18px;
    }

    .hero p {
        max-width: 290px;
        margin: 0;
        font-size: 17px;
        line-height: 1.65;
    }

}
/* =========================================
   FINAL MOBILE HERO FIX
========================================= */

@media (max-width: 768px) {

    .hero {
        width: 100%;
        min-height: 520px;
        height: auto;
        overflow: hidden;
    }

    .hero .container {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        margin: 0;
        box-sizing: border-box;
    }

    .hero-content {
        width: 100% !important;
        max-width: 320px !important;
        padding: 65px 0 70px !important;
        margin: 0 auto !important;
        box-sizing: border-box;
    }

    .hero h1 {
        width: 100%;
        max-width: 300px;
        margin: 0 0 18px 0;
        font-size: 38px;
        line-height: 1.1;
        white-space: normal;
        overflow-wrap: break-word;
        word-break: normal;
    }

    .hero p {
        width: 100%;
        max-width: 290px;
        margin: 0;
        font-size: 17px;
        line-height: 1.6;
        white-space: normal;
        overflow-wrap: break-word;
        word-break: normal;
    }

    .hero .hero-content,
    .hero .hero-content * {
        box-sizing: border-box;
    }

}
/* =========================================
   MOBILE HERO - FINAL FIX
========================================= */

@media screen and (max-width: 768px) {

    .hero {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 520px !important;
        height: 520px !important;
        overflow: hidden !important;
    }

    .hero .container {
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        padding: 0 20px !important;
        box-sizing: border-box !important;
    }

    .hero-content {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;

        display: block !important;

        width: 100% !important;
        max-width: 300px !important;

        margin: 0 auto !important;
        padding: 60px 0 70px !important;

        box-sizing: border-box !important;
    }

    .hero-content h1 {
        display: block !important;

        width: 100% !important;
        max-width: 300px !important;

        margin: 0 0 18px !important;
        padding: 0 !important;

        font-size: 36px !important;
        line-height: 1.12 !important;

        white-space: normal !important;
        overflow: visible !important;
        overflow-wrap: anywhere !important;
        word-break: normal !important;
    }

    .hero-content p {
        display: block !important;

        width: 100% !important;
        max-width: 290px !important;

        margin: 0 !important;
        padding: 0 !important;

        font-size: 16px !important;
        line-height: 1.6 !important;

        white-space: normal !important;
        overflow: visible !important;
        overflow-wrap: anywhere !important;
        word-break: normal !important;
    }

    .hero-content span {
        max-width: 100% !important;
        white-space: normal !important;
    }

}
/* =========================================
   EXPORT MAP - MOBILE LABEL FIX
========================================= */

@media screen and (max-width: 768px) {

    #exportMap {
        position: relative !important;
        overflow: hidden !important;
    }

    #exportMap .map-label {
        position: absolute !important;
        z-index: 20 !important;

        font-size: 13px !important;
        padding: 8px 14px !important;

        white-space: nowrap !important;

        transform: translate(-50%, -50%) !important;
    }


    /* AMERICAS
       Above North/South America */

    #exportMap .label-americas {
        left: 27% !important;
        top: 51% !important;
    }


    /* EUROPE
       Above Europe */

    #exportMap .label-europe {
        left: 55% !important;
        top: 42% !important;
    }


    /* RUSSIA
       Above eastern Europe / Russia */

    #exportMap .label-russia {
        left: 76% !important;
        top: 32% !important;
    }


    /* GULF COUNTRIES
       Beside the Gulf region */

    #exportMap .label-gulf {
        left: 72% !important;
        top: 52% !important;
    }


    /* AFRICA
       Below Africa */

    #exportMap .label-africa {
        left: 66% !important;
        top: 68% !important;
    }

}
/* =========================================
   MOBILE FOOTER FIX
========================================= */

@media screen and (max-width: 768px) {

    .site-footer {
        width: 100%;
        overflow: hidden;
    }

    .footer-container {
        width: 100%;
        max-width: 100%;
        padding: 45px 25px 35px;
        box-sizing: border-box;

        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 35px 25px;
    }

    /* Company section takes full width */

    .footer-company {
        grid-column: 1 / -1;
    }

    .footer-company p {
        max-width: 300px;
        line-height: 1.7;
    }

    /* Footer headings */

    .footer-column h3 {
        font-size: 16px;
        line-height: 1.3;
        margin-bottom: 18px;
    }

    /* Footer links */

    .footer-column a {
        display: block;
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 11px;
        overflow-wrap: break-word;
    }

    /* Product links */

    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        width: 100%;
        box-sizing: border-box;
        padding: 20px 20px;
        text-align: center;
    }

    .footer-bottom p {
        margin: 6px 0;
        font-size: 12px;
        line-height: 1.5;
    }

}
/* =========================================
   MOBILE TOP BAR FIX
========================================= */

@media screen and (max-width: 768px) {

    .top-bar {
        width: 100%;
        height: 42px;
        overflow: hidden;
    }

    .top-bar .container {
        width: 100%;
        height: 42px;
        padding: 0 15px;
        margin: 0;
        box-sizing: border-box;

        display: flex;
        align-items: center;
        justify-content: space-between;

        overflow: hidden;
    }

    .top-bar a,
    .top-bar span {
        white-space: nowrap;
        font-size: 12px;
    }

    /* Keep the email visible */

    .top-bar .email {
        display: flex;
        align-items: center;
        min-width: 0;
        overflow: hidden;
    }

    .top-bar .email span {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Hide phone and location on mobile */

    .top-bar .phone,
    .top-bar .location {
        display: none;
    }

    /* Keep language */

    .top-bar .language {
        flex-shrink: 0;
        margin-left: auto;
    }

}
/* =========================================
   MOBILE MENU
========================================= */

@media screen and (max-width: 768px) {

    .navbar.mobile-open {
        display: block !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        z-index: 9999;
    }

    .navbar.mobile-open ul {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 10px 0;
    }

    .navbar.mobile-open li {
        width: 100%;
    }

    .navbar.mobile-open a {
        display: block;
        width: 100%;
        padding: 15px 25px;
        box-sizing: border-box;
        text-decoration: none;
    }

    .navbar.mobile-open a:hover {
        background: #f3f6f2;
    }

}
/* =========================================
   MOBILE FOOTER SOCIAL ICONS
========================================= */

@media screen and (max-width: 768px) {

    .footer-social {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        margin-top: 25px;
    }

    .footer-social a {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px;
        padding: 0 !important;
        margin: 0 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        border-radius: 50%;
        box-sizing: border-box;
        line-height: 1 !important;
    }

    .footer-social a i {
        display: flex;
        align-items: center;
        justify-content: center;

        margin: 0 !important;
        padding: 0 !important;

        font-size: 15px;
        line-height: 1;
    }

}
/* =========================================
   FORM SUCCESS MESSAGE
========================================= */

.form-success {
    min-height: 350px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    padding: 40px 25px;
}

.success-icon {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 50%;

    background: #e8f4e5;
    font-size: 28px;
}

.form-success h3 {
    margin-bottom: 12px;

    font-family: "Poppins", sans-serif;
    font-size: 28px;
}

.form-success p {
    max-width: 450px;
    margin-bottom: 25px;

    color: #666;
    line-height: 1.7;
}

.form-success .btn-primary {
    border: none;
    cursor: pointer;
}
/* =========================================
   FLOATING WHATSAPP BUTTON
========================================= */

.floating-whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    color: #ffffff;

    border-radius: 50%;

    font-size: 30px;
    text-decoration: none;

    z-index: 9999;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.3);
}


/* MOBILE */

@media screen and (max-width: 768px) {

    .floating-whatsapp {
        width: 52px;
        height: 52px;

        right: 18px;
        bottom: 18px;

        font-size: 27px;
    }

}
