/* =========================================================
   SN Engineering Works - main.css
   Note: assets/css/bootstrap.min.css and assets/js/bootstrap.bundle.min.js
   are referenced by the layout but must be populated with a local Bootstrap 5
   build before deployment (no CDN used for PWA offline support).
   ========================================================= */

:root {
	--navy: #0b2545;
	--navy-dark: #1a1a1a;
	--steel: #13315c;
	--green: #6cbf2a;
	--green-dark: #559922;
	--orange: #6cbf2a;
	--orange-dark: #559922;
	--red: #e0432c;
	--red-dark: #c8371f;
	--light-bg: #f4f7f2;
	--text-dark: #1c2733;
	--text-muted: #5b6b7c;
	--white: #ffffff;
	--radius: 6px;
	--shadow: 0 4px 18px rgba(11, 37, 69, 0.1);
	--font-base: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-base);
	color: var(--text-dark);
	overflow-x: hidden;
	background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { line-height: 1.25; margin: 0 0 0.5em; font-weight: 700; color: var(--navy); }
p { margin: 0 0 1em; color: var(--text-muted); }
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 16px; }
.section-pad { padding: 72px 0; }
.section-title { text-align: center; margin-bottom: 44px; font-size: 1.9rem; }
.eyebrow { display: block; color: var(--green); font-weight: 700; font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.dark-industrial .eyebrow { color: var(--green); }
.bg-light { background: var(--light-bg); }
.text-white { color: var(--white) !important; }
.dark-industrial { background: linear-gradient(135deg, var(--navy-dark), var(--steel)); color: var(--white); }
.dark-industrial p, .dark-industrial li { color: rgba(255,255,255,0.85); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 22px; border-radius: var(--radius); font-weight: 700; border: 2px solid transparent; cursor: pointer; transition: all .2s ease; text-align: center; }
.btn-primary-cta { background: var(--red); color: var(--white); }
.btn-primary-cta:hover { background: var(--red-dark); color: var(--white); }
.btn-outline-cta { background: transparent; border-color: var(--green); color: var(--green-dark); }
.btn-outline-cta:hover { background: var(--green); color: var(--white); }
.btn-quote { background: var(--red); color: var(--white); border-radius: var(--radius); padding: 10px 24px; font-weight: 700; margin-left: 16px; }
.btn-quote:hover { background: var(--red-dark); }
.btn-whatsapp { background: #25d366; color: var(--white); }
.btn-whatsapp:hover { background: #1eb658; color: var(--white); }
.btn-call { background: var(--navy); color: var(--white); }
.btn-call:hover { background: var(--navy-dark); color: var(--white); }
.btn-sm { padding: 6px 14px; font-size: 0.85rem; }

/* ---------- Top bar + Header ---------- */
.site-header { position: sticky; top: 0; z-index: 1000; background: var(--white); box-shadow: var(--shadow); }
.top-bar { background: var(--green); color: rgba(255,255,255,0.95); font-size: 0.8rem; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; flex-wrap: wrap; gap: 10px; }
.top-bar-left { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.top-item { color: rgba(255,255,255,0.95); display: inline-flex; align-items: center; gap: 6px; }
.top-item svg { flex-shrink: 0; opacity: 0.9; }
.top-item:hover { color: var(--white); text-decoration: underline; }
.top-bar-right { display: flex; align-items: center; gap: 16px; }
.top-item-address { display: none; }
.top-socials { display: flex; gap: 8px; }
.top-social-icon { width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,0.2); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; }
.top-social-icon:hover { background: var(--white); color: var(--green-dark); }

.main-nav { padding: 14px 0; transition: padding .2s ease; border-bottom: 1px solid #eef1ec; }
.site-header.scrolled .main-nav { padding: 8px 0; }
.navbar-brand { display: flex; align-items: center; }
.brand-logo { height: 34px; width: auto; max-width: 220px; object-fit: contain; }
.brand-name { font-size: 1.3rem; font-weight: 800; color: var(--navy); }
.brand-tagline { font-size: 0.7rem; color: var(--text-muted); }
.footer-logo { height: 30px; width: auto; max-width: 200px; object-fit: contain; margin-bottom: 14px; filter: brightness(0) invert(1); }
.main-menu { align-items: center; gap: 2px; }
.main-menu .nav-link { color: var(--text-dark); font-weight: 600; padding: 10px 14px !important; position: relative; }
.main-menu .nav-link:hover, .main-menu .nav-link.active { color: var(--green-dark); }
.main-menu .nav-link.active::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px; background: var(--green); }
.dropdown-menu { border: none; box-shadow: var(--shadow); border-radius: var(--radius); }
.dropdown-item:hover { background: var(--light-bg); color: var(--green-dark); }

/* ---------- Mobile offcanvas menu ---------- */
.mobile-menu .offcanvas-header { border-bottom: 1px solid #eee; }
.mobile-menu-list li a { display: block; padding: 12px 4px; font-size: 1rem; border-bottom: 1px solid #f0f0f0; }
.mobile-sub-title { padding: 10px 4px 2px; font-size: 0.75rem; text-transform: uppercase; color: var(--orange); font-weight: 700; }
.mobile-sub-title-plain a { font-weight: 700; }
.mobile-quote-link { background: var(--orange); color: var(--white) !important; text-align: center; border-radius: var(--radius); margin-top: 10px; }
.mobile-menu-bottom { border-top: 1px solid #eee; padding-top: 14px; }

/* ---------- Hero: contained framed carousel (SunPring-style boxed strip, not full-bleed) ---------- */
.hero-section { --hero-h: 220px; padding: 20px 0 0; }
.hero-frame {
	position: relative;
	border-radius: 14px;
	overflow: hidden;
	background: var(--white);
	border: 1px solid #e3ebdc;
	box-shadow: var(--shadow);
}
.hero-single, .hero-carousel .carousel-item { position: relative; }

/* Image area: letterboxed on a soft green backdrop so mixed-aspect photos never look cropped/off */
.hero-slide-media {
	background: linear-gradient(120deg, #eef7e6, #d9edc9);
	display: flex;
	align-items: center;
	justify-content: center;
	height: var(--hero-h);
	overflow: hidden;
}
.hero-slide-img { max-width: 100%; max-height: 100%; width: auto; height: 100%; object-fit: contain; display: block; }

/* Caption sits below the image as a solid bar, never overlapping the photo */
.hero-slide-caption {
	background: var(--navy-dark);
	color: var(--white);
	padding: 18px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
.hero-slide-caption h1 { color: var(--white); font-size: 1.15rem; margin-bottom: 4px; letter-spacing: 0.3px; }
.hero-slide-caption p { color: rgba(255,255,255,0.85); margin-bottom: 0; font-size: 0.85rem; }
.hero-slide-btn { flex-shrink: 0; white-space: nowrap; }
.hero-subhead { font-size: 1rem; color: var(--green); font-weight: 700; }
.hero-btns-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin: 20px 0 28px; }

/* Arrows: scoped to the image area only via top/height, never over the caption bar */
.hero-carousel .carousel-control-prev, .hero-carousel .carousel-control-next {
	width: 44px;
	top: 0;
	bottom: auto;
	height: var(--hero-h);
	opacity: 1;
}
.hero-carousel .carousel-control-prev-icon, .hero-carousel .carousel-control-next-icon {
	background-color: rgba(11,37,69,0.55);
	border-radius: 50%;
	padding: 16px;
	background-size: 45%;
}
.hero-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.hero-carousel .carousel-control-next:hover .carousel-control-next-icon { background-color: var(--green); }

.hero-carousel .carousel-indicators {
	position: absolute;
	left: 50%;
	bottom: 10px;
	top: auto;
	right: auto;
	transform: translateX(-50%);
	margin: 0;
	gap: 7px;
	padding: 5px 10px;
	background: rgba(11,37,69,0.4);
	border-radius: 999px;
}
.hero-carousel .carousel-indicators [data-bs-target] {
	background-color: rgba(255,255,255,0.55);
	width: 7px;
	height: 7px;
	border-radius: 50%;
	opacity: 1;
	text-indent: -9999px;
	border: none;
	transition: background-color .2s ease, transform .2s ease;
}
.hero-carousel .carousel-indicators .active { background-color: var(--green); transform: scale(1.3); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.about-image img { border-radius: var(--radius); box-shadow: var(--shadow); }
.highlight-list { display: grid; grid-template-columns: 1fr; gap: 8px; margin: 16px 0; }
.highlight-list li { padding-left: 24px; position: relative; color: var(--text-dark); font-weight: 600; }
.highlight-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--orange); font-weight: 700; }

/* ---------- Card grids ---------- */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.product-card, .industry-card, .blog-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover, .industry-card:hover, .blog-card:hover { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(11,37,69,0.16); }
.product-card-img, .industry-card-img, .blog-card-img { height: 200px; background-size: cover; background-position: center; background-color: #dfe6ee; }
.industry-card > img { width: 100%; height: 180px; object-fit: cover; display: block; }
.industry-card:hover > img { transform: scale(1.05); transition: transform .3s ease; }
.product-card-body, .blog-card-body { padding: 16px; }
.industry-card h3, .industry-card p { padding: 0 16px; }
.industry-card h3 { margin-top: 12px; }
.industry-card p { padding-bottom: 16px; }
.product-card-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.badge-category { display: inline-block; background: var(--orange); color: var(--white); font-size: 0.7rem; padding: 3px 10px; border-radius: 999px; margin-bottom: 8px; }
.blog-date { display: block; font-size: 0.75rem; color: var(--text-muted); margin: 6px 0; }
.read-more { color: var(--orange); font-weight: 700; }

/* ---------- Fish feed section ---------- */
.fishfeed-grid { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
.check-list li { padding-left: 26px; position: relative; margin-bottom: 10px; font-weight: 600; color: var(--text-dark); }
.check-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--orange); }
.check-list-light li { color: rgba(255,255,255,0.9); }
.fishfeed-cta-box { background: var(--navy); color: var(--white); padding: 28px; border-radius: var(--radius); text-align: center; }
.fishfeed-cta-box h3 { color: var(--white); }
.fishfeed-cta-box p { color: rgba(255,255,255,0.85); }

/* ---------- Plant solutions ---------- */
.plant-solutions-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.plant-solutions-image img { width: 100%; height: 100%; max-height: 420px; object-fit: cover; border-radius: 12px; box-shadow: 0 12px 32px rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.1); }
.plant-solutions-content h2 { margin-bottom: 12px; }
.plant-solutions-content > p { color: rgba(255,255,255,0.8); margin-bottom: 20px; max-width: 560px; }
.plant-solutions-list { display: grid; grid-template-columns: 1fr; gap: 10px 20px; margin-bottom: 24px; }

/* ---------- Why choose / icon grid ---------- */
.icon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; text-align: center; }
.icon-card { background: var(--white); padding: 28px 16px; border-radius: var(--radius); box-shadow: var(--shadow); }
.icon-card svg { color: var(--green); margin-bottom: 10px; }
.icon-card h3 { font-size: 1rem; margin: 0; }
.icon-card p { font-size: 0.88rem; margin: 8px 0 0; }
.why-choose-grid.icon-grid { grid-template-columns: 1fr; }

/* ---------- Stats ---------- */
.stats-section { padding-top: 44px; padding-bottom: 44px; }
.stats-grid { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 28px; text-align: center; }
.stat-box .stat-number { font-size: 3rem; font-weight: 800; color: var(--green); line-height: 1; }
.stat-box .stat-suffix { font-size: 2rem; font-weight: 800; color: var(--green); }
.stat-box p { color: rgba(255,255,255,0.75); margin: 4px 0 0; font-weight: 600; letter-spacing: 0.3px; }
.stats-divider { display: none; width: 1px; height: 44px; background: rgba(255,255,255,0.18); }
.stat-badge { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: var(--white); padding: 12px 24px; border-radius: 999px; font-weight: 600; }

/* ---------- Testimonials ---------- */
.testimonial-quote { text-align: center; max-width: 720px; margin: 0 auto; }
.quote-mark { color: var(--green); opacity: 0.6; margin-bottom: 12px; }
.testimonial-quote p { font-size: 1.1rem; font-style: italic; color: var(--text-dark); }
.testimonial-quote footer { font-weight: 700; color: var(--green-dark); }
.placeholder-card {
	text-align: center;
	padding: 48px 24px;
	background: var(--light-bg);
	border: 1px dashed #d7e0d1;
	border-radius: var(--radius);
	max-width: 560px;
	margin: 0 auto;
}
.placeholder-card .quote-mark { opacity: 0.35; }
.placeholder-card .placeholder-title { color: var(--text-dark); font-weight: 700; font-size: 1.05rem; margin-bottom: 6px; }
.placeholder-card .placeholder-sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0; }

/* ---------- Global reach ---------- */
.global-reach-grid { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; }
.region-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.region-list li { background: rgba(255,255,255,0.12); padding: 8px 16px; border-radius: 999px; }
.world-map-icon { text-align: center; color: rgba(255,255,255,0.5); }

/* ---------- Final CTA band (also used as .cta-band on inner pages) ---------- */
.final-cta-band, .cta-band { background: var(--green); padding: 48px 0; text-align: center; }
.final-cta-band h2, .cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.92); max-width: 560px; margin: 0 auto 18px; }
.final-cta-inner .final-cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 12px; }
.cta-band .btn { margin: 0 6px; }
.final-cta-band .btn-primary-cta, .cta-band .btn-primary-cta { background: var(--navy); }
.cta-band .btn-outline-cta { border-color: var(--white); color: var(--white); }
.cta-band .btn-outline-cta:hover { background: var(--white); color: var(--green-dark); }

