/* =========================================================
   COMPONENTS CSS
   Navbar, footer, reusable components
========================================================= */

/* ---------- Navbar ---------- */
.site-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 82px;
    background-color: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(220, 232, 240, 0.8);
    backdrop-filter: blur(14px);
}

.navbar-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo img {
    width: 215px;
    height: auto;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.navbar-menu a {
    position: relative;
    color: var(--color-navy);
    font-size: 14px;
    font-weight: 800;
    transition: 0.25s ease;
}

.navbar-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: 0.25s ease;
}

.navbar-menu a:hover {
    color: var(--color-primary);
}

.navbar-menu a:hover::after {
    width: 100%;
}

.navbar-menu a.active {
    color: var(--color-primary);
}

.navbar-menu a.active::after {
    width: 100%;
    opacity: 1;
}

.navbar-cta {
    min-height: 42px;
    padding-inline: 20px;
}

.navbar-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--color-navy);
    transition: 0.25s ease;
}

/* ---------- Footer CTA ---------- */
.site-footer {
    background-color: var(--color-navy);
    color: var(--color-white);
}

.footer-cta {
    position: relative;
    padding: 36px 0;
    background:
        linear-gradient(90deg, rgba(7, 28, 58, 0.78), rgba(11, 103, 163, 0.75)),
        url("../images/backgrounds/footer-ocean.jpg");
    background-size: cover;
    background-position: center;
}

.footer-cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-cta h2 {
    margin-bottom: 6px;
    color: var(--color-white);
    font-size: clamp(28px, 3vw, 42px);
}

.footer-cta p {
    color: rgba(255, 255, 255, 0.82);
}

/* ---------- Footer Main ---------- */
.footer-main {
    padding: 52px 0 22px;
    background:
        linear-gradient(180deg, #061832 0%, #031020 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1.25fr;
    gap: 42px;
}

.footer-brand img {
    width: 215px;
    margin-bottom: 18px;
}

.footer-brand p {
    max-width: 280px;
    color: rgba(255, 255, 255, 0.72);
}

.footer-links h3,
.footer-contact h3 {
    margin-bottom: 16px;
    color: var(--color-white);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    transition: 0.25s ease;
}

.footer-links a:hover {
    color: var(--color-white);
    padding-left: 4px;
}

.footer-contact p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.footer-bottom {
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
}
/* ---------- Hero Section ---------- */
.hero-section {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(246, 249, 252, 0.96) 0%, rgba(246, 249, 252, 0.78) 42%, rgba(246, 249, 252, 0.18) 100%),
        url("../images/hero/hero-seafood.png");
    background-size: cover;
    background-position: center right;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 40%, rgba(43, 179, 217, 0.18), transparent 35%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(234, 245, 251, 0.42));
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 590px;
}

.hero-content h1 {
    margin-bottom: 22px;
    font-size: clamp(44px, 5vw, 68px);
}

.hero-content p {
    max-width: 520px;
    margin-bottom: 30px;
    color: #33435f;
    font-size: 18px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* ---------- Trust Badges ---------- */
.trust-badges-section {
    position: relative;
    z-index: 5;
    margin-top: -42px;
}

.trust-badges-card {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background-color: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    backdrop-filter: blur(14px);
}

.trust-badge-item {
    min-height: 92px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-right: 1px solid var(--color-border);
}

.trust-badge-item:last-child {
    border-right: 0;
}

.trust-badge-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background-color: var(--color-primary-soft);
    color: var(--color-primary);
    font-size: 22px;
}

.trust-badge-item h3 {
    margin-bottom: 2px;
    color: var(--color-navy);
    font-size: 15px;
    font-weight: 900;
}

.trust-badge-item p {
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.25;
}

/* ---------- Products Preview ---------- */
.products-preview-section {
    background-color: var(--color-white);
    padding-top: 78px;
}

.products-preview-header {
    margin-bottom: 34px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.products-preview-header h2 {
    max-width: 620px;
    margin-bottom: 12px;
}

.products-preview-header p {
    max-width: 640px;
}

.products-preview-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.product-preview-card {
    overflow: hidden;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: 0.25s ease;
}

.product-preview-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-card);
}

