﻿/*
Theme Name: Velrox Factory-Backed Seafood Supply
Theme URI: https://velrox.com
Author: Velrox
Author URI: https://velrox.com
Description: Premium custom WordPress theme for Velrox Factory-Backed Seafood Supply, a direct seafood sourcing, processing support, and packaging partner focused on European markets.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
License URI: https://velrox.com
Text Domain: velrox
Tags: business, corporate, seafood, sourcing, international, custom-colors, custom-logo, full-width-template, menu-support
*/

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    --navy:        #0D1B2A;
    --navy-deep:   #07111F;
    --ocean:       #1E3A5F;
    --steel:       #5E7184;
    --ice:         #EAF3F7;
    --teal:        #00A6CB;
    --teal-light:  #00C4EE;
    --teal-dark:   #0087A3;
    --grey-light:  #B7C2CC;
    --grey-medium: #7A8A96;
    --grey-bg:     #EEF3F6;
    --grey-border: #DDE3E8;
    --white:       #FFFFFF;
    --text-dark:   #0D1B2A;
    --text-body:   #2C3E50;
    --text-muted:  #5A6A7A;

    --font-primary:   'Raleway', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;

    --shadow-sm:   0 1px 3px rgba(13,27,42,0.08);
    --shadow-md:   0 4px 16px rgba(13,27,42,0.12);
    --shadow-lg:   0 8px 32px rgba(13,27,42,0.16);
    --shadow-xl:   0 18px 56px rgba(7,17,31,0.24);
    --shadow-teal: 0 4px 20px rgba(0,166,203,0.30);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition:      all 0.3s cubic-bezier(0.4,0,0.2,1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-secondary);
    color: var(--text-body);
    background: #F8FAFB;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-primary);
    font-weight: 800;
    line-height: 1.2;
    color: var(--navy);
}

p { font-family: var(--font-secondary); font-weight: 400; line-height: 1.7; color: var(--text-body); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: var(--font-secondary); }
ul { list-style: none; }

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}
.section-padding    { padding: 108px 0; }
.section-padding-sm { padding: 64px 0; }

/* ============================================
   SECTION LABELS
   ============================================ */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,166,203,0.08);
    border: 1px solid rgba(0,166,203,0.22);
    color: #0087A3;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
}
.section-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--teal);
    border-radius: 50%;
    flex-shrink: 0;
}

.section-title {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: clamp(30px,4vw,48px);
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.15;
}
.section-title .highlight { color: #006F91; }

.section-subtitle {
    font-family: var(--font-secondary);
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 580px;
}

.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

.divider {
    width: 56px; height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
    border-radius: 2px;
    margin: 16px 0 24px;
}
.divider.centered { margin: 16px auto 24px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    border: none;
}
.btn-primary {
    background: linear-gradient(135deg,#0087A3 0%,#00A6CB 100%);
    color: var(--white);
    box-shadow: var(--shadow-teal);
}
.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,166,203,0.40);
    color: var(--white);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.50);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.80);
    transform: translateY(-2px);
    color: var(--white);
}
.btn-outline-dark {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
}
.btn-outline-dark:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-lg { padding: 17px 36px; font-size: 15px; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-fade-up.visible { opacity: 1; transform: translateY(0); }

.animate-fade-in { opacity: 0; transition: opacity 0.6s ease; }
.animate-fade-in.visible { opacity: 1; }

.animate-slide-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-slide-left.visible { opacity: 1; transform: translateX(0); }

.animate-slide-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-slide-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.4s cubic-bezier(0.4,0,0.2,1),
                padding 0.4s cubic-bezier(0.4,0,0.2,1);
    padding: 22px 0;
    border-bottom: 1px solid transparent;
}

/* Solid white state — on scroll (homepage) or all inner pages */
.site-header.scrolled,
.site-header.site-header--solid {
    background: #FFFFFF;
    box-shadow: 0 1px 0 rgba(13,27,42,0.08), 0 4px 24px rgba(13,27,42,0.07);
    padding: 14px 0;
    border-bottom-color: var(--grey-border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* Logo */
.site-branding {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.site-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.logo-brand {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 0.12em;
    color: #FFFFFF;
    transition: color 0.4s ease;
}
.logo-sub {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 9px;
    letter-spacing: 0.12em;
    color: var(--teal);
    text-transform: uppercase;
    margin-top: 3px;
    transition: color 0.4s ease;
}

/* Logo text color — solid/scrolled state */
.site-header.scrolled .logo-brand,
.site-header.site-header--solid .logo-brand {
    color: var(--navy);
}

/* Nav links */
.site-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
}
.site-nav a,
.site-nav .menu-item > a {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.88);
    padding: 8px 13px;
    border-radius: 6px;
    text-decoration: none;
    transition: color 0.25s ease, background 0.25s ease;
    position: relative;
    display: block;
    white-space: nowrap;
}
.site-nav a::after,
.site-nav .menu-item > a::after {
    content: '';
    position: absolute;
    bottom: 3px; left: 13px; right: 13px;
    height: 2px;
    background: var(--teal);
    transform: scaleX(0);
    transition: transform 0.25s ease;
    border-radius: 1px;
}
.site-nav a:hover,
.site-nav .current-menu-item > a,
.site-nav .current_page_item > a {
    color: #FFFFFF;
    background: rgba(255,255,255,0.10);
}
.site-nav a:hover::after,
.site-nav .current-menu-item > a::after,
.site-nav .current_page_item > a::after {
    transform: scaleX(1);
}

/* Nav links — solid/scrolled state: dark text */
.site-header.scrolled .site-nav a,
.site-header.scrolled .site-nav .menu-item > a,
.site-header.site-header--solid .site-nav a,
.site-header.site-header--solid .site-nav .menu-item > a {
    color: var(--text-body);
}
.site-header.scrolled .site-nav a:hover,
.site-header.scrolled .site-nav .current-menu-item > a,
.site-header.scrolled .site-nav .current_page_item > a,
.site-header.site-header--solid .site-nav a:hover,
.site-header.site-header--solid .site-nav .current-menu-item > a,
.site-header.site-header--solid .site-nav .current_page_item > a {
    color: var(--navy);
    background: rgba(13,27,42,0.06);
}

/* WP nav menu structure reset */
.site-nav ul { display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; list-style: none; }
.site-nav li { position: relative; }
.site-nav .sub-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px); left: 0;
    background: #FFFFFF;
    border: 1px solid var(--grey-border);
    border-radius: 10px;
    min-width: 220px;
    padding: 8px;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(13,27,42,0.12);
}
.site-nav .menu-item:hover > .sub-menu { display: block; }
.site-nav .sub-menu a {
    font-size: 13px;
    padding: 8px 12px;
    color: var(--text-body);
    border-radius: 6px;
}
.site-nav .sub-menu a:hover { color: var(--navy); background: var(--grey-bg); }

/* Header CTA button */
.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.header-cta-btn {
    background: var(--teal);
    color: #FFFFFF;
    border: 2px solid var(--teal);
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.04em;
    padding: 9px 22px;
    border-radius: var(--radius-md);
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    white-space: nowrap;
}
.header-cta-btn:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: var(--shadow-teal);
}

/* Transparent state — outline CTA */
.site-header:not(.scrolled):not(.site-header--solid) .header-cta-btn {
    background: transparent;
    border-color: rgba(255,255,255,0.55);
    color: #FFFFFF;
}
.site-header:not(.scrolled):not(.site-header--solid) .header-cta-btn:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.85);
    box-shadow: none;
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.35);
    color: white;
    padding: 7px 9px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    line-height: 1;
}
.mobile-toggle:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.70);
}

