/* =============================================
   Optinura Lifescience - Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Merriweather:wght@300;400;700&display=swap');

/* ---- CSS Variables / Design Tokens ---- */
:root {
    --primary: #2DB8A0;
    --primary-dark: #1E9985;
    --primary-light: #3DCDB5;
    --accent: #1B3B8A;
    --accent-light: #2A52C0;
    --navy: #0D1B3E;
    --navy-mid: #162B5A;
    --text-dark: #0D1B3E;
    --text-mid: #4a5568;
    --text-light: #718096;
    --bg-light: #f4f7fb;
    --bg-white: #ffffff;
    --border: #dde4ef;
    --shadow-sm: 0 2px 8px rgba(27, 59, 138, 0.08);
    --shadow-md: 0 8px 30px rgba(27, 59, 138, 0.12);
    --shadow-lg: 0 20px 60px rgba(27, 59, 138, 0.18);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ---- Container ---- */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 24px rgba(13, 27, 62, 0.10);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 70px;
    width: auto;
    border-radius: 6px;
}

.nav-logo-text {
    display: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 16px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-dark);
    background: rgba(45, 184, 160, 0.10);
}

.nav-link .chevron {
    width: 14px;
    height: 14px;
    transition: transform var(--transition);
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
}

.nav-item:hover .chevron {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    /* top: calc(100% + 10px); */
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    pointer-events: none;
    overflow: hidden;
}

/* Invisible hover bridge fills the 10px gap so mouse doesn't break hover */
.dropdown-menu::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    height: 14px;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 18px;
    color: var(--text-dark);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all var(--transition);
    border-bottom: 1px solid var(--border);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 24px;
}

.dropdown-item .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.dropdown-item:hover .dot {
    transform: scale(1.4);
}

/* ---- Hamburger button ---- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1100;
    position: relative;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Animated X when open */
.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---- Mobile Overlay Menu ---- */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    cursor: pointer;
}

.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 88vw);
    background: var(--navy);
    z-index: 1100;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-nav-logo img {
    height: 45px;
    border-radius: 6px;
}

.mobile-nav-logo .brand {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
}

.mobile-nav-logo .tagline {
    font-size: 0.58rem;
    color: var(--accent-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
}

.mobile-nav-links {
    flex: 1;
    padding: 16px 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #fff;
    background: rgba(45, 184, 160, 0.1);
    border-left-color: var(--accent);
}

.mobile-nav-link .icon {
    width: 20px;
    text-align: center;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Mobile Products Accordion */
.mobile-products-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 28px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
    border-left: 3px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    background: none;
    border-top: none;
    border-right: none;
    border-bottom: none;
    width: 100%;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.mobile-products-toggle:hover,
.mobile-products-toggle.open {
    color: #fff;
    background: rgba(45, 184, 160, 0.1);
    border-left-color: var(--accent);
}

.mobile-products-toggle .toggle-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-products-toggle .chevron-m {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    transition: transform var(--transition);
}

.mobile-products-toggle.open .chevron-m {
    transform: rotate(180deg);
}

.mobile-sub-links {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: rgba(0, 0, 0, 0.15);
}

.mobile-sub-links.open {
    max-height: 300px;
}

.mobile-sub-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 28px 11px 50px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-sub-link:last-child {
    border-bottom: none;
}

.mobile-sub-link:hover {
    color: var(--accent-light);
    background: rgba(45, 184, 160, 0.08);
    padding-left: 56px;
    border-left-color: var(--accent);
}

.mobile-sub-link .dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.mobile-nav-footer {
    padding: 24px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-footer p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 14px;
}

.mobile-nav-footer .contact-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav-footer .contact-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.83rem;
    transition: color var(--transition);
    text-decoration: none;
}

.mobile-nav-footer .contact-links a:hover {
    color: var(--accent-light);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-banner.png');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 27, 62, 0.9) 0%, rgba(27, 59, 138, 0.5) 60%, rgba(13, 27, 62, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 110px 0 80px;
    animation: fadeInUp 0.9s ease forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(45, 184, 160, 0.15);
    border: 1px solid rgba(45, 184, 160, 0.3);
    border-radius: 50px;
    padding: 6px 16px;
    color: var(--accent-light);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
}

.hero h1 {
    font-family: 'Merriweather', serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 22px;
}

.hero h1 span {
    color: var(--accent-light);
}

.hero p {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    max-width: 560px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(27, 59, 138, 0.35);
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(27, 59, 138, 0.45);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent-light);
    background: rgba(45, 184, 160, 0.08);
}

/* Hero Stats */
.hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding: 30px 0 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
    animation: fadeInUp 1.1s ease 0.2s forwards;
    opacity: 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-light);
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =============================================
   SECTION COMMON
   ============================================= */
.section {
    padding: 90px 0;
}

.section-alt {
    background: var(--bg-light);
}

.section-tag {
    display: inline-block;
    background: rgba(27, 59, 138, 0.08);
    color: var(--primary);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-title span {
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 600px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

.divider {
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    margin: 16px 0;
}

.section-header .divider {
    margin: 16px auto;
}

/* =============================================
   FEATURES GRID (Home - Why Choose Us)
   ============================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
}

.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 34px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 58px;
    height: 58px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(27, 59, 138, 0.08), rgba(45, 184, 160, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* =============================================
   CATEGORY CARDS (Home Products Section)
   ============================================= */
.categories-slider {
    margin: 0 -12px;
    padding: 20px 0;
}

/* Slick Slider Custom Styles */
.slick-dots li button:before {
    font-size: 12px;
    color: var(--primary);
}

.slick-dots li.slick-active button:before {
    color: var(--accent);
}

.slick-prev:before,
.slick-next:before {
    color: var(--primary);
}

.category-card {
    margin: 0 12px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    display: block;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.07);
}

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 27, 62, 0.9) 0%, rgba(13, 27, 62, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.category-card-overlay h3 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.category-card-overlay p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.category-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent);
    color: #fff;
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 12px;
    width: fit-content;
    transition: all var(--transition);
}