.product-preview-image {
    position: relative;
    height: 220px;
    display: block;
    overflow: hidden;
    background:
        linear-gradient(135deg, #dceef8, #f6f9fc);
}

.product-preview-image.image-placeholder::before {
    content: "Product Image";
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.product-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s ease;
}

.product-preview-card:hover .product-preview-image img {
    transform: scale(1.05);
}

.product-preview-body {
    padding: 22px;
}

.product-preview-meta {
    margin-bottom: 10px;
}

.product-preview-meta span {
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 999px;
    background-color: var(--color-primary-soft);
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-preview-body h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.product-preview-body h3 a {
    transition: 0.25s ease;
}

.product-preview-body h3 a:hover {
    color: var(--color-primary);
}

.product-preview-body p {
    min-height: 66px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.55;
}

.product-forms {
    min-height: 64px;
    margin-bottom: 18px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 8px;
}

.product-forms span {
    display: inline-flex;
    padding: 6px 9px;
    border-radius: 7px;
    background-color: var(--color-light);
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 700;
}

.product-preview-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 900;
}

.product-preview-link span {
    transition: 0.25s ease;
}

.product-preview-link:hover span {
    transform: translateX(4px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.product-card {
    overflow: hidden;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: 0.25s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.product-image {
    height: 145px;
    background:
        linear-gradient(135deg, #dceef8, #f6f9fc);
    overflow: hidden;
}

.product-image.image-placeholder::before {
    content: "Product Image";
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 800;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-body {
    min-height: 112px;
    padding: 18px 16px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.product-card h3 {
    margin-bottom: 6px;
    font-size: 18px;
}

.product-card p {
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.45;
}

.product-card-link {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: grid;
    place-items: center;
    margin-top: 2px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 900;
    transition: 0.25s ease;
}

.product-card-link:hover {
    background-color: var(--color-primary-dark);
    transform: translateX(2px);
}

/* ---------- About Preview ---------- */
.about-preview-section {
    padding-top: 40px;
}

.about-preview-grid {
    gap: 62px;
}

.about-preview-image {
    min-height: 330px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    background:
        linear-gradient(135deg, rgba(11, 103, 163, 0.28), rgba(43, 179, 217, 0.18)),
        url("../images/about/sulawesi-waters.jpg");
    background-size: cover;
    background-position: center;
}

.about-image-placeholder {
    width: 100%;
    min-height: 330px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(11, 103, 163, 0.65), rgba(7, 28, 58, 0.42));
}

.about-image-placeholder span {
    color: var(--color-white);
    font-weight: 800;
    letter-spacing: 0.04em;
}

.about-preview-content h2 {
    max-width: 520px;
    margin-bottom: 18px;
}

.about-preview-content p {
    max-width: 620px;
    margin-bottom: 14px;
}

.about-stats {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.about-stat-item {
    padding: 22px 16px;
    text-align: center;
    border-right: 1px solid var(--color-border);
}

.about-stat-item:last-child {
    border-right: 0;
}

.about-stat-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--color-primary);
    font-size: 22px;
    font-weight: 900;
}

.about-stat-item span {
    display: block;
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.3;
}

/* ---------- Export Process ---------- */
.export-process-section {
    background-color: var(--color-light);
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
    gap: 18px;
    align-items: center;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.process-number {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 900;
}

.process-step h3 {
    margin-bottom: 6px;
    font-size: 16px;
}

.process-step p {
    font-size: 13px;
    line-height: 1.45;
}

.process-arrow {
    color: var(--color-primary);
    font-size: 34px;
    font-weight: 300;
}

/* ---------- Why Choose Us ---------- */
.why-choose-section {
    background-color: var(--color-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.why-card {
    min-height: 190px;
    padding: 28px 22px;
    text-align: center;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: 0.25s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.why-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background-color: var(--color-primary-soft);
    color: var(--color-primary);
    font-size: 25px;
}

.why-card h3 {
    margin-bottom: 10px;
    font-size: 17px;
}

.why-card p {
    font-size: 13px;
    line-height: 1.5;
}

/* ---------- Global Reach ---------- */
.global-reach-section {
    background-color: var(--color-light);
}

.global-reach-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 42px;
    align-items: center;
}

.global-reach-content h2 {
    margin-bottom: 16px;
}

.global-reach-content > p {
    margin-bottom: 24px;
    color: #33435f;
    line-height: 1.75;
}

.global-reach-points {
    margin-bottom: 28px;
    display: grid;
    gap: 14px;
}

.global-reach-point {
    padding-left: 18px;
    border-left: 3px solid var(--color-primary);
}

.global-reach-point strong {
    display: block;
    margin-bottom: 4px;
    color: var(--color-navy);
    font-size: 15px;
    font-weight: 900;
}

.global-reach-point span {
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.55;
}

.global-reach-map-card {
    padding: 24px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background-color: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.global-reach-map {
    position: relative;
    height: 360px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background:
        linear-gradient(135deg, #eef7fb, #f8fbfd);
    border: 1px solid var(--color-border);
}

.global-reach-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.global-reach-summary {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.reach-summary-item {
    padding: 16px;
    border-radius: 12px;
    background-color: var(--color-light);
    border: 1px solid var(--color-border);
}

.reach-summary-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--color-navy);
    font-size: 14px;
    font-weight: 900;
}

.reach-summary-item span {
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.55;
}

/* ---------- Testimonials ---------- */
.testimonials-section {
    background-color: var(--color-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    padding: 28px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.testimonial-card > p {
    margin-bottom: 24px;
    color: #33435f;
    font-size: 15px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background-color: var(--color-primary-soft);
    color: var(--color-primary);
    font-weight: 900;
}

.testimonial-author h3 {
    margin-bottom: 2px;
    font-size: 15px;
}

.testimonial-author span {
    color: var(--color-muted);
    font-size: 13px;
}

/* ---------- Homepage CTA ---------- */
.homepage-cta-section {
    padding: 70px 0;
    background:
        linear-gradient(90deg, rgba(7, 28, 58, 0.88), rgba(11, 103, 163, 0.8)),
        url("../images/backgrounds/ocean-cta.jpg");
    background-size: cover;
    background-position: center;
}

.homepage-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.homepage-cta-box .section-label {
    color: #bfe9ff;
}

.homepage-cta-box h2 {
    max-width: 620px;
    margin-bottom: 12px;
    color: var(--color-white);
}

.homepage-cta-box p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.8);
}

.homepage-cta-box .btn {
    flex: 0 0 auto;
}