/* Mobile toggle — solid/scrolled state */
.site-header.scrolled .mobile-toggle,
.site-header.site-header--solid .mobile-toggle {
    border-color: var(--grey-border);
    color: var(--navy);
}
.site-header.scrolled .mobile-toggle:hover,
.site-header.site-header--solid .mobile-toggle:hover {
    background: var(--grey-bg);
    border-color: var(--grey-medium);
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13,27,42,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 4px;
    padding: 80px 24px 40px;
}
.mobile-nav a {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 22px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 12px 32px;
    transition: color 0.2s;
    text-align: center;
    width: 100%;
    display: block;
    border-radius: 8px;
}
.mobile-nav a:hover,
.mobile-nav .current-menu-item > a { color: var(--teal); background: rgba(255,255,255,0.05); }
.mobile-nav ul { list-style: none; text-align: center; width: 100%; }
.mobile-nav ul li { padding: 0; }
.mobile-close {
    position: absolute;
    top: 20px; right: 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    width: 40px; height: 40px;
    border-radius: 8px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.mobile-close:hover { background: rgba(255,255,255,0.18); }

/* ============================================
   PAGE BANNER
   ============================================ */
.page-banner {
    position: relative;
    height: 380px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 64px;
    overflow: hidden;
}
.page-banner-bg {
    position: absolute;
    inset: 0;
}
.page-banner-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 35%;
}
.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,rgba(13,27,42,0.90) 0%,rgba(30,58,95,0.80) 100%);
}
.page-banner-content { position: relative; z-index: 2; }
.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.page-breadcrumb .sep { color: var(--teal); }
.page-breadcrumb .current { color: var(--teal); }
.page-banner-title {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: clamp(32px,5vw,56px);
    color: white;
    margin-bottom: 12px;
    line-height: 1.1;
}
.page-banner-subtitle {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: rgba(255,255,255,0.70);
    max-width: 540px;
    line-height: 1.65;
}

/* ============================================
   HERO CAROUSEL
   ============================================ */
.hero-carousel {
    position: relative;
    height: 100vh;
    min-height: 720px;
    overflow: hidden;
    background: var(--navy-deep);
}
.hero-carousel::before,
.hero-carousel::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.hero-carousel::before {
    background:
        radial-gradient(circle at 78% 24%, rgba(255,184,77,0.16), transparent 26%),
        radial-gradient(circle at 12% 78%, rgba(0,166,203,0.20), transparent 30%);
    mix-blend-mode: screen;
}
.hero-carousel::after {
    background: linear-gradient(180deg, transparent 72%, rgba(7,17,31,0.62) 100%);
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.12) contrast(1.04) brightness(1.04);
}

/* Individual slides */
.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    opacity: 0;
    transition: opacity 0.85s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
}
.hero-slide.active {
    opacity: 1;
    pointer-events: all;
}

/* Overlays */
.hero-slide-overlay,
.hero-slide-overlay--warm,
.hero-slide-overlay--deep {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5,18,22,0.55) 0%, rgba(12,42,47,0.46) 45%, rgba(15,82,88,0.18) 72%, rgba(4,12,18,0.40) 100%),
        linear-gradient(180deg, rgba(4,12,18,0.06) 0%, rgba(4,12,18,0.48) 100%);
}

/* Hero text content */
.hero-content { position: relative; z-index: 2; width: 100%; padding-top: clamp(146px, 18vh, 190px); }
.hero-text { max-width: 860px; margin-left: clamp(120px, 16vw, 200px); }

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8BE9FF;
    margin-bottom: 20px;
    padding: 8px 13px;
    background: rgba(7,17,31,0.42);
    border: 1px solid rgba(139,233,255,0.22);
    border-radius: 4px;
    backdrop-filter: blur(10px);
}
.tag-dot {
    width: 6px; height: 6px;
    background: var(--teal);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}
.hero-title {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 58px;
    color: white;
    line-height: 1.08;
    margin-bottom: 20px;
    letter-spacing: 0;
    text-shadow: 0 16px 48px rgba(0,0,0,0.32);
}
.hero-title span { color: #B7F4FF; }
.hero-subtitle {
    font-family: var(--font-secondary);
    font-size: clamp(15px,2vw,18px);
    color: rgba(236,247,252,0.82);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-actions .btn { color: #FFFFFF; }
.hero-actions .btn-outline {
    background: rgba(7,17,31,0.28);
    border-color: rgba(255,255,255,0.42);
}
.hero-actions .btn-primary {
    box-shadow: 0 14px 34px rgba(0,0,0,0.22), 0 8px 26px rgba(0,166,203,0.24);
}
.hero-supply-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    max-width: 760px;
    margin-top: 30px;
    border: 1px solid rgba(255,255,255,0.14);
    background: linear-gradient(135deg,rgba(5,18,22,0.78),rgba(9,80,88,0.34));
    box-shadow: 0 18px 60px rgba(0,0,0,0.24);
    backdrop-filter: blur(12px);
}
.hero-supply-panel div {
    padding: 18px 20px;
    border-right: 1px solid rgba(255,255,255,0.12);
}
.hero-supply-panel div:last-child { border-right: none; }
.hero-supply-panel span {
    display: block;
    margin-bottom: 5px;
    color: rgba(255,255,255,0.52);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.hero-supply-panel strong {
    color: white;
    font-family: var(--font-primary);
    font-size: 13px;
    letter-spacing: 0.02em;
}

/* Prev / Next arrow buttons */
.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.30);
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.hero-prev { left: 32px; }
.hero-next { right: 32px; }
.hero-prev:hover,
.hero-next:hover {
    background: var(--teal);
    border-color: var(--teal);
    transform: translateY(-50%) scale(1.08);
}

/* Pagination dots */
.hero-dots {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
    align-items: center;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.55);
    background: transparent;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    padding: 0;
}
.hero-dot.active {
    background: var(--teal);
    border-color: var(--teal);
    transform: scale(1.3);
}
.hero-dot:hover:not(.active) {
    border-color: rgba(255,255,255,0.90);
    background: rgba(255,255,255,0.25);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: none; /* Hidden when dots are visible */
}
.scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom,rgba(255,255,255,0.6),transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%,100% { opacity: 1; transform: scaleY(1); }
    50%      { opacity: 0.5; transform: scaleY(0.7); }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hero-prev,
    .hero-next {
        width: 40px;
        height: 40px;
    }
    .hero-prev { left: 16px; }
    .hero-next { right: 16px; }
    .hero-dots { bottom: 32px; }
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
    background: linear-gradient(90deg,#07111F 0%,#10243A 50%,#07111F 100%);
    border-top: 1px solid rgba(139,233,255,0.10);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    overflow: hidden;
}
.trust-strip .container-wide { max-width: 100%; box-sizing: border-box; }
.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 22px 18px;
    border-right: 1px solid rgba(255,255,255,0.07);
    transition: background 0.25s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(0,166,203,0.10); }