.category-card:hover .category-card-btn {
    background: var(--primary);
}

/* =============================================
   PRODUCT PAGE / CATEGORY PAGE
   ============================================= */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 110px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 184, 160, 0.2) 0%, transparent 70%);
}

.page-hero-inner {
    position: relative;
    z-index: 2;
}

.page-hero-inner .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    margin-bottom: 16px;
}

.page-hero-inner .breadcrumb a {
    color: var(--accent-light);
}

.page-hero-inner .breadcrumb span {
    color: rgba(255, 255, 255, 0.3);
}

.page-hero-inner .breadcrumb .breadcrumb-sep {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0 2px;
}

.page-hero h1 {
    font-family: 'Merriweather', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #fff;
    font-weight: 700;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    margin-top: 12px;
    max-width: 540px;
}

/* Product Entry Layout */
.product-entry {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 40px;
    align-items: start;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 36px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.product-entry:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.product-img-wrap {
    position: relative;
    aspect-ratio: 1;
    background: var(--bg-light);
    overflow: hidden;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 24px;
    transition: transform 0.4s ease;
}

.product-entry:hover .product-img-wrap img {
    transform: scale(1.05);
}

.product-img-wrap .product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-details {
    padding: 32px 32px 32px 0;
}

.product-details h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.product-details .product-subtitle {
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Product Info Table */
.product-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
    font-size: 0.88rem;
}

.product-table tr {
    border-bottom: 1px solid var(--border);
}

.product-table tr:last-child {
    border-bottom: none;
}

.product-table td {
    padding: 11px 14px;
}

.product-table td:first-child {
    font-weight: 600;
    color: var(--text-mid);
    width: 38%;
    background: var(--bg-light);
    border-right: 1px solid var(--border);
}

.product-table td:last-child {
    color: var(--text-dark);
}

.product-table tr:last-child td:first-child {
    border-radius: 0 0 0 var(--radius-sm);
}

.product-desc {
    color: var(--text-mid);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 20px;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.product-tag {
    background: rgba(27, 59, 138, 0.07);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 600;
    border: 1px solid rgba(27, 59, 138, 0.15);
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-img-wrap img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.about-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 3px rgba(45, 184, 160, 0.25);
    border-radius: var(--radius-lg);
}

.about-accent-box {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border-radius: var(--radius-md);
    padding: 22px 28px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.about-accent-box .num {
    font-size: 2rem;
    font-weight: 800;
}

.about-accent-box .lbl {
    font-size: 0.8rem;
    opacity: 0.85;
}


.about-text p {
    color: var(--text-mid);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.about-features {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent);
}

.about-feature-item .ico {
    font-size: 1.3rem;
}

.about-feature-item p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Values Cards */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.value-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-mid);
    font-size: 0.87rem;
    line-height: 1.65;
}

/* Team Banner */
.team-banner {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.team-banner img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.team-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 27, 62, 0.88) 0%, rgba(13, 27, 62, 0.3) 100%);
    display: flex;
    align-items: center;
    padding: 48px;
}

.team-banner-text h2 {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 12px;
}

.team-banner-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    max-width: 400px;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    color: #fff;
}

.contact-info-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(45, 184, 160, 0.15);
    border: 1px solid rgba(45, 184, 160, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item-text label {
    font-size: 0.75rem;
    color: var(--accent-light);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-item-text p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    box-shadow: var(--shadow-sm);
}

.contact-form-card h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--bg-light);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 184, 160, 0.15);
    background: var(--bg-white);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all var(--transition);
    box-shadow: 0 4px 18px rgba(27, 59, 138, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(27, 59, 138, 0.4);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    text-align: center;
}

.footer-brand .logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand img {
    height: 65px;
    border-radius: 6px;
}

.footer-brand .brand-name {
    color: #000;
    font-size: 1.8rem;
    font-weight: 800;
}

.footer-brand p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #000;
    max-width: 340px;
    margin: 0 auto;
}

.footer-col h4 {
    color: #000;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 0.85rem;
    color: #000;
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent-light);
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.85rem;
}

.footer-contact-item span:first-child {
    color: var(--accent-light);
    font-size: 1rem;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #000;
}

/* =============================================
   SCROLL TO TOP
   ============================================= */
.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(27, 59, 138, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 900;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
}

.scroll-top svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(45, 184, 160, 0.5);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(45, 184, 160, 0);
    }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media screen and (max-width: 1024px) {
    .product-entry {
        grid-template-columns: 280px 1fr;
    }

    .about-grid {
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {

    /* Desktop nav hidden on mobile - overlay nav used instead */
    .nav-menu {
        display: none !important;
    }

    .hamburger {
        display: flex;
    }

    /* Show overlay and mobile nav panel */
    /* .mobile-overlay,
    .mobile-nav {
        display: flex;
    }

    .mobile-overlay {
        display: block;
    } */

    .product-entry {
        grid-template-columns: 1fr;
    }

    .product-img-wrap {
        aspect-ratio: 4/3;
    }

    .product-details {
        padding: 24px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-accent-box {
        position: static;
        display: inline-block;
        margin-top: 16px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 24px;
    }

    .team-banner-overlay {
        padding: 28px;
    }
}