* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f6f8fb;
    color: #1c2430;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e9f0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0c2d57, #f57224);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(12, 45, 87, 0.25);
}

.site-logo {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border-radius: 12px;
}

.logo-box h2 {
    font-size: 22px;
    color: #0c2d57;
}

.logo-box span {
    font-size: 13px;
    color: #687385;
}

.main-nav {
    display: flex;
    gap: 24px;
    font-weight: 600;
    color: #263445;
}

.main-nav a:hover {
    color: #f57224;
}

.quote-btn,
.primary-btn {
    background: #f57224;
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 10px 25px rgba(245, 114, 36, 0.25);
}

.quote-btn:hover,
.primary-btn:hover {
    background: #e76418;
    color: #fff;
}

.secondary-btn,
.details-btn {
    border: 2px solid #0c2d57;
    color: #0c2d57;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    display: inline-block;
}

.details-btn {
    background: #0c2d57;
    color: #fff;
    border: 0;
}

/* Language */
.lang-switch {
    display: flex;
    gap: 10px;
    align-items: center;
}

.lang-switch a {
    background: #fff;
    border: 1px solid #edf1f7;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
    color: #0c2d57;
}

.lang-switch a:hover {
    background: #f57224;
    color: #fff;
}

/* Hero */
.hero {
    background:
        radial-gradient(circle at top right, rgba(245, 114, 36, 0.18), transparent 35%),
        linear-gradient(135deg, #071b34, #0c2d57);
    color: #fff;
    padding: 90px 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.badge {
    display: inline-block;
    background: rgba(245, 114, 36, 0.14);
    color: #f57224;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 18px;
}

.badge.dark {
    background: #eaf0f8;
    color: #0c2d57;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.12;
    margin-bottom: 22px;
}

.hero p {
    font-size: 18px;
    color: #dce6f5;
    max-width: 640px;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero .secondary-btn {
    border-color: #fff;
    color: #fff;
}

.hero-card {
    min-height: 430px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    position: relative;
    padding: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-card h3 {
    font-size: 28px;
}

.hero-card p {
    font-size: 15px;
    margin: 8px 0 0;
}

.can-shape {
    position: absolute;
    width: 115px;
    height: 230px;
    border-radius: 55px / 25px;
    background: linear-gradient(90deg, #cfd8e6, #fff, #99a7ba);
    box-shadow: inset -12px 0 25px rgba(0,0,0,.18), 0 20px 40px rgba(0,0,0,.25);
    animation: floatCan 4s ease-in-out infinite;
}

.can-shape::before {
    content: "";
    position: absolute;
    top: 0;
    left: 8px;
    right: 8px;
    height: 28px;
    border-radius: 50%;
    background: #eef3f8;
    border: 2px solid #aeb9c8;
}

.can-one {
    top: 55px;
    left: 70px;
}

.can-two {
    top: 95px;
    right: 95px;
    height: 260px;
    background: linear-gradient(90deg, #f57224, #ffd5bd, #b64410);
    animation-delay: .4s;
}

.can-three {
    top: 150px;
    left: 210px;
    height: 200px;
    background: linear-gradient(90deg, #0c2d57, #88a9d6, #071b34);
    animation-delay: .8s;
}

@keyframes floatCan {
    0%, 100% {
        transform: translateY(0) rotate(-3deg);
    }
    50% {
        transform: translateY(-18px) rotate(3deg);
    }
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 44px;
}

.section-title span {
    color: #f57224;
    font-weight: 800;
}

.section-title h2 {
    font-size: 38px;
    color: #0c2d57;
    margin-top: 8px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 12px 35px rgba(12, 45, 87, 0.08);
    border: 1px solid #eef2f7;
    transition: .3s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(12, 45, 87, 0.14);
}

.product-card .icon {
    width: 58px;
    height: 58px;
    background: #eef4fb;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
}

.product-card h3 {
    color: #0c2d57;
    margin-bottom: 10px;
}

/* Catalog Cards */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.catalog-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(12,45,87,.08);
    border: 1px solid #edf1f7;
    transition: .3s;
}

.catalog-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(12,45,87,.14);
}

.catalog-img {
    height: 230px;
    background: #eef4fb;
}

.catalog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-body {
    padding: 22px;
}

.catalog-body small {
    color: #f57224;
    font-weight: 800;
}

.catalog-body h3 {
    color: #0c2d57;
    margin: 8px 0 10px;
}

.badge-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 14px 0;
}

.mini-badge {
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
}

.export-badge {
    background: #eafaf1;
    color: #027a48;
}

.local-badge {
    background: #eaf0f8;
    color: #0c2d57;
}

/* Why Section */
.why-section {
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.why-grid h2 {
    font-size: 40px;
    color: #0c2d57;
    margin-bottom: 16px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-list div {
    background: #f6f8fb;
    border-left: 4px solid #f57224;
    padding: 16px 18px;
    border-radius: 14px;
    font-weight: 700;
}

/* Export */
.export-box {
    padding-top: 30px;
}

.export-inner {
    background:
        linear-gradient(135deg, rgba(12,45,87,.95), rgba(7,27,52,.96)),
        url("../images/export-bg.jpg");
    background-size: cover;
    border-radius: 34px;
    padding: 60px;
    color: #fff;
    text-align: center;
}

.export-inner h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.export-inner p {
    max-width: 800px;
    margin: 0 auto 28px;
    color: #dce6f5;
}

/* Clients */
.clients-section {
    background: #ffffff;
}

.client-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.client-logo-card {
    background: #f6f8fb;
    border: 1px solid #edf1f7;
    border-radius: 20px;
    padding: 18px;
    text-align: center;
    transition: .3s;
}

.client-logo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(12,45,87,.12);
}

.client-logo-card img {
    width: 100%;
    height: 72px;
    object-fit: contain;
    margin-bottom: 10px;
}

.client-logo-card p {
    font-size: 13px;
    font-weight: 800;
    color: #0c2d57;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(12,45,87,.08);
    border: 1px solid #edf1f7;
}

.gallery-image {
    height: 260px;
    background: #eef4fb;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-body {
    padding: 18px;
}

.gallery-body small {
    color: #f57224;
    font-weight: 800;
}

.gallery-body h3 {
    color: #0c2d57;
    margin-top: 5px;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #071b34, #0c2d57);
    color: #fff;
    padding: 70px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 44px;
    margin-bottom: 10px;
}

.page-hero p {
    color: #dce6f5;
    max-width: 720px;
    margin: auto;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 28px;
    align-items: start;
}

.info-box,
.form-box {
    background: #fff;
    border-radius: 26px;
    padding: 30px;
    box-shadow: 0 12px 35px rgba(12,45,87,.08);
    border: 1px solid #edf1f7;
}

.info-box h2,
.form-box h2 {
    color: #0c2d57;
    margin-bottom: 18px;
}

.contact-item {
    padding: 16px;
    background: #f6f8fb;
    border-radius: 18px;
    margin-bottom: 14px;
    border-left: 4px solid #f57224;
}

.contact-item strong {
    display: block;
    color: #0c2d57;
    margin-bottom: 5px;
}

.form-box label {
    display: block;
    font-weight: 800;
    color: #263445;
    margin-bottom: 8px;
}

.form-box input,
.form-box textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d8dee8;
    border-radius: 14px;
    margin-bottom: 16px;
    font-size: 15px;
}

.form-box textarea {
    min-height: 130px;
    resize: vertical;
}

.form-box input:focus,
.form-box textarea:focus {
    outline: none;
    border-color: #f57224;
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.msg {
    background: #eafaf1;
    color: #027a48;
    padding: 14px;
    border-radius: 14px;
    margin-bottom: 18px;
    font-weight: 800;
}

.error {
    background: #ffecec;
    color: #b42318;
    padding: 14px;
    border-radius: 14px;
    margin-bottom: 18px;
    font-weight: 800;
}

.map-box {
    height: 280px;
    background: #eaf0f8;
    border-radius: 22px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0c2d57;
    font-weight: 800;
    text-align: center;
    padding: 20px;
}

/* Footer */
.footer {
    background: #071b34;
    color: #dce6f5;
    padding-top: 55px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr;
    gap: 30px;
}

.footer h3,
.footer h4 {
    color: #fff;
    margin-bottom: 14px;
}

.footer p {
    margin-bottom: 7px;
    color: #b9c7d8;
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.social-links a {
    background: rgba(255,255,255,.08);
    color: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
}

.social-links a:hover {
    background: #f57224;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 18px;
    margin-top: 40px;
    font-size: 14px;
    color: #9eafc3;
}

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;
    background: #25d366;
    color: #fff;
    padding: 14px 20px;
    border-radius: 40px;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(0,0,0,.22);
    animation: whatsappPulse 1.8s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-4px);
    color: #fff;
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45); }
    70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Responsive */
@media (max-width: 1000px) {
    .client-logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .catalog-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .header-flex {
        flex-wrap: wrap;
        padding: 15px 0;
    }

    .main-nav {
        width: 100%;
        order: 3;
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px;
    }

    .quote-btn {
        display: none;
    }

    .hero-grid,
    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 38px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .client-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-card {
        min-height: 330px;
    }

    .can-shape {
        width: 80px;
        height: 160px;
    }

    .can-one {
        left: 30px;
    }

    .can-two {
        right: 40px;
    }

    .can-three {
        left: 135px;
    }

    .product-grid,
    .feature-list,
    .row {
        grid-template-columns: 1fr;
    }

    .section-title h2,
    .why-grid h2,
    .export-inner h2 {
        font-size: 28px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .export-inner {
        padding: 35px 22px;
        border-radius: 24px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        padding: 12px 16px;
        font-size: 14px;
    }
  
}
.cat-filter {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 35px;
}

.cat-filter a {
    background: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 800;
    border: 1px solid #e5e9f0;
    color: #0c2d57;
}

.cat-filter a.active,
.cat-filter a:hover {
    background: #f57224;
    color: #fff;
}

.empty {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    color: #667085;
}

.main-nav .nav-item {
    position: relative;
}

.main-nav .nav-item > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.drop-arrow {
    font-size: 12px;
}

.dropdown-menu {
    position: absolute;
    top: 130%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid #edf1f7;
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 18px 45px rgba(12,45,87,.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .25s;
    z-index: 9999;
}

.dropdown-menu a {
    display: block;
    padding: 11px 14px;
    border-radius: 12px;
    color: #0c2d57;
    font-weight: 800;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: #f57224;
    color: #fff;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media(max-width:900px) {
    .main-nav .nav-item {
        width: 100%;
    }

    .main-nav .nav-item > a {
        width: 100%;
        justify-content: center;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 14px;
        margin-top: 8px;
        width: 100%;
        display: none;
    }

    .has-dropdown:hover .dropdown-menu {
        display: block;
    }
}