.trust-icon {
    color: var(--teal);
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.trust-icon svg { width: 18px; height: 18px; }
.trust-label {
    font-family: var(--font-secondary);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: rgba(236,247,252,0.76);
    line-height: 1.35;
}

/* ============================================
   ABOUT SECTION (HOME)
   ============================================ */
.about-home-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(110deg,#FFFFFF 0%,#FFFFFF 54%,#EAF3F7 54%,#F8FAFB 100%);
}
.about-home-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 46%;
    height: 100%;
    background: linear-gradient(180deg,rgba(0,166,203,0.08),transparent 44%),
                repeating-linear-gradient(90deg,rgba(13,27,42,0.035) 0 1px,transparent 1px 70px);
    pointer-events: none;
}
.about-home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 84px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.about-img-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(7,17,31,0.26);
}
.about-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,transparent 45%,rgba(7,17,31,0.62) 100%);
    pointer-events: none;
}
.about-img-wrapper img { width: 100%; height: 520px; object-fit: cover; transition: transform 0.6s ease; filter: saturate(0.88) contrast(1.08); }
.about-img-wrapper:hover img { transform: scale(1.04); }
.about-badge {
    position: absolute;
    bottom: 24px; left: 24px;
    z-index: 1;
    background: rgba(7,17,31,0.82);
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid rgba(139,233,255,0.28);
    border-radius: 4px;
    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 14px 34px rgba(0,0,0,0.28);
    backdrop-filter: blur(10px);
}
.about-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 24px 0 32px; }
.check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-secondary);
    font-size: 13.5px;
    color: #23384A;
}
.supply-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin: 28px 0 32px;
    background: rgba(13,27,42,0.14);
    border: 1px solid rgba(13,27,42,0.12);
}
.supply-metrics div {
    background: #F8FAFB;
    padding: 18px 16px;
}
.supply-metrics strong {
    display: block;
    color: var(--navy);
    font-family: var(--font-primary);
    font-size: 22px;
    line-height: 1;
    margin-bottom: 7px;
}
.supply-metrics span {
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.35;
}
.check-item::before {
    content: '';
    width: 16px; height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300A6CB' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E") center/contain no-repeat;
    flex-shrink: 0;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg,#F4F8FA 0%,#E6F0F4 100%);
}
.section-cold-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1180px, calc(100% - 48px));
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg,transparent,rgba(0,166,203,0.45),transparent);
    animation: serviceSignal 4.5s linear infinite;
}
.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,rgba(13,27,42,0.045) 1px,transparent 1px) 0 0 / 118px 118px,
        linear-gradient(0deg,rgba(13,27,42,0.030) 1px,transparent 1px) 0 0 / 118px 118px;
    pointer-events: none;
}
.services-section .container { position: relative; z-index: 1; }
.services-section .section-subtitle { color: rgba(13,27,42,0.58); }
.services-home-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
    margin-top: 14px;
    padding: 42px 0 10px;
}
.services-home-grid::before {
    content: '';
    position: absolute;
    top: 94px;
    left: 7%;
    right: 7%;
    height: 2px;
    background: linear-gradient(90deg,rgba(13,27,42,0.16),rgba(0,166,203,0.72),rgba(13,27,42,0.16));
}
.services-home-grid::after {
    content: '';
    position: absolute;
    top: 90px;
    left: 7%;
    width: 86%;
    height: 10px;
    background: linear-gradient(90deg,transparent,rgba(255,255,255,0.86),transparent);
    transform: skewX(-18deg);
    animation: serviceRouteScan 3.8s ease-in-out infinite;
}
.service-card {
    background: rgba(255,255,255,0.88);
    border-radius: 6px;
    padding: 0 22px 28px;
    border: 1px solid rgba(13,27,42,0.12);
    box-shadow: 0 22px 54px rgba(7,17,31,0.08);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,rgba(0,166,203,0.10),transparent 46%);
    pointer-events: none;
}
.service-card:nth-child(even) { margin-top: 34px; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 28px 64px rgba(7,17,31,0.15); border-color: rgba(0,166,203,0.34); }
.service-node {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 24px;
    margin-bottom: 24px;
}
.service-icon {
    width: 58px; height: 58px;
    background: var(--navy);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-light);
    border: 1px solid rgba(0,166,203,0.34);
    box-shadow: 0 12px 30px rgba(7,17,31,0.16);
    transition: background 0.3s ease, color 0.3s ease;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card:hover .service-icon { background: var(--teal); color: white; }