/* ---------- Inner page header banner ---------- */
.page-header-section { background: var(--light-bg); padding: 40px 0 36px; border-bottom: 1px solid #e6ece1; }
.page-header-section h1 { margin-bottom: 8px; font-size: 1.9rem; }
.page-header-section .lead { color: var(--text-muted); max-width: 700px; margin-bottom: 0; font-size: 1rem; }

/* ---------- Generic info-card grid (Services / Solutions blocks) ---------- */
.info-card-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.info-card { background: var(--white); border: 1px solid #ecefe8; border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px 24px; transition: transform .2s ease, box-shadow .2s ease; }
.info-card:hover { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(11,37,69,0.12); }
.info-card h2, .info-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.info-card p { margin-bottom: 16px; }
.info-card .btn { margin-right: 8px; margin-bottom: 8px; }

/* ---------- Infrastructure cards ---------- */
.infra-card { background: var(--white); border: 1px solid #ecefe8; border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px 20px; height: 100%; }
.infra-card h3 { font-size: 1.05rem; color: var(--navy); }
.infrastructure-intro { margin-bottom: 48px; }
.infrastructure-cards .info-card { text-align: center; }

/* ---------- Feature / why-choose-us cards (inner page version) ---------- */
.feature-card { background: var(--white); border: 1px solid #ecefe8; border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px 20px; text-align: center; height: 100%; }
.feature-icon { color: var(--green); margin-bottom: 12px; display: flex; justify-content: center; }
.feature-icon svg { display: block; }
.feature-card h3 { font-size: 1rem; margin-bottom: 8px; }

/* ---------- Our Story ---------- */
.story-body p { font-size: 1.02rem; line-height: 1.75; }
.story-body-full { max-width: 780px; margin: 36px auto 0; }

/* ---------- Contact page ---------- */
.contact-info-card, .contact-form-card, .quote-form-card, .quote-contact-card, .selected-product-card { background: var(--white); border: 1px solid #ecefe8; border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px 24px; }
.contact-info-card h2, .contact-form-card h2, .quote-contact-card h3, .selected-product-card h3 { margin-bottom: 14px; }
.contact-info-card p { margin-bottom: 14px; }
.contact-info-card strong { color: var(--navy); display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.map-placeholder { background: var(--light-bg); border: 1px dashed #d7e0d1; border-radius: var(--radius); padding: 40px 20px; text-align: center; color: var(--text-muted); }
.selected-product-card { text-align: center; margin-bottom: 20px; }
.selected-product-card img { width: 100%; height: 160px; object-fit: cover; border-radius: var(--radius); margin-bottom: 14px; }
.quote-sidebar .quote-contact-card { margin-top: 0; }

/* ---------- Product listing / detail ---------- */
.product-category-block { margin-bottom: 48px; }
.product-category-block .category-title { font-size: 1.4rem; margin-bottom: 24px; padding-bottom: 10px; border-bottom: 2px solid var(--green); display: inline-block; }
.badge-featured { position: absolute; top: 10px; right: 10px; background: var(--red); color: var(--white); font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 999px; }
.product-card-img { position: relative; display: block; height: 200px; overflow: hidden; background: #dfe6ee; }
.product-card-img img, .blog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.product-card:hover .product-card-img img, .blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-img { position: relative; display: block; height: 200px; overflow: hidden; background: #dfe6ee; }

.product-detail-gallery .main-image { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; max-height: 420px; }
.product-detail-gallery .thumb-row { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.product-detail-gallery .thumb { width: 76px; height: 76px; object-fit: cover; border-radius: 6px; border: 1px solid #e3e8e0; }
.category-tag { display: inline-block; background: var(--light-bg); color: var(--green-dark); font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; padding: 4px 12px; border-radius: 999px; margin-bottom: 10px; }
.product-cta-row { display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0 26px; }
.spec-table-wrap h2 { font-size: 1.15rem; margin-bottom: 14px; }
.spec-table th { width: 40%; background: var(--light-bg); color: var(--navy); font-weight: 600; }
.spec-table th, .spec-table td { padding: 10px 14px; border-color: #ecefe8; }
.product-description-body h2 { font-size: 1.2rem; margin: 30px 0 12px; }
.product-description-body p { line-height: 1.75; }
.related-products h2 { font-size: 1.2rem; margin-bottom: 20px; }

/* ---------- Blog listing / detail ---------- */
.blog-sidebar-filters { background: var(--white); border: 1px solid #ecefe8; border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px; }
.blog-sidebar-filters h3 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.blog-sidebar-filters li { margin-bottom: 4px; }
.blog-sidebar-filters a { display: block; padding: 7px 10px; border-radius: 6px; color: var(--text-dark); font-weight: 600; font-size: 0.92rem; }
.blog-sidebar-filters a:hover, .blog-sidebar-filters a.active { background: var(--light-bg); color: var(--green-dark); }
.read-more-link { color: var(--green-dark); font-weight: 700; }
.pagination-wrap ul { display: flex; gap: 6px; list-style: none; padding: 0; flex-wrap: wrap; }
.pagination-wrap a, .pagination-wrap .current { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; border-radius: 6px; background: var(--white); border: 1px solid #ecefe8; color: var(--text-dark); font-weight: 600; }
.pagination-wrap a:hover { background: var(--light-bg); color: var(--green-dark); }
.pagination-wrap .active a, .pagination-wrap .current { background: var(--green); color: var(--white); border-color: var(--green); }

.blog-meta { display: flex; gap: 16px; color: var(--text-muted); font-size: 0.85rem; margin: 8px 0 20px; }
.blog-featured-image { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 24px; max-height: 420px; object-fit: cover; }
.blog-content p { line-height: 1.8; margin-bottom: 1.2em; }
.sidebar-block { background: var(--white); border: 1px solid #ecefe8; border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px; margin-bottom: 20px; }
.sidebar-block h3 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px; }
.sidebar-post { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.sidebar-post:last-child { margin-bottom: 0; }
.sidebar-post-img { flex-shrink: 0; width: 64px; height: 64px; border-radius: 6px; overflow: hidden; display: block; }
.sidebar-post-img img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-post a { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.sidebar-post a:hover { color: var(--green-dark); }
.sidebar-post-date { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.cta-block { background: var(--navy-dark); border-color: var(--navy-dark); }
.cta-block h3 { color: var(--white); }
.cta-block p { color: rgba(255,255,255,0.75); }

/* ---------- Legal pages ---------- */
.legal-body h2 { font-size: 1.15rem; margin: 28px 0 10px; color: var(--navy); }
.legal-body p { line-height: 1.75; }

/* ---------- 404 ---------- */
.error-404-section { padding: 80px 0; }
.error-404-section .display-1 { font-size: 5rem; font-weight: 800; color: var(--green); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.8); }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 28px; padding: 48px 16px; }
.footer-brand { color: var(--white); }
.footer-col h4 { color: var(--white); margin-bottom: 14px; font-size: 1rem; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.75); }
.footer-col a:hover { color: var(--orange); }
address { font-style: normal; line-height: 1.8; }
.footer-socials { display: flex; gap: 10px; margin-top: 14px; }
.social-icon { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.1); border-radius: 50%; }
.social-icon:hover { background: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 16px 0; font-size: 0.85rem; }
.footer-bottom-inner { display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center; }
.footer-legal a { margin: 0 8px; }

/* ---------- Floating buttons ---------- */
.floating-actions { position: fixed; right: 18px; bottom: 18px; z-index: 1050; display: flex; flex-direction: column; gap: 12px; }
.fab { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(0,0,0,0.25); color: var(--white); }
.fab-whatsapp { background: #25d366; }
.floating-actions .fab-whatsapp:first-child { background: var(--navy); }

/* ---------- Breadcrumb ---------- */
.breadcrumb-bar { background: var(--light-bg); padding: 10px 0; }
.breadcrumb { margin: 0; font-size: 0.85rem; }

/* ---------- Fade-up animation ---------- */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Responsive breakpoints ---------- */
@media (min-width: 768px) {
	.top-item-address { display: inline-flex; }
	.stats-divider { display: block; }
	.hero-section { --hero-h: 320px; }
	.hero-slide-caption h1 { font-size: 1.3rem; }
	.about-grid { grid-template-columns: 1fr 1fr; }
	.fishfeed-grid { grid-template-columns: 1.4fr 1fr; }
	.plant-solutions-grid { grid-template-columns: 1fr 1.2fr; }
	.plant-solutions-list { grid-template-columns: 1fr 1fr; }
	.global-reach-grid { grid-template-columns: 1fr 1fr; }
	.card-grid { grid-template-columns: repeat(2, 1fr); }
	.icon-grid { grid-template-columns: repeat(3, 1fr); }
	.why-choose-grid.icon-grid { grid-template-columns: repeat(2, 1fr); }
	.info-card-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
	.footer-bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 992px) {
	.card-grid { grid-template-columns: repeat(3, 1fr); }
	.card-grid.product-grid-13 { grid-template-columns: repeat(4, 1fr); }
	.icon-grid { grid-template-columns: repeat(6, 1fr); }
	.why-choose-grid.icon-grid { grid-template-columns: repeat(3, 1fr); }
	.info-card-grid { grid-template-columns: repeat(3, 1fr); }
	.hero-section { --hero-h: 400px; }
	.hero-slide-caption h1 { font-size: 1.6rem; }
}
