/* ══════════════════════════════════════════════════════
   AYON SEAFOOD LANKA — UNIFIED DESIGN SYSTEM
   Fiqua-inspired layout · Dark ocean palette
══════════════════════════════════════════════════════ */

/* ─── 1. VARIABLES ─────────────────────────────────── */
:root {
  --ocean-deep:  #0A1628;
  --ocean-mid:   #0F1D32;
  --ocean-light: #1A2A42;
  --ocean-card:  #152236;
  --coral:       #FF6B4A;
  --coral-h:     #E85A3A;
  --coral-lt:    #FF8F6B;
  --teal:        #14B8A6;
  --pearl:       #F8F9FA;
  --pearl-warm:  #F0F4F8;
  --text-p:      #0F172A;
  --text-s:      #475569;
  --text-l:      #94A3B8;
  --glass:       rgba(255,255,255,.07);
  --glass-b:     rgba(255,255,255,.11);
  --success:     #22C55E;
  --grad-coral:  linear-gradient(135deg,#FF6B4A 0%,#FF8F6B 100%);
  --grad-dark:   linear-gradient(135deg,#0A1628 0%,#0F1D32 50%,#1A2A42 100%);
  --r-sm:  8px;
  --r:     14px;
  --r-lg:  22px;
  --sh-sm: 0 2px 12px rgba(0,0,0,.08);
  --sh:    0 8px 32px rgba(0,0,0,.14);
  --sh-lg: 0 24px 60px rgba(0,0,0,.2);
}

/* ─── 2. RESET + BASE ───────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family:'Inter',sans-serif;
  color:var(--text-p);
  background:var(--pearl);
  overflow-x:hidden;
  line-height:1.65;
}
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; padding:0; margin:0; }
button { font-family:inherit; }

/* ─── 3. CONTAINER ──────────────────────────────────── */
.container { max-width:1280px; margin:0 auto; padding:0 60px; }

/* ─── 4. PRELOADER ──────────────────────────────────── */
#preloader {
  position:fixed; inset:0; z-index:9999;
  background:var(--ocean-deep);
  display:flex; align-items:center; justify-content:center;
  transition:opacity .5s;
}
#preloader.hidden { opacity:0; pointer-events:none; }
.preloader-fish {
  width:48px; height:48px;
  border:3px solid rgba(255,107,74,.2);
  border-top-color:var(--coral);
  border-radius:50%;
  animation:spin .8s linear infinite;
}
@keyframes spin { to { transform:rotate(360deg); } }

/* ─── 5. NAV ────────────────────────────────────────── */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  transition:all .4s;
}
.nav-inner {
  display:flex; justify-content:space-between; align-items:center;
  padding:20px 0;
}
.nav.scrolled .nav-inner { padding:13px 0; }
.nav.scrolled {
  background:rgba(10,22,40,.96);
  backdrop-filter:blur(24px);
  box-shadow:0 4px 30px rgba(0,0,0,.25);
}
.nav-logo {
  display:flex; align-items:center; gap:12px;
  text-decoration:none;
}
.nav-logo img { height:40px; width:auto; object-fit:contain; }
.nav-logo-text {
  font-family:'Playfair Display',serif;
  font-size:1.15rem; font-weight:700;
  color:#fff; letter-spacing:-.3px; line-height:1.2;
}
.nav-logo-text span { color:var(--coral); }
.nav-links {
  display:flex; gap:28px; list-style:none; align-items:center;
}
.nav-link {
  color:rgba(255,255,255,.8);
  font-size:.875rem; font-weight:500;
  transition:color .3s; position:relative;
}
.nav-link:hover, .nav-link.active { color:#fff; }
.nav-link::after {
  content:''; position:absolute; bottom:-4px; left:0;
  width:0; height:2px; background:var(--coral);
  transition:width .3s; border-radius:2px;
}
.nav-link:hover::after, .nav-link.active::after { width:100%; }
.nav-cta { margin-left:8px; }
.nav-burger {
  display:none;
  flex-direction:column; gap:5px;
  background:var(--glass); border:1px solid var(--glass-b);
  border-radius:var(--r-sm); padding:10px 11px;
  cursor:pointer; transition:all .3s;
}
.nav-burger span {
  display:block; width:20px; height:2px;
  background:#fff; border-radius:2px; transition:all .3s;
}
.nav-burger:hover { background:var(--coral); border-color:var(--coral); }

/* Mobile panel */
.nav-overlay {
  display:none; position:fixed; inset:0;
  background:rgba(10,22,40,.65); z-index:999;
  opacity:0; transition:opacity .3s;
  pointer-events:none;
}
.nav-overlay.active { display:block; opacity:1; pointer-events:auto; }
.mobile-panel {
  position:fixed; top:0; right:-320px;
  width:300px; height:100vh; z-index:1002;
  background:var(--ocean-deep);
  display:flex; flex-direction:column;
  padding:28px 24px 40px;
  transition:right .4s cubic-bezier(.4,0,.2,1);
  box-shadow:-10px 0 40px rgba(0,0,0,.5);
  overflow-y:auto;
}
.mobile-panel.open { right:0; }
.mobile-close {
  align-self:flex-end; width:38px; height:38px;
  background:var(--glass); border:1px solid var(--glass-b);
  border-radius:var(--r-sm); color:#fff; font-size:1.1rem;
  cursor:pointer; display:flex; align-items:center; justify-content:center;
  margin-bottom:24px; transition:all .3s;
}
.mobile-close:hover { background:var(--coral); border-color:var(--coral); }
.mobile-panel .nav-link {
  display:block; padding:12px 0;
  border-bottom:1px solid var(--glass-b);
  font-size:1rem;
}
.mobile-panel .btn { justify-content:center; }

/* ─── 6. BUTTONS ────────────────────────────────────── */
.btn {
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px; padding:12px 26px;
  border-radius:var(--r-sm); font-family:'Inter',sans-serif;
  font-size:.875rem; font-weight:600;
  cursor:pointer; transition:all .3s; border:none;
}
.btn-coral {
  background:var(--grad-coral); color:#fff;
  box-shadow:0 4px 18px rgba(255,107,74,.3);
}
.btn-coral:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(255,107,74,.45); }
.btn-ghost {
  background:transparent; color:#fff;
  border:1.5px solid rgba(255,255,255,.3);
}
.btn-ghost:hover { background:rgba(255,255,255,.1); border-color:#fff; }
.btn-outline {
  background:transparent; color:var(--coral);
  border:2px solid var(--coral);
}
.btn-outline:hover { background:var(--coral); color:#fff; }
.btn-white { background:#fff; color:var(--coral); font-weight:700; }
.btn-white:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,.18); }
.btn-outline-small {
  background:transparent; color:var(--coral);
  border:1.5px solid var(--coral);
  padding:8px 18px; font-size:.8rem; border-radius:var(--r-sm);
}
.btn-outline-small:hover { background:var(--coral); color:#fff; }

/* ─── 7. SECTION UTILITIES ──────────────────────────── */
.section { padding:100px 0; background:#fff; }
.section:nth-child(even) { background:var(--pearl-warm); }
.section-dark { background:var(--ocean-mid) !important; }
.section-label {
  display:inline-flex; align-items:center; gap:10px;
  font-size:.72rem; font-weight:700; color:var(--coral);
  text-transform:uppercase; letter-spacing:3px; margin-bottom:14px;
}
.section-label::before {
  content:''; width:26px; height:2px;
  background:var(--coral); border-radius:2px; flex-shrink:0;
}
.section-title {
  font-family:'Playfair Display',serif;
  font-size:clamp(1.8rem,3vw,2.75rem);
  font-weight:700; color:var(--text-p);
  margin-bottom:18px; line-height:1.18;
}
.section-title em { color:var(--coral); font-style:normal; }
.section-dark .section-title,
.section-dark .section-label { color:#fff; }
.section-dark .section-label::before { background:var(--coral); }
.section-dark .section-title em { color:var(--coral); }
.section-intro {
  font-size:1rem; color:var(--text-s);
  line-height:1.75; max-width:580px; margin:0 auto;
}
.section-dark .section-intro { color:rgba(255,255,255,.6); }
.section-body {
  font-size:.95rem; color:var(--text-s);
  line-height:1.75; margin-bottom:14px;
}
.section-header { text-align:center; margin-bottom:56px; }
.section-header .section-label { justify-content:center; }
.section-footer { text-align:center; margin-top:48px; }

/* Scroll reveal */
.fade-in { opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity:1; transform:none; }

/* ─── 8. HERO ────────────────────────────────────────── */
.hero {
  min-height:100vh; position:relative;
  display:flex; align-items:center;
  overflow:hidden;
}
.hero-bg { position:absolute; inset:0; z-index:0; }
.hero-img { width:100%; height:100%; object-fit:cover; object-position:center; }
.hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(10,22,40,.92) 0%,rgba(10,22,40,.72) 60%,rgba(10,22,40,.86) 100%);
  z-index:1;
}
.hero-inner {
  position:relative; z-index:3;
  display:flex; flex-direction:column;
  justify-content:center;
  padding-top:120px; padding-bottom:80px;
  min-height:100vh; gap:40px;
}
.hero-content { max-width:640px; }
.hero-title {
  font-family:'Playfair Display',serif;
  font-size:clamp(2.6rem,5vw,4.4rem);
  font-weight:700; color:#fff;
  line-height:1.1; margin-bottom:22px; letter-spacing:-1px;
}
.hero-title em { color:var(--coral); font-style:normal; }
.hero-sub {
  font-size:1.05rem; color:rgba(255,255,255,.7);
  line-height:1.72; margin-bottom:36px; max-width:500px;
}
.hero-ctas { display:flex; gap:14px; flex-wrap:wrap; }
.hero-badges {
  display:flex; gap:20px; flex-wrap:wrap;
}
.hero-badge {
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(10px);
  border-radius:var(--r); padding:16px 24px;
  min-width:120px; text-align:center;
}
.hero-badge-num {
  display:block;
  font-family:'Playfair Display',serif;
  font-size:1.9rem; font-weight:700; color:#fff;
  line-height:1;
}
.hero-badge-label {
  display:block; font-size:.72rem; color:rgba(255,255,255,.55);
  text-transform:uppercase; letter-spacing:1.5px; margin-top:5px;
}
.hero-scroll-hint {
  position:absolute; bottom:36px; left:50%;
  transform:translateX(-50%); z-index:4;
  color:rgba(255,255,255,.45); width:36px; height:36px;
  display:flex; align-items:center; justify-content:center;
  animation:bounce 2s ease infinite;
  transition:color .3s;
}
.hero-scroll-hint:hover { color:#fff; }
.hero-scroll-hint svg { width:28px; height:28px; }
@keyframes bounce {
  0%,100% { transform:translateX(-50%) translateY(0); }
  50% { transform:translateX(-50%) translateY(8px); }
}

/* ─── 9. FEATURE STRIP ──────────────────────────────── */
.feature-strip {
  background:var(--ocean-deep);
  padding-bottom:60px;
  position:relative; z-index:10;
}
.feature-strip-inner {
  display:grid; grid-template-columns:repeat(3,1fr);
  transform:translateY(-52px);
  border-radius:var(--r-lg); overflow:hidden;
  box-shadow:0 28px 70px rgba(0,0,0,.35);
}
.feature-card {
  background:var(--ocean-card);
  padding:36px 28px;
  border-right:1px solid var(--glass-b);
  transition:background .3s;
}
.feature-card:last-child { border-right:none; }
.feature-card:hover { background:var(--ocean-light); }
.feature-icon {
  width:56px; height:56px;
  background:rgba(255,107,74,.12);
  border:1px solid rgba(255,107,74,.22);
  border-radius:var(--r);
  display:flex; align-items:center; justify-content:center;
  color:var(--coral); margin-bottom:20px;
}
.feature-icon svg { width:28px; height:28px; }
.feature-card-title {
  font-family:'Playfair Display',serif;
  font-size:1.1rem; font-weight:700; color:#fff; margin-bottom:8px;
}
.feature-card-body { font-size:.85rem; color:rgba(255,255,255,.55); line-height:1.6; }

/* ─── 10. SPLIT LAYOUT (About welcome) ─────────────── */
.split-layout {
  display:grid; grid-template-columns:1fr 1fr;
  gap:72px; align-items:center;
}
.split-img { position:relative; }
.split-img img {
  width:100%; height:480px; object-fit:cover;
  border-radius:var(--r-lg); box-shadow:var(--sh-lg);
}
.split-img-badge {
  position:absolute; bottom:-20px; right:-20px;
  background:var(--grad-coral); border-radius:var(--r);
  padding:18px 24px; text-align:center;
  box-shadow:0 12px 40px rgba(255,107,74,.35);
}
.split-img-badge-num {
  display:block; font-family:'Playfair Display',serif;
  font-size:1.4rem; font-weight:700; color:#fff; line-height:1;
}
.split-img-badge-label {
  display:block; font-size:.72rem; color:rgba(255,255,255,.8);
  text-transform:uppercase; letter-spacing:1.5px; margin-top:4px;
}
.split-content {}
.check-list {
  display:flex; flex-direction:column; gap:11px;
  margin-top:20px;
}
.check-list li {
  display:flex; align-items:center; gap:12px;
  font-size:.88rem; color:var(--text-s);
}
.check-list li::before {
  content:''; flex-shrink:0;
  width:20px; height:20px;
  background:rgba(255,107,74,.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF6B4A' stroke-width='2.5'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat;
  border-radius:6px;
  border:1px solid rgba(255,107,74,.2);
}

/* ─── 11. STATS BAR ─────────────────────────────────── */
.stats-bar {
  background:var(--ocean-deep);
  padding:60px 0;
}
.stats-bar-inner {
  display:grid; grid-template-columns:repeat(4,1fr); gap:0;
}
.stat-item {
  text-align:center; padding:0 30px;
  border-right:1px solid var(--glass-b);
}
.stat-item:last-child { border-right:none; }
.stats-number {
  display:block;
  font-family:'Playfair Display',serif;
  font-size:3rem; font-weight:700; color:#fff; line-height:1;
}
.stats-label {
  display:block; margin-top:8px;
  font-size:.78rem; color:rgba(255,255,255,.45);
  text-transform:uppercase; letter-spacing:2px;
}

/* ─── 12. PRODUCTS ──────────────────────────────────── */
.tab-bar {
  display:flex; gap:8px; justify-content:center;
  flex-wrap:wrap; margin-bottom:44px;
}
.tab-btn {
  padding:10px 24px; border-radius:50px;
  border:2px solid rgba(0,0,0,.1);
  background:#fff; color:var(--text-s);
  font-size:.84rem; font-weight:600;
  cursor:pointer; transition:all .3s;
}
.tab-btn:hover { border-color:var(--coral); color:var(--coral); }
.tab-btn.active {
  background:var(--grad-coral); color:#fff;
  border-color:transparent;
  box-shadow:0 4px 18px rgba(255,107,74,.3);
}
.tab-panel { display:none; animation:fadeTab .45s ease; }
.tab-panel.active { display:block; }
@keyframes fadeTab { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:none; } }
.products-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:24px;
}
.product-card {
  background:#fff; border-radius:var(--r-lg);
  overflow:hidden; border:1px solid rgba(0,0,0,.06);
  box-shadow:var(--sh-sm); transition:all .4s;
}
.product-card:hover { transform:translateY(-7px); box-shadow:var(--sh-lg); border-color:rgba(255,107,74,.15); }
.product-img-wrap { height:220px; overflow:hidden; position:relative; }
.product-img-wrap img {
  width:100%; height:100%; object-fit:cover;
  transition:transform .6s;
}
.product-card:hover .product-img-wrap img { transform:scale(1.08); }
.product-card-body { padding:22px; }
.product-tag {
  display:inline-block; background:var(--coral); color:#fff;
  padding:3px 12px; border-radius:50px;
  font-size:.7rem; font-weight:700;
  text-transform:uppercase; letter-spacing:1px;
  margin-bottom:10px;
}
.product-name {
  font-family:'Playfair Display',serif;
  font-size:1.15rem; font-weight:700; color:var(--text-p);
  margin-bottom:8px;
}
.product-desc { font-size:.84rem; color:var(--text-s); line-height:1.6; margin-bottom:16px; }

/* ─── 13. PROCESS TIMELINE ──────────────────────────── */
.section-dark .section-title { color:#fff; }
.section-dark .section-label { color:var(--coral); }
.section-dark .section-label::before { background:var(--coral); }
.section-dark .section-intro { color:rgba(255,255,255,.6); }
.process-timeline {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:24px; margin-top:16px;
}
.process-step {
  background:var(--glass); border:1px solid var(--glass-b);
  border-radius:var(--r-lg); padding:34px 24px;
  transition:all .4s; position:relative;
}
.process-step:not(:last-child)::after {
  content:'→'; position:absolute; top:50%; right:-14px;
  color:var(--coral); font-size:1.2rem; line-height:1;
  transform:translateY(-50%); z-index:1;
}
.process-step:hover { background:rgba(255,255,255,.1); transform:translateY(-5px); }
.process-num {
  font-family:'Playfair Display',serif;
  font-size:2rem; font-weight:700; color:var(--coral);
  margin-bottom:16px; line-height:1;
}
.process-title {
  font-family:'Playfair Display',serif;
  font-size:1.05rem; color:#fff; margin-bottom:10px;
}
.process-body { font-size:.83rem; color:rgba(255,255,255,.55); line-height:1.6; }

/* ─── 14. WHY CHOOSE US ─────────────────────────────── */
.why-section { background:var(--ocean-deep) !important; }
.why-section .section-title,
.why-section .section-label { color:#fff; }
.why-section .section-label::before { background:var(--coral); }
.why-section .section-title em { color:var(--coral); }
.why-section .section-intro { color:rgba(255,255,255,.6); }
.why-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:28px; margin-top:16px;
}
.why-card {
  background:var(--glass); border:1px solid var(--glass-b);
  border-radius:var(--r-lg); padding:40px 28px; text-align:center;
  backdrop-filter:blur(10px); transition:all .4s;
}
.why-card:hover { background:rgba(255,255,255,.1); transform:translateY(-5px); }
@keyframes ring-spin    { to { transform:rotate(360deg); } }
@keyframes ring-counter { to { transform:rotate(-360deg); } }
.pct-ring {
  width:104px; height:104px; border-radius:50%;
  margin:0 auto 24px;
  display:flex; align-items:center; justify-content:center;
  background:conic-gradient(var(--coral) var(--pct,0%), var(--glass-b) 0%);
  padding:7px; transition:--pct 1.2s;
  animation:ring-spin 5s linear infinite;
}
.pct-label {
  display:flex; align-items:center; justify-content:center;
  width:100%; height:100%; border-radius:50%;
  background:var(--ocean-deep);
  font-family:'Playfair Display',serif;
  font-size:1.5rem; font-weight:700; color:#fff;
  animation:ring-counter 5s linear infinite;
}
.why-title {
  font-family:'Playfair Display',serif;
  font-size:1.1rem; color:#fff; margin-bottom:10px;
}
.why-body { font-size:.84rem; color:rgba(255,255,255,.55); line-height:1.65; }

/* ─── 15. VIDEO SECTION ─────────────────────────────── */
.video-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:28px;
}
.video-thumb {
  position:relative; border-radius:var(--r-lg); overflow:hidden;
  cursor:pointer; box-shadow:0 20px 55px rgba(0,0,0,.4);
  transition:transform .3s, box-shadow .3s;
}
.video-thumb:hover { transform:translateY(-5px); box-shadow:0 32px 70px rgba(0,0,0,.5); }
.video-thumb img { width:100%; height:280px; object-fit:cover; display:block; }
.video-overlay {
  position:absolute; inset:0;
  background:linear-gradient(180deg,rgba(10,22,40,.15) 0%,rgba(10,22,40,.72) 100%);
  display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:12px;
  transition:background .3s;
}
.video-thumb:hover .video-overlay {
  background:linear-gradient(180deg,rgba(10,22,40,.05) 0%,rgba(10,22,40,.6) 100%);
}
.play-btn {
  width:70px; height:70px; border-radius:50%;
  background:var(--grad-coral);
  display:flex; align-items:center; justify-content:center;
  color:#fff; box-shadow:0 10px 36px rgba(255,107,74,.5);
  transition:transform .3s;
}
.play-btn svg { width:28px; height:28px; margin-left:4px; }
.video-thumb:hover .play-btn { transform:scale(1.1); }
.video-title {
  font-family:'Playfair Display',serif;
  font-size:1.05rem; font-weight:700; color:#fff;
  text-shadow:0 2px 8px rgba(0,0,0,.5);
}

/* ─── 16. TESTIMONIALS ──────────────────────────────── */
.testimonials-section { background:var(--pearl-warm) !important; }
.swiper.testimonials-swiper { padding-bottom:50px !important; }
.testimonial-card {
  background:#fff; border-radius:var(--r-lg);
  padding:36px 30px; box-shadow:var(--sh-sm);
  border:1px solid rgba(0,0,0,.05); height:100%;
  transition:box-shadow .3s;
}
.testimonial-card:hover { box-shadow:var(--sh); }
.testimonial-stars { color:var(--coral); font-size:1rem; margin-bottom:16px; letter-spacing:2px; }
.testimonial-quote {
  font-size:.92rem; color:var(--text-s);
  line-height:1.75; margin-bottom:24px; font-style:italic;
}
.testimonial-author { display:flex; align-items:center; gap:14px; }
.testimonial-avatar {
  width:46px; height:46px; border-radius:50%;
  background:var(--grad-coral);
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:.95rem; font-weight:700; flex-shrink:0;
}
.testimonial-name { font-size:.88rem; font-weight:700; color:var(--text-p); }
.testimonial-role { font-size:.78rem; color:var(--text-l); margin-top:2px; }
/* Swiper overrides */
.swiper-pagination-bullet { background:var(--coral) !important; opacity:.3 !important; }
.swiper-pagination-bullet-active { opacity:1 !important; width:24px !important; border-radius:4px !important; }
.swiper-button-prev, .swiper-button-next {
  color:var(--coral) !important; --swiper-navigation-size:22px;
}

/* ─── 17. MARKETS ───────────────────────────────────── */
.markets-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.market-card {
  background:var(--glass); border:1px solid var(--glass-b);
  border-radius:var(--r); padding:28px 20px; text-align:center;
  backdrop-filter:blur(10px); transition:all .4s;
}
.market-card:hover {
  background:rgba(255,255,255,.11); transform:translateY(-5px);
  border-color:rgba(255,107,74,.3);
}
.market-flag { display:block; margin-bottom:12px; line-height:1; }
.market-flag.fi { width:48px; height:36px; margin:0 auto 12px; border-radius:4px; }
.market-name { font-size:.92rem; font-weight:600; color:#fff; }

/* ─── 18. PARTNER LOGOS MARQUEE ─────────────────────── */
@keyframes marquee-scroll { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }
.partner-logos-section { padding-bottom:60px; }
.partner-marquee-wrap {
  overflow:hidden; position:relative; margin-top:48px; padding:12px 0;
  mask-image:linear-gradient(to right,transparent,#000 10%,#000 90%,transparent);
  -webkit-mask-image:linear-gradient(to right,transparent,#000 10%,#000 90%,transparent);
}
.partner-marquee-wrap:hover .partner-track { animation-play-state:paused; }
.partner-track {
  display:flex !important; flex-direction:row !important;
  flex-wrap:nowrap !important; gap:20px;
  width:max-content; min-width:100%;
  animation:marquee-scroll 32s linear infinite;
}
.partner-logo {
  display:inline-flex !important; align-items:center; gap:14px;
  background:#fff; border:1px solid rgba(0,0,0,.08);
  border-radius:14px; padding:16px 26px;
  box-shadow:0 2px 12px rgba(0,0,0,.06);
  white-space:nowrap; flex-shrink:0;
  transition:box-shadow .3s, transform .3s;
  min-width:200px; cursor:default;
}
.partner-logo:hover { box-shadow:0 6px 24px rgba(0,0,0,.14); transform:translateY(-3px); }
.partner-flag.fi {
  width:40px !important; height:30px !important;
  border-radius:4px; flex-shrink:0;
  display:inline-block !important;
  background-size:cover !important;
}
.partner-name { font-size:.9rem; font-weight:600; color:var(--text-p); letter-spacing:.01em; }

/* ─── 18b. CTA STRIP ────────────────────────────────── */
.cta-strip {
  background:var(--grad-coral); padding:80px 0;
  position:relative; overflow:hidden;
}
.cta-strip::before {
  content:''; position:absolute; top:-40%; right:-5%;
  width:420px; height:420px;
  background:rgba(255,255,255,.08); border-radius:50%;
}
.cta-strip-inner {
  display:flex; align-items:center; gap:64px;
  position:relative; z-index:2;
}
.cta-text { flex:1; }
.cta-title {
  font-family:'Playfair Display',serif;
  font-size:clamp(1.8rem,3vw,2.5rem);
  font-weight:700; color:#fff; margin-bottom:12px;
}
.cta-sub { font-size:.95rem; color:rgba(255,255,255,.8); line-height:1.7; }
.cta-form { flex:1; max-width:440px; }
.newsletter-form {
  display:flex; gap:10px;
  background:rgba(255,255,255,.15);
  border:1.5px solid rgba(255,255,255,.25);
  border-radius:var(--r); padding:6px;
  margin-bottom:12px;
}
.newsletter-input {
  flex:1; background:transparent; border:none;
  padding:10px 14px; color:#fff; font-family:'Inter',sans-serif;
  font-size:.88rem; outline:none; min-width:0;
}
.newsletter-input::placeholder { color:rgba(255,255,255,.6); }
.cta-disclaimer { font-size:.8rem; color:rgba(255,255,255,.7); }

/* ─── 19. FOOTER ────────────────────────────────────── */
.footer {
  background:var(--ocean-deep);
  border-top:1px solid var(--glass-b);
  padding:72px 0 0;
}
.footer-inner {
  display:grid;
  grid-template-columns:1.8fr 1fr 1fr 1.3fr;
  gap:52px; padding-bottom:52px;
}
.footer-brand {}
.footer-logo {
  display:flex; align-items:center; gap:11px;
  margin-bottom:16px;
}
.footer-logo img { height:38px; width:auto; }
.footer-logo span {
  font-family:'Playfair Display',serif;
  font-size:1.05rem; font-weight:700; color:#fff;
}
.footer-tagline { font-size:.83rem; color:rgba(255,255,255,.45); line-height:1.7; max-width:240px; }
.footer-social { display:flex; gap:12px; margin-top:22px; }
.footer-social a {
  width:38px; height:38px;
  background:var(--glass); border:1px solid var(--glass-b);
  border-radius:var(--r-sm);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.6); transition:all .3s;
}
.footer-social a svg { width:17px; height:17px; }
.footer-social a:hover { background:var(--coral); border-color:var(--coral); color:#fff; }
.footer-col {}
.footer-heading {
  font-size:.78rem; font-weight:700; color:#fff;
  text-transform:uppercase; letter-spacing:2.5px; margin-bottom:18px;
}
.footer-links { display:flex; flex-direction:column; gap:10px; }
.footer-links a { font-size:.84rem; color:rgba(255,255,255,.48); transition:color .3s; }
.footer-links a:hover { color:var(--coral); }
.footer-contact-list { display:flex; flex-direction:column; gap:14px; }
.footer-contact-list li {
  display:flex; align-items:flex-start; gap:12px;
  font-size:.83rem; color:rgba(255,255,255,.48);
}
.footer-contact-list svg { width:16px; height:16px; flex-shrink:0; color:var(--coral); margin-top:2px; }
.footer-contact-list a { color:rgba(255,255,255,.48); transition:color .3s; }
.footer-contact-list a:hover { color:var(--coral); }
.footer-bottom {
  border-top:1px solid var(--glass-b); padding:22px 0;
}
.footer-bottom-inner {
  display:flex; justify-content:space-between;
  align-items:center; flex-wrap:wrap; gap:8px;
}
.footer-bottom p { font-size:.78rem; color:rgba(255,255,255,.3); }

/* ─── 20. SCROLL TO TOP ─────────────────────────────── */
.scroll-top-btn {
  position:fixed; bottom:24px; right:24px; z-index:400;
  width:44px; height:44px;
  background:var(--coral); color:#fff; border:none;
  border-radius:var(--r-sm); cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  opacity:0; transition:all .3s;
  box-shadow:0 4px 18px rgba(255,107,74,.35);
}
.scroll-top-btn svg { width:20px; height:20px; }
.scroll-top-btn.visible { opacity:1; }
.scroll-top-btn:hover { transform:translateY(-3px); box-shadow:0 8px 26px rgba(255,107,74,.45); }

/* ─── 21. PAGE HERO (inner pages) ───────────────────── */
.page-hero {
  background:var(--ocean-deep); padding:140px 0 70px;
  position:relative; overflow:hidden;
}
.page-hero-bg {
  position:absolute; inset:0; z-index:0;
  background:url('images/hero-prawns.jpg') center/cover no-repeat;
}
.page-hero-overlay {
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(135deg,rgba(10,22,40,.93) 0%,rgba(10,22,40,.78) 100%);
}
.page-hero-inner {
  position:relative; z-index:2;
}
.breadcrumb {
  display:flex; align-items:center; gap:8px;
  margin-bottom:20px; flex-wrap:wrap;
}
.breadcrumb a { font-size:.8rem; color:rgba(255,255,255,.5); transition:color .3s; }
.breadcrumb a:hover { color:var(--coral); }
.breadcrumb-sep { font-size:.8rem; color:rgba(255,255,255,.25); }
.breadcrumb-current { font-size:.8rem; color:rgba(255,255,255,.85); font-weight:600; }
.page-hero h1 {
  font-family:'Playfair Display',serif;
  font-size:clamp(2rem,3.5vw,3.2rem);
  font-weight:700; color:#fff; line-height:1.15; margin-bottom:14px;
}
.page-hero p { font-size:1rem; color:rgba(255,255,255,.62); max-width:560px; line-height:1.7; }

/* ─── 22. CONTACT / FORM ────────────────────────────── */
.contact-grid {
  display:grid; grid-template-columns:1fr 1.5fr;
  gap:64px; align-items:start;
}
.contact-info {}
.contact-info-card {
  background:var(--ocean-card); border:1px solid var(--glass-b);
  border-radius:var(--r-lg); padding:36px;
}
.contact-info-card h3 {
  font-family:'Playfair Display',serif;
  font-size:1.4rem; color:#fff; margin-bottom:24px;
}
.contact-item {
  display:flex; align-items:flex-start; gap:14px;
  margin-bottom:20px;
}
.contact-icon {
  width:44px; height:44px; background:rgba(255,107,74,.12);
  border:1px solid rgba(255,107,74,.2); border-radius:var(--r-sm);
  display:flex; align-items:center; justify-content:center;
  color:var(--coral); flex-shrink:0;
}
.contact-icon svg { width:20px; height:20px; }
.contact-label { font-size:.78rem; font-weight:600; color:rgba(255,255,255,.5); text-transform:uppercase; letter-spacing:1.5px; margin-bottom:3px; }
.contact-value { font-size:.9rem; color:#fff; }
.contact-value a { color:#fff; transition:color .3s; }
.contact-value a:hover { color:var(--coral); }
.contact-form-wrap {
  background:#fff; border-radius:var(--r-lg);
  padding:40px; box-shadow:var(--sh);
}
.contact-form-wrap h3 {
  font-family:'Playfair Display',serif;
  font-size:1.5rem; color:var(--text-p); margin-bottom:28px;
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { display:flex; flex-direction:column; gap:6px; margin-bottom:18px; }
.form-group label { font-size:.8rem; font-weight:600; color:var(--text-s); }
.form-group input, .form-group select, .form-group textarea {
  padding:12px 16px; border-radius:var(--r-sm);
  border:1.5px solid rgba(0,0,0,.1);
  font-family:'Inter',sans-serif; font-size:.88rem;
  color:var(--text-p); background:#fff;
  transition:border-color .3s; outline:none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color:var(--coral);
}
.form-group textarea { resize:vertical; min-height:110px; }
.form-group input::placeholder, .form-group textarea::placeholder { color:var(--text-l); }

/* ─── 23. SEASONAL TABLE ────────────────────────────── */
.seasonal-table { width:100%; border-collapse:collapse; }
.seasonal-table th, .seasonal-table td {
  padding:14px 16px; text-align:center;
  border:1px solid rgba(0,0,0,.07); font-size:.84rem;
}
.seasonal-table th { background:var(--ocean-deep); color:#fff; font-weight:600; }
.seasonal-table td:first-child { text-align:left; font-weight:600; color:var(--text-p); }
.seasonal-cell-peak { background:rgba(255,107,74,.15); color:var(--coral); font-weight:600; }
.seasonal-cell-good { background:rgba(20,184,166,.1); color:#0d9488; }
.seasonal-cell-off { background:rgba(0,0,0,.03); color:var(--text-l); }

/* ─── 24. SERVICES / CARDS ──────────────────────────── */
.services-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:28px;
}
.service-card {
  background:#fff; border-radius:var(--r-lg);
  padding:36px 28px; box-shadow:var(--sh-sm);
  border:1px solid rgba(0,0,0,.05); transition:all .4s;
}
.service-card:hover { transform:translateY(-6px); box-shadow:var(--sh); border-color:rgba(255,107,74,.15); }
.service-icon {
  width:60px; height:60px; background:rgba(255,107,74,.1);
  border:1px solid rgba(255,107,74,.2); border-radius:var(--r);
  display:flex; align-items:center; justify-content:center;
  color:var(--coral); margin-bottom:22px;
}
.service-icon svg { width:28px; height:28px; }
.service-title {
  font-family:'Playfair Display',serif;
  font-size:1.15rem; color:var(--text-p); margin-bottom:10px;
}
.service-desc { font-size:.85rem; color:var(--text-s); line-height:1.65; }

/* ─── 25. RESPONSIVE ────────────────────────────────── */
@media(max-width:1100px) {
  .container { padding:0 32px; }
  .split-layout { grid-template-columns:1fr; gap:40px; }
  .split-img img { height:360px; }
  .products-grid { grid-template-columns:repeat(2,1fr); }
  .process-timeline { grid-template-columns:repeat(2,1fr); }
  .process-step::after { display:none; }
  .why-grid { grid-template-columns:repeat(3,1fr); }
  .footer-inner { grid-template-columns:1fr 1fr; gap:36px; }
  .stats-bar-inner { grid-template-columns:repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right:none; }
  .stat-item:nth-child(3) { border-top:1px solid var(--glass-b); }
  .markets-grid { grid-template-columns:repeat(4,1fr); }
  .cta-strip-inner { flex-direction:column; gap:40px; }
  .cta-form { max-width:100%; width:100%; }
}
@media(max-width:768px) {
  .nav-links, .nav-cta { display:none; }
  .nav-burger { display:flex; }
  .hero-inner { padding-top:100px; }
  .hero-title { font-size:2.4rem; }
  .hero-ctas { flex-direction:column; }
  .hero-ctas .btn { justify-content:center; }
  .hero-badges { gap:12px; }
  .hero-badge { flex:1; min-width:100px; }
  .feature-strip-inner { grid-template-columns:1fr; transform:translateY(-24px); }
  .feature-card { border-right:none; border-bottom:1px solid var(--glass-b); }
  .feature-card:last-child { border-bottom:none; }
  .products-grid { grid-template-columns:1fr; }
  .process-timeline { grid-template-columns:1fr; }
  .why-grid { grid-template-columns:1fr; }
  .video-grid { grid-template-columns:1fr; }
  .markets-grid { grid-template-columns:repeat(2,1fr); }
  .footer-inner { grid-template-columns:1fr; gap:28px; }
  .footer-bottom-inner { flex-direction:column; text-align:center; }
  .contact-grid { grid-template-columns:1fr; }
  .services-grid { grid-template-columns:1fr; }
  .tab-bar { overflow-x:auto; justify-content:flex-start; flex-wrap:nowrap; padding-bottom:8px; }
  .tab-bar::-webkit-scrollbar { display:none; }
  .tab-btn { white-space:nowrap; flex-shrink:0; }
  .cta-strip { padding:56px 0; }
  .newsletter-form { flex-direction:column; }
  .newsletter-input { padding:12px 14px; }
  .form-row { grid-template-columns:1fr; }
}
@media(max-width:480px) {
  .container { padding:0 20px; }
  .hero-title { font-size:2rem; }
  .markets-grid { grid-template-columns:repeat(2,1fr); }
  .stats-bar-inner { grid-template-columns:1fr 1fr; }
  .hero-badges { grid-template-columns:repeat(3,1fr); display:grid; }
}