.service-card:hover .service-icon svg { stroke: white; }
.service-copy {
    position: relative;
    z-index: 1;
}
.service-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    margin-bottom: 12px;
    padding: 3px 9px;
    border-radius: 4px;
    background: rgba(0,166,203,0.10);
    border: 1px solid rgba(0,166,203,0.24);
    color: #087D99;
    font-family: var(--font-secondary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    animation: serviceDocPulse 3s ease-in-out infinite;
}
.service-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 17px;
    color: var(--navy);
    margin-bottom: 12px;
}
.service-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; margin-bottom: 0; }
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
    transition: gap 0.2s;
}
.service-link:hover { gap: 10px; color: var(--teal); }
.service-link::after {
    content: '→';
    font-size: 14px;
}
.service-step-num {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 24px;
    color: rgba(13,27,42,0.22);
    line-height: 1;
    min-width: 42px;
}
.service-route-console {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 44px auto 0;
    padding: 16px 22px;
    max-width: 920px;
    border: 1px solid rgba(13,27,42,0.12);
    background: rgba(255,255,255,0.62);
    color: var(--navy);
    box-shadow: 0 18px 46px rgba(7,17,31,0.06);
}
.service-route-console span,
.service-route-console strong {
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.service-route-console strong { color: #087D99; }
.service-route-console i {
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg,rgba(13,27,42,0.18),rgba(0,166,203,0.75));
}
@keyframes serviceSignal {
    0%,100% { opacity: 0.45; }
    50% { opacity: 1; }
}
@keyframes serviceRouteScan {
    0% { transform: translateX(-62%) skewX(-18deg); opacity: 0; }
    20%,70% { opacity: 0.75; }
    100% { transform: translateX(62%) skewX(-18deg); opacity: 0; }
}
@keyframes serviceDocPulse {
    0%,100% { box-shadow: 0 0 0 rgba(0,166,203,0); }
    50% { box-shadow: 0 0 18px rgba(0,166,203,0.18); }
}

/* ============================================
   STRENGTHS SECTION
   ============================================ */
.strengths-section {
    background: linear-gradient(180deg,#FFFFFF 0%,#F3F7FA 100%);
}
.strengths-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.strengths-items { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.strength-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    background: rgba(255,255,255,0.72);
    border-radius: 6px;
    border: 1px solid rgba(13,27,42,0.10);
    transition: all 0.3s;
}
.strength-item:hover { background: var(--white); box-shadow: 0 18px 42px rgba(7,17,31,0.10); border-color: rgba(0,166,203,0.22); }
.strength-icon {
    width: 44px; height: 44px;
    background: rgba(0,166,203,0.10);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
    transition: all 0.3s;
}
.strength-icon svg { width: 24px; height: 24px; }
.strength-item:hover .strength-icon { background: var(--teal); color: white; }
.strength-title { font-family: var(--font-primary); font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 6px; }
.strength-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   APPROACH SECTION
   ============================================ */
.approach-section { position: relative; overflow: hidden; background: var(--navy-deep); }
.approach-bg { position: absolute; inset: 0; }
.approach-bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.72) contrast(1.12); }
.approach-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(90deg,rgba(4,12,22,0.96) 0%,rgba(13,27,42,0.92) 48%,rgba(13,27,42,0.72) 100%),
        radial-gradient(circle at 78% 20%,rgba(0,166,203,0.20),transparent 30%);
}
.approach-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(255,255,255,0.035) 1px,transparent 1px) 0 0 / 110px 110px;
    pointer-events: none;
}
.approach-content { position: relative; z-index: 2; }
.approach-steps { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 48px; }
.approach-step {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    backdrop-filter: blur(8px);
    transition: all 0.3s;
}
.approach-step:hover { background: rgba(0,166,203,0.13); border-color: rgba(139,233,255,0.34); transform: translateY(-4px); }
.step-num {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 40px;
    color: rgba(0,166,203,0.30);
    line-height: 1;
    flex-shrink: 0;
    width: 56px;
    transition: color 0.3s;
}
.approach-step:hover .step-num { color: rgba(0,166,203,0.60); }
.step-content h4 { font-family: var(--font-primary); font-weight: 700; font-size: 16px; color: white; margin-bottom: 8px; }
.step-content p { font-size: 13.5px; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* ============================================
   PRODUCT SHOWCASE
   ============================================ */
.products-showcase {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg,#F9FBFC 0%,#E8F1F5 100%);
}
.products-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,rgba(13,27,42,0.030) 1px,transparent 1px) 0 0 / 116px 116px,
        radial-gradient(circle at 88% 14%,rgba(0,166,203,0.12),transparent 28%);
    pointer-events: none;
}
.products-showcase .container { position: relative; z-index: 1; }
.showcase-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) 1.8fr;
    gap: 28px;
    align-items: stretch;
    margin-bottom: 42px;
}
.showcase-intel-panel {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    padding: 32px;
    border-radius: 6px;
    background:
        linear-gradient(180deg,rgba(13,27,42,0.96),rgba(7,17,31,0.98)),
        var(--navy);
    color: white;
    border: 1px solid rgba(139,233,255,0.20);
    box-shadow: 0 28px 70px rgba(7,17,31,0.22);
}
.showcase-intel-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,transparent 0%,rgba(139,233,255,0.12) 42%,transparent 72%);
    transform: translateX(-80%);
    animation: showcaseColdScan 6s ease-in-out infinite;
    pointer-events: none;
}
.showcase-intel-kicker {
    position: relative;
    z-index: 1;
    display: inline-flex;
    margin-bottom: 18px;
    padding: 4px 10px;
    border: 1px solid rgba(139,233,255,0.30);
    color: var(--teal-light);
    font-family: var(--font-secondary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}
.showcase-intel-panel h3 {
    position: relative;
    z-index: 1;
    font-family: var(--font-primary);
    font-size: 24px;
    line-height: 1.2;
    color: white;
    margin-bottom: 16px;
}
.showcase-intel-panel p {
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,0.72);
    font-size: 14px;
    line-height: 1.7;
}
.showcase-intel-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
}
.showcase-intel-grid div {
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.11);
    background: rgba(255,255,255,0.045);
}
.showcase-intel-grid span {
    display: block;
    margin-bottom: 5px;
    color: rgba(255,255,255,0.54);
    font-family: var(--font-secondary);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.showcase-intel-grid strong {
    display: block;
    color: white;
    font-family: var(--font-primary);
    font-size: 13px;
}
.showcase-temp-strip {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 12px;
    align-items: center;
    margin-top: 28px;
    padding: 14px;
    border: 1px solid rgba(139,233,255,0.24);
    background: rgba(0,166,203,0.10);
}
.showcase-temp-strip span,
.showcase-temp-strip b {
    color: white;
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.showcase-temp-strip b { color: var(--teal-light); }
.showcase-temp-strip i {
    display: block;
    height: 4px;
    background: linear-gradient(90deg,var(--teal),rgba(139,233,255,0.28),var(--teal));
    background-size: 200% 100%;
    animation: showcaseTempMove 2.4s linear infinite;
}
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 0;
}
.showcase-card {
    border-radius: 6px;
    overflow: hidden;
    background: white;
    border: 1px solid rgba(7,17,31,0.14);
    box-shadow: 0 18px 44px rgba(7,17,31,0.08);
    transition: transform 0.30s ease, box-shadow 0.30s ease, border-color 0.30s ease;
}
.showcase-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0,166,203,0.26);
    box-shadow: 0 26px 64px rgba(7,17,31,0.16);
}
.showcase-img {
    position: relative;
    height: 188px;
    overflow: hidden;
}
.showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
    filter: saturate(0.92) contrast(1.06);
}
.showcase-card:hover .showcase-img img { transform: scale(1.045); }
.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(7,17,31,0.02) 30%, rgba(7,17,31,0.58) 100%);
}
.showcase-body {
    padding: 20px;
    background: white;
}
.showcase-type {
    margin-bottom: 8px;
    color: #087D99;
    font-family: var(--font-secondary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}
.showcase-name {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 17px;
    color: var(--navy);
    margin-bottom: 12px;
}
.showcase-specs {
    display: grid;
    gap: 6px;
    margin-bottom: 14px;
}
.showcase-specs span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12.5px;
    line-height: 1.35;
}
.showcase-specs span::before {
    content: '';
    width: 6px;
    height: 6px;
    border: 1px solid rgba(0,166,203,0.55);
    background: rgba(0,166,203,0.12);
    flex: 0 0 auto;
}
.showcase-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.showcase-tag {
    font-family: var(--font-secondary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal);
    background: rgba(0,166,203,0.12);
    border: 1px solid rgba(0,166,203,0.25);
    padding: 3px 10px;
    border-radius: 100px;
}
.showcase-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(13,27,42,0.09);
    color: var(--navy);
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 700;
}
.showcase-status i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 4px rgba(0,166,203,0.12);
    animation: showcaseStatusPulse 2.6s ease-in-out infinite;
}
.showcase-footer {
    text-align: center;
}
@keyframes showcaseColdScan {
    0%,35% { transform: translateX(-84%); opacity: 0; }
    50% { opacity: 1; }
    75%,100% { transform: translateX(84%); opacity: 0; }
}
@keyframes showcaseTempMove {
    0% { background-position: 0 0; }
    100% { background-position: 200% 0; }
}
@keyframes showcaseStatusPulse {
    0%,100% { box-shadow: 0 0 0 4px rgba(0,166,203,0.12); }
    50% { box-shadow: 0 0 0 7px rgba(0,166,203,0.06); }
}

/* ============================================
   COMMERCIAL CAPABILITIES
   ============================================ */
.capabilities-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,#07111F 0%,#10243A 58%,#07111F 100%);
}
.capabilities-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(255,255,255,0.035) 1px,transparent 1px) 0 0 / 118px 118px,
                radial-gradient(circle at 18% 0%,rgba(0,166,203,0.15),transparent 30%);
    pointer-events: none;
}
.capabilities-section .container { position: relative; z-index: 1; }
.capabilities-section .section-title { color: white; }
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.cap-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.cap-card:hover {
    background: rgba(0,166,203,0.10);
    border-color: rgba(0,166,203,0.28);
    transform: translateY(-3px);
}
.cap-icon {
    width: 44px;
    height: 44px;
    background: rgba(0,166,203,0.14);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
    transition: background 0.25s ease;
}
.cap-icon svg { width: 24px; height: 24px; }
.cap-card:hover .cap-icon { background: var(--teal); color: white; }
.cap-body { flex: 1; }
.cap-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    color: white;
    margin-bottom: 5px;
}
.cap-desc {
    font-family: var(--font-secondary);
    font-size: 12.5px;
    color: rgba(255,255,255,0.55);
    line-height: 1.55;
    margin: 0;
}

/* ============================================
   WHY CARDS
   ============================================ */
.why-home-section {
    background: #FFFFFF;
}
.why-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; }
.why-card {
    padding: 28px 24px;
    border: 1px solid rgba(13,27,42,0.10);
    border-radius: 6px;
    transition: all 0.3s;
    text-align: left;
    background: linear-gradient(180deg,#FFFFFF 0%,#F8FAFB 100%);
}
.why-card:hover { border-color: rgba(0,166,203,0.34); box-shadow: 0 18px 42px rgba(7,17,31,0.10); transform: translateY(-4px); }
.why-icon {
    width: 48px; height: 48px;
    background: rgba(0,166,203,0.08);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin: 0 0 16px;
    transition: all 0.3s;
}
.why-icon svg { width: 22px; height: 22px; }
.why-card:hover .why-icon { background: var(--teal); color: white; }
.why-card h4 { font-family: var(--font-primary); font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 10px; }
.why-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   GLOBAL TRADE SECTION
   ============================================ */
.network-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg,#06101D 0%,#0A1828 52%,#07111F 100%);
}
.global-inner {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    padding: 70px 64px;
    min-height: 520px;
    display: grid;
    grid-template-columns: minmax(320px,0.72fr) minmax(520px,1.1fr);
    gap: 42px;
    align-items: center;
    background:
        linear-gradient(135deg,rgba(8,35,42,0.96) 0%,rgba(11,63,74,0.90) 48%,rgba(18,59,52,0.96) 100%);
    border: 1px solid rgba(162,220,211,0.18);
    box-shadow: 0 34px 90px rgba(1,20,22,0.34);
}
.global-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 82%,rgba(255,184,77,0.06),transparent 30%),
        linear-gradient(150deg,rgba(255,255,255,0.055),transparent 46%);
    opacity: 0.82;
}
.global-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(90deg,rgba(4,22,24,0.94) 0%,rgba(5,36,42,0.70) 43%,rgba(5,36,42,0.22) 100%);
}
.global-content { position: relative; z-index: 3; max-width: 560px; }
.global-content h2 { color: white; font-size: clamp(26px,3.5vw,40px); margin-bottom: 16px; }
.global-content p { color: rgba(255,255,255,0.75); max-width: 520px; margin-bottom: 32px; font-size: 16px; line-height: 1.7; }
.global-content p:not(.global-copy) { display: none; }
.global-tags { display: flex; gap: 12px; flex-wrap: wrap; }
.global-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 8px 16px;
    border-radius: 4px;
    color: white;
    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(4px);
}
.global-tag svg { color: var(--teal); width: 18px; height: 18px; }
.global-map-visual {
    position: relative;
    z-index: 2;
    min-width: 0;
}
.global-map-shell {
    position: relative;
    overflow: hidden;
    min-height: 380px;
    border-radius: 6px;
    border: 1px solid rgba(162,220,211,0.18);
    background:
        radial-gradient(circle at 65% 42%,rgba(0,166,203,0.10),transparent 40%),
        linear-gradient(180deg,rgba(255,255,255,0.045),rgba(255,255,255,0.014));
    box-shadow: inset 0 0 56px rgba(162,220,211,0.035), 0 24px 70px rgba(0,0,0,0.20);
}
.global-map-shell::before {
    content: '';
    position: absolute;
    inset: -20%;
    background:
        linear-gradient(165deg,transparent 0 22%,rgba(183,244,255,0.055) 23%,transparent 34%),
        linear-gradient(15deg,transparent 0 48%,rgba(183,244,255,0.04) 49%,transparent 62%);
    pointer-events: none;
}
.global-map-svg {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    min-height: 380px;
}
.global-map-grid,
.global-map-routes {
    display: none;
}
.global-ocean-texture path {
    fill: none;
    stroke: rgba(183,244,255,0.13);
    stroke-width: 2;
    stroke-linecap: round;
}
.global-map-land path {
    fill: rgba(202,224,210,0.20);
    stroke: rgba(202,224,210,0.34);
    stroke-width: 1.2;
}
.global-route {
    fill: none;
    stroke: rgba(255,184,77,0.36);
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-dasharray: none;
    animation: none;
}
.global-route--two { opacity: 0.42; }
.global-seafood-cues {
    fill: none;
    stroke: rgba(183,244,255,0.34);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.global-harbor-line {
    opacity: 0.44;
}
.global-vessel {
    opacity: 0.48;
}
.global-fish-mark {
    opacity: 0.34;
}
.global-fish-mark circle {
    fill: rgba(183,244,255,0.50);
    stroke: none;
}
.global-marker circle {
    fill: rgba(255,184,77,0.82);
    stroke: rgba(255,226,181,0.64);
    stroke-width: 1.5;
}
.global-marker text {
    fill: rgba(236,247,252,0.78);
    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.global-marker--destination circle:first-child {
    stroke: rgba(183,244,255,0.66);
    fill: rgba(183,244,255,0.72);
}
.global-map-readout {
    position: absolute;
    left: 22px;
    bottom: 22px;
    z-index: 2;
    display: grid;
    gap: 4px;
    padding: 12px 14px;
    border: 1px solid rgba(139,233,255,0.16);
    background: rgba(4,12,22,0.68);
    backdrop-filter: blur(8px);
}
.global-map-readout span,
.global-map-readout strong {
    font-family: var(--font-secondary);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.global-map-readout span { color: rgba(236,247,252,0.58); }
.global-map-readout strong { color: rgba(236,247,252,0.88); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,#07111F 0%,#0D1B2A 55%,#12324A 100%);
    padding: 92px 0;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%,rgba(0,166,203,0.16),transparent 34%);
    pointer-events: none;
}
.cta-inner { text-align: center; max-width: 620px; margin: 0 auto; position: relative; z-index: 1; }
.cta-inner h2 { font-family: var(--font-primary); font-weight: 800; font-size: clamp(28px,3.5vw,40px); color: white; margin-bottom: 16px; }
.cta-inner p { color: rgba(255,255,255,0.68); font-size: 16px; margin-bottom: 36px; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-points { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.about-point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-secondary);
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.5;
}
.about-point::before {
    content: '';
    width: 15px; height: 15px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300A6CB' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E") center/contain no-repeat;
    flex-shrink: 0;
    margin-top: 2px;
}
.about-img-stack { position: relative; }
.about-img-main { border-radius: 16px; overflow: hidden; }
.about-img-main img { width: 100%; height: 460px; object-fit: cover; }
.about-img-secondary {
    position: absolute;
    bottom: -24px; right: -24px;
    width: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid white;
}
.about-img-secondary img { width: 100%; height: 160px; object-fit: cover; }

.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.value-card {
    background: white;
    border-radius: 12px;
    padding: 32px 28px;
    border: 1px solid var(--grey-border);
    transition: all 0.3s;
    text-align: center;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(0,166,203,0.20); }
.value-icon {
    width: 56px; height: 56px;
    background: rgba(0,166,203,0.10);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin: 0 auto 20px;
    transition: all 0.3s;
}
.value-icon svg { width: 22px; height: 22px; }
.value-card:hover .value-icon { background: var(--teal); color: white; }
.value-title { font-family: var(--font-primary); font-weight: 700; font-size: 18px; color: var(--navy); margin-bottom: 12px; }

/* Timeline */
.timeline { position: relative; max-width: 900px; margin: 0 auto; padding: 0 0 40px; }
.timeline-line {
    position: absolute;
    left: 50%; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom,var(--teal),var(--ocean));
    transform: translateX(-50%);
}
.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
    margin-bottom: 40px;
    position: relative;
}
.timeline-item.right { justify-content: flex-start; padding-right: 0; padding-left: calc(50% + 40px); }
.timeline-item::after {
    content: '';
    position: absolute;
    left: 50%; top: 20px;
    width: 14px; height: 14px;
    background: var(--teal);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px rgba(0,166,203,0.20);
}
.timeline-content {
    background: white;
    border: 1px solid var(--grey-border);
    border-radius: 12px;
    padding: 24px 28px;
    max-width: 320px;
    transition: all 0.3s;
}
.timeline-content:hover { box-shadow: var(--shadow-md); border-color: rgba(0,166,203,0.25); }
.timeline-year { font-family: var(--font-primary); font-weight: 800; font-size: 14px; color: var(--teal); letter-spacing: 0.06em; display: block; margin-bottom: 8px; }
.timeline-content h4 { font-family: var(--font-primary); font-weight: 700; font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.timeline-content p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

.timeline--three-card {
    max-width: 1080px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    padding-bottom: 0;
}
.timeline--three-card .timeline-line,
.timeline--three-card .timeline-item::after {
    display: none;
}
.timeline--three-card .timeline-item,
.timeline--three-card .timeline-item.right {
    display: block;
    padding: 0;
    margin-bottom: 0;
}
.timeline--three-card .timeline-content {
    max-width: none;
    height: 100%;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-detail-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.service-detail-card {
    background: white;
    border: 1px solid var(--grey-border);
    border-radius: 16px;
    padding: 36px 32px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.service-detail-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg,var(--teal),var(--teal-light));
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}
.service-detail-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }
.service-detail-card:hover::after { transform: scaleX(1); }
.sdc-icon {
    width: 64px; height: 64px;
    background: rgba(0,166,203,0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin-bottom: 24px;
    transition: all 0.3s;
}
.sdc-icon svg { width: 32px; height: 32px; }
.service-detail-card:hover .sdc-icon { background: var(--teal); color: white; }
.sdc-title { font-family: var(--font-primary); font-weight: 700; font-size: 19px; color: var(--navy); margin-bottom: 14px; }
.sdc-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.sdc-features { display: flex; flex-direction: column; gap: 8px; }
.sdc-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: var(--font-secondary);
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.5;
}
.sdc-features li::before {
    content: '✓';
    color: var(--teal);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 12px;
    margin-top: 1px;
}

.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.process-step { padding: 32px 28px; text-align: center; position: relative; }
.ps-number { font-family: var(--font-primary); font-weight: 800; font-size: 48px; color: rgba(0,166,203,0.15); line-height: 1; margin-bottom: 12px; }
.ps-icon {
    width: 48px; height: 48px;
    background: var(--teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 16px;
}
.ps-icon svg { width: 20px; height: 20px; }
.process-step h4 { font-family: var(--font-primary); font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 10px; }
.process-step p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }

/* ============================================
   WHY VELROX PAGE
   ============================================ */
.why-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-stat-card {
    background: var(--grey-bg);
    border: 1px solid var(--grey-border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}
.why-stat-card:hover { background: var(--navy); border-color: var(--navy); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-stat-num { font-family: var(--font-primary); font-weight: 800; font-size: 40px; color: var(--teal); line-height: 1; margin-bottom: 8px; }
.why-stat-label { font-family: var(--font-secondary); font-size: 13px; font-weight: 500; color: var(--text-muted); transition: color 0.3s; }
.why-stat-card:hover .why-stat-label { color: rgba(255,255,255,0.65); }

.advantages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.advantage-card {
    background: white;
    border: 1px solid var(--grey-border);
    border-radius: 16px;
    padding: 36px 32px;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}
.advantage-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg,var(--teal),var(--teal-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s;
}
.advantage-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }
.advantage-card:hover::before { transform: scaleX(1); }
.adv-tag {
    display: inline-block;
    font-family: var(--font-secondary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--teal);
    background: rgba(0,166,203,0.08);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.adv-icon {
    width: 56px; height: 56px;
    background: rgba(0,166,203,0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin-bottom: 20px;
    transition: all 0.3s;
}
.adv-icon svg { width: 28px; height: 28px; }
.advantage-card:hover .adv-icon { background: var(--teal); color: white; }
.advantage-card h3 { font-family: var(--font-primary); font-weight: 700; font-size: 17px; color: var(--navy); margin-bottom: 12px; }
.advantage-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.comparison-table { max-width: 760px; margin: 0 auto; border: 1px solid var(--grey-border); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); }
.comparison-header { background: var(--navy); padding: 16px 28px; display: grid; grid-template-columns: 1fr 160px 160px; }
.comparison-header span { font-family: var(--font-primary); font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: white; }
.comparison-header .col-velrox { color: var(--teal); text-align: center; }
.comparison-header .col-other { text-align: center; color: rgba(255,255,255,0.55); }
.comparison-row { padding: 14px 28px; border-bottom: 1px solid var(--grey-border); display: grid; grid-template-columns: 1fr 160px 160px; align-items: center; background: white; transition: background 0.2s; }
.comparison-row:last-child { border-bottom: none; }
.comparison-row:hover { background: var(--grey-bg); }
.comparison-row .col-feature { font-family: var(--font-secondary); font-size: 14px; color: var(--text-body); }
.comparison-row .col-velrox,
.comparison-row .col-other { text-align: center; font-size: 16px; }
.comparison-row .col-velrox { color: var(--teal); font-weight: 700; }
.comparison-row .col-other-no { color: #e05555; }

/* ============================================
   VISION MISSION PAGE
   ============================================ */
.vm-main-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.vm-main-card { border-radius: 20px; padding: 52px 48px; position: relative; overflow: hidden; }
.vision-card { background: var(--navy); color: white; }
.mission-card { background: var(--ocean); color: white; }
.vmc-accent { position: absolute; top: -80px; right: -80px; width: 260px; height: 260px; border-radius: 50%; background: rgba(0,166,203,0.08); pointer-events: none; }
.vmc-icon {
    width: 72px; height: 72px;
    background: rgba(0,166,203,0.15);
    border: 1px solid rgba(0,166,203,0.30);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin-bottom: 20px;
}
.vmc-icon svg { width: 40px; height: 40px; }
.vmc-tag { font-family: var(--font-secondary); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.vm-main-card h2 { font-family: var(--font-primary); font-weight: 800; font-size: clamp(20px,2.5vw,28px); color: white; line-height: 1.2; margin-bottom: 0; }
.vmc-divider { width: 48px; height: 2px; background: var(--teal); border-radius: 2px; margin: 20px 0; }
.vm-main-card p { color: rgba(255,255,255,0.72); font-size: 15px; line-height: 1.75; margin-bottom: 16px; }
.vmc-points { display: flex; flex-direction: column; gap: 8px; margin-top: 24px; }
.vmc-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-secondary);
    font-size: 13.5px;
    color: rgba(255,255,255,0.72);
    padding-left: 16px;
    position: relative;
}
.vmc-points li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; background: var(--teal); border-radius: 50%; }

.core-values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.cv-card { background: white; border: 1px solid var(--grey-border); border-radius: 14px; padding: 32px 28px; text-align: center; transition: all 0.3s; }
.cv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(0,166,203,0.20); }
.cv-icon { width: 52px; height: 52px; background: rgba(0,166,203,0.08); border-radius: 13px; display: flex; align-items: center; justify-content: center; color: var(--teal); margin: 0 auto 16px; transition: all 0.3s; }
.cv-icon svg { width: 20px; height: 20px; }
.cv-card:hover .cv-icon { background: var(--teal); color: white; }
.cv-card h4 { font-family: var(--font-primary); font-weight: 700; font-size: 16px; color: var(--navy); margin-bottom: 10px; }
.cv-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }

.goals-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.goal-card { background: white; border: 1px solid var(--grey-border); border-radius: 14px; padding: 28px 24px; transition: all 0.3s; position: relative; overflow: hidden; }
.goal-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(to bottom,var(--teal),var(--ocean)); }
.goal-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(0,166,203,0.25); }
.goal-year { font-family: var(--font-primary); font-weight: 800; font-size: 28px; color: var(--teal); margin-bottom: 8px; padding-left: 12px; }
.goal-card h4 { font-family: var(--font-primary); font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 10px; padding-left: 12px; }
.goal-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; padding-left: 12px; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: flex-start; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.contact-detail-item { display: flex; gap: 16px; align-items: flex-start; }
.cdi-icon {
    width: 48px; height: 48px;
    background: rgba(0,166,203,0.10);
    border: 1px solid rgba(0,166,203,0.20);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
}
.cdi-icon svg { width: 20px; height: 20px; }
.cdi-icon.whatsapp { background: rgba(37,211,102,0.12); border-color: rgba(37,211,102,0.25); }
.cdi-icon.whatsapp svg { color: #25D366; }
.cdi-label { font-family: var(--font-secondary); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.cdi-value { font-family: var(--font-secondary); font-size: 14px; color: var(--text-body); line-height: 1.5; }
.cdi-value a { color: var(--text-body); text-decoration: none; transition: color 0.2s; }
.cdi-value a:hover { color: var(--teal); }
.contact-hours { background: var(--grey-bg); border: 1px solid var(--grey-border); border-radius: 12px; padding: 24px; }
.contact-hours h4 { font-family: var(--font-primary); font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 16px; }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.hours-grid span { font-family: var(--font-secondary); font-size: 13px; color: var(--text-muted); }
.hours-grid .hours-value { color: var(--text-body); font-weight: 500; }

/* Form Card */
.contact-form-card { background: white; border: 1px solid var(--grey-border); border-radius: 20px; padding: 48px 44px; box-shadow: var(--shadow-md); }
.contact-form-card h3 { font-family: var(--font-primary); font-weight: 800; font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.contact-form-card > p { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }
.inquiry-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-family: var(--font-secondary); font-size: 12.5px; font-weight: 600; color: var(--navy); letter-spacing: 0.03em; }
.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-secondary);
    font-size: 14px;
    color: var(--text-body);
    background: var(--grey-bg);
    border: 1.5px solid var(--grey-border);
    border-radius: 8px;
    padding: 12px 16px;
    outline: none;
    transition: all 0.2s;
    resize: none;
    appearance: none;
    -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey-light); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    background: white;
    box-shadow: 0 0 0 3px rgba(0,166,203,0.10);
}
.form-submit { width: 100%; justify-content: center; }
.form-success { background: rgba(0,166,203,0.06); border: 1px solid rgba(0,166,203,0.20); border-radius: 12px; padding: 32px; text-align: center; display: none; }
.form-success.show { display: block; }
.form-success h4 { font-family: var(--font-primary); font-weight: 700; font-size: 20px; color: var(--navy); margin-bottom: 8px; margin-top: 12px; }
.form-success p { color: var(--text-muted); font-size: 14px; }
.form-error { background: #FFF0F0; border: 1px solid #FFD0D0; border-radius: 8px; padding: 12px 16px; font-family: var(--font-secondary); font-size: 13.5px; color: #C0392B; display: none; }
.form-error.show { display: flex; align-items: center; gap: 8px; }

/* ============================================
   IMPRESSUM PAGE
   ============================================ */
.impressum-section {
    background: #FFFFFF;
}
.impressum-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
    gap: 72px;
    align-items: flex-start;
}
.impressum-intro p {
    max-width: 420px;
    color: var(--text-muted);
}
.impressum-card {
    background: #FFFFFF;
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 44px;
}
.impressum-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 36px;
    margin: 30px 0;
}
.impressum-block + .impressum-block {
    margin-top: 30px;
}
.impressum-grid .impressum-block + .impressum-block {
    margin-top: 0;
}
.impressum-block h3 {
    color: var(--navy);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}
.impressum-block p {
    color: var(--text-body);
    font-size: 15px;
    margin: 0;
}
.impressum-block a {
    color: var(--teal-dark);
    font-weight: 600;
    transition: color 0.2s ease;
}
.impressum-block a:hover {
    color: var(--navy);
}
.impressum-note {
    margin-top: 34px;
    padding: 18px 20px;
    border-left: 4px solid var(--teal);
    background: var(--grey-bg);
    color: var(--text-body);
    font-family: var(--font-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: #080F18; color: rgba(255,255,255,0.7); }
.footer-top { padding: 80px 0 56px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; }

.footer-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-bottom: 20px; }
.footer-logo-icon { width: 40px; height: 40px; flex-shrink: 0; }
.footer-brand-name { font-family: var(--font-primary); font-weight: 800; font-size: 20px; letter-spacing: 0.12em; color: white; }
.footer-brand-sub { font-family: var(--font-secondary); font-size: 9px; letter-spacing: 0.1em; color: var(--teal); text-transform: uppercase; }
.footer-desc { font-family: var(--font-secondary); font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 24px; max-width: 280px; }
.social-links { display: flex; gap: 8px; }
.social-link {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.60);
    text-decoration: none;
    transition: all 0.25s;
}
.social-link:hover { background: var(--teal); border-color: var(--teal); color: white; transform: translateY(-2px); }
.social-link svg { width: 16px; height: 16px; }

.footer-heading { font-family: var(--font-primary); font-weight: 700; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: white; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a,
.footer-links li span {
    font-family: var(--font-secondary);
    font-size: 13.5px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-links li a::before {
    content: '•';
    color: var(--teal);
    font-size: 8px;
    opacity: 0;
    transition: opacity 0.2s;
}
.footer-links li a:hover { color: var(--teal); }
.footer-links li a:hover::before { opacity: 1; }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-family: var(--font-secondary); font-size: 13.5px; color: rgba(255,255,255,0.55); }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--teal); width: 15px; height: 15px; }
.footer-contact-item a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--teal); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.footer-bottom-inner p { font-family: var(--font-secondary); font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-family: var(--font-secondary); font-size: 13px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--teal); }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 9999;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    transition: var(--transition);
    text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.55); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ============================================
   STANDARD PAGE / BLOG
   ============================================ */
.page-content-wrap { padding-top: 80px; }
.entry-content { max-width: 800px; margin: 0 auto; padding: 64px 24px; }
.entry-content h1,
.entry-content h2,
.entry-content h3 { margin-bottom: 16px; margin-top: 32px; }
.entry-content p { margin-bottom: 18px; }
.entry-content ul,
.entry-content ol { padding-left: 24px; margin-bottom: 18px; }
.entry-content ul li,
.entry-content ol li { margin-bottom: 8px; line-height: 1.65; }

/* 404 */
.error-404-section { padding: 160px 0 96px; text-align: center; }
.error-404-section h1 { font-size: clamp(64px,12vw,120px); color: var(--teal); margin-bottom: 0; }
.error-404-section h2 { font-size: clamp(24px,3vw,36px); margin-bottom: 16px; }
.error-404-section p { color: var(--text-muted); max-width: 460px; margin: 0 auto 32px; }

/* ============================================
   PRODUCTS PAGE
   ============================================ */

/* Filter buttons */
.product-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
}
.product-filter-btn {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.04em;
    padding: 9px 22px;
    border-radius: 100px;
    border: 1.5px solid var(--grey-border);
    background: var(--white);
    color: var(--text-muted);
    cursor: pointer;
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
.product-filter-btn:hover {
    border-color: var(--teal);
    color: var(--teal);
    transform: translateY(-1px);
}
.product-filter-btn.active {
    background: var(--teal);
    border-color: var(--teal);
    color: #FFFFFF;
    box-shadow: var(--shadow-teal);
}

/* Products grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Product card */
.product-card {
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
}
.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(0,166,203,0.25);
}

.product-card-img {
    background: linear-gradient(135deg, var(--navy) 0%, var(--ocean) 100%);
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
}
.product-card-img svg {
    opacity: 0.85;
}

.product-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

.product-card-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

/* Category badge */
.product-cat-badge {
    font-family: var(--font-secondary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
}
.product-cat-fish {
    background: rgba(0,166,203,0.10);
    color: var(--teal-dark);
    border: 1px solid rgba(0,166,203,0.20);
}
.product-cat-shellfish {
    background: rgba(30,58,95,0.10);
    color: var(--ocean);
    border: 1px solid rgba(30,58,95,0.18);
}
.product-cat-cephalopods {
    background: rgba(13,27,42,0.08);
    color: var(--text-muted);
    border: 1px solid rgba(13,27,42,0.12);
}

/* Spec badge */
.product-spec-badge {
    font-family: var(--font-secondary);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 100px;
    background: var(--grey-bg);
    color: var(--text-muted);
    border: 1px solid var(--grey-border);
    white-space: nowrap;
}

.product-name {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 15px;
    color: var(--navy);
    line-height: 1.3;
    margin: 0;
}

.product-desc {
    font-family: var(--font-secondary);
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin: 0;
}

.product-enquire-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--teal);
    text-decoration: none;
    margin-top: 4px;
    transition: gap 0.2s ease, color 0.2s ease;
}
.product-enquire-btn:hover {
    color: var(--teal-dark);
    gap: 10px;
}

.products-empty {
    text-align: center;
    padding: 64px 0;
    color: var(--text-muted);
    font-family: var(--font-secondary);
    font-size: 16px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .services-home-grid   { grid-template-columns: repeat(2,1fr); }
    .services-home-grid::before,
    .services-home-grid::after { display: none; }
    .service-card:nth-child(even) { margin-top: 0; }
    .showcase-layout      { grid-template-columns: 1fr; }
    .why-grid             { grid-template-columns: repeat(3,1fr); }
    .services-detail-grid { grid-template-columns: repeat(2,1fr); }
    .process-steps        { grid-template-columns: repeat(2,1fr); }
    .footer-grid          { grid-template-columns: 1fr 1fr; gap: 40px; }
    .products-grid        { grid-template-columns: repeat(3,1fr); }
    .trust-grid           { grid-template-columns: repeat(3,1fr); }
    .capabilities-grid    { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
    .desktop-nav-wrap     { display: none; }
    .header-actions .header-cta-btn { display: none; }
    .mobile-toggle        { display: flex; align-items: center; justify-content: center; }
    .trust-grid           { grid-template-columns: repeat(2,1fr); }
    .trust-item           { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .trust-item:nth-child(even) { border-left: 1px solid rgba(255,255,255,0.07); }
    .showcase-grid        { grid-template-columns: repeat(2,1fr); }
    .showcase-intel-panel { min-height: auto; }
    .capabilities-grid    { grid-template-columns: 1fr; }
    .mobile-menu          { display: flex; flex-direction: column; }

    .about-home-grid,
    .strengths-grid,
    .why-intro-grid,
    .about-who-grid       { grid-template-columns: 1fr; gap: 40px; }
    .strengths-items      { grid-template-columns: 1fr; }
    .approach-steps       { grid-template-columns: 1fr; }
    .vm-grid,
    .vm-main-grid         { grid-template-columns: 1fr; }
    .advantages-grid      { grid-template-columns: 1fr 1fr; }
    .global-inner         { grid-template-columns: 1fr; padding: 48px 32px; }
    .global-content       { max-width: 680px; }
    .stats-grid           { grid-template-columns: repeat(2,1fr); }
    .contact-grid         { grid-template-columns: 1fr; gap: 48px; }
    .impressum-layout     { grid-template-columns: 1fr; gap: 40px; }
    .about-img-main img   { height: 360px; }
    .timeline--three-card { grid-template-columns: 1fr; max-width: 520px; }
    .timeline-line        { display: none; }
    .timeline-item,
    .timeline-item.right  { padding: 0; justify-content: flex-start; }
    .timeline-item::after { display: none; }
    .timeline-content     { max-width: 100%; }
    .contact-form-card    { padding: 36px 28px; }
    .hero-text            { margin-left: 0; }
    .hero-supply-panel    { grid-template-columns: 1fr; max-width: 440px; }
    .hero-supply-panel div { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
    .hero-supply-panel div:last-child { border-bottom: none; }
    .supply-metrics       { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .section-padding      { padding: 64px 0; }
    .container            { padding: 0 16px; }
    .page-banner          { height: 300px; padding-bottom: 48px; }
    .vm-main-card         { padding: 40px 32px; }
    .products-grid        { grid-template-columns: repeat(2,1fr); gap: 16px; }
    .product-card-img     { height: 110px; }
    .hero-carousel        { min-height: 760px; }
    .hero-content         { padding-top: 104px; }
    .hero-title           { font-size: clamp(38px,12vw,58px); }
    .hero-subtitle        { max-width: 100%; }
    .about-home-section   { background: #FFFFFF; }
    .about-home-section::before { display: none; }
    .about-img-wrapper img { height: 420px; }
}

@media (max-width: 640px) {
    .services-home-grid   { grid-template-columns: 1fr; }
    .services-home-grid   { padding-top: 16px; }
    .service-card         { padding: 0 20px 24px; }
    .service-route-console { align-items: flex-start; flex-direction: column; }
    .service-route-console i { width: 1px; height: 18px; margin-left: 6px; }
    .services-detail-grid { grid-template-columns: 1fr; }
    .process-steps        { grid-template-columns: 1fr; }
    .why-grid             { grid-template-columns: 1fr 1fr; }
    .products-grid        { grid-template-columns: 1fr 1fr; }
    .showcase-grid        { grid-template-columns: 1fr; }
    .trust-grid           { grid-template-columns: 1fr; }
    .trust-item           { border-bottom: 1px solid rgba(255,255,255,0.07); border-right: none; border-left: none !important; }
    .values-grid          { grid-template-columns: 1fr 1fr; }
    .core-values-grid     { grid-template-columns: 1fr; }
    .goals-grid           { grid-template-columns: 1fr 1fr; }
    .advantages-grid      { grid-template-columns: 1fr; }
    .about-checklist      { grid-template-columns: 1fr; }
    .hero-actions         { flex-direction: column; }
    .hero-actions .btn    { text-align: center; justify-content: center; }
    .about-img-secondary  { width: 140px; right: -12px; bottom: -12px; }
    .form-row             { grid-template-columns: 1fr; }
    .impressum-card       { padding: 32px 24px; }
    .impressum-grid       { grid-template-columns: 1fr; gap: 24px; }
    .footer-grid          { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom-inner  { flex-direction: column; text-align: center; }
    .goals-grid           { grid-template-columns: 1fr; }
    .why-stats-grid       { grid-template-columns: 1fr 1fr; }
    .hero-tag             { font-size: 10px; line-height: 1.4; }
    .hero-supply-panel    { margin-top: 26px; }
    .hero-supply-panel div { padding: 14px 16px; }
    .global-inner         { padding: 42px 24px; min-height: 440px; gap: 30px; }
    .global-map-shell     { min-height: 300px; }
    .global-map-svg       { min-height: 300px; }
    .global-marker text   { font-size: 11px; }
    .global-route         { stroke-width: 1.5; opacity: 0.58; }
    .global-map-readout   { position: relative; left: auto; bottom: auto; margin: -20px 18px 18px; }
    .showcase-layout      { gap: 20px; }
    .showcase-intel-panel { padding: 26px 22px; }
    .showcase-intel-grid  { grid-template-columns: 1fr; }
    .showcase-temp-strip  { grid-template-columns: 1fr; }
    .showcase-img         { height: 220px; }
}

@media (max-width: 420px) {
    .products-grid { grid-template-columns: 1fr; }
    .hero-carousel { min-height: 800px; }
}
.hero-dots{
	display:none
}
.product-card-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.4s ease;
    transform-origin: center top;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}
