/* ============================================
   ALVARA INGREDIENTS - Main Stylesheet
   Modeled after Royal Ingredients Group
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --color-primary: #1B3A5C;       /* Dark navy blue */
    --color-primary-light: #2A5A8C;
    --color-secondary: #D4870E;     /* Warm orange/gold */
    --color-accent-green: #2E7D5B;
    --color-accent-brown: #8B6F47;
    --color-bg-warm: #FAF5F0;       /* Warm beige */
    --color-bg-white: #FFFFFF;
    --color-text-dark: #1a1a1a;
    --color-text-body: #4a4a4a;
    --color-text-light: #FFFFFF;
    --color-border: #e0d6cc;

    --font-heading: 'Inter Tight', sans-serif;
    --font-body: 'Roboto', sans-serif;

    --transition: all 0.3s ease;
    --shadow-card: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-body);
    background-color: var(--color-bg-white);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    font-weight: 400;
    line-height: 1.3;
}

h1 strong, h2 strong, h3 strong {
    font-weight: 700;
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: var(--transition);
}

a:hover {
    color: var(--color-secondary);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-alvara {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary-alvara {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
    border-color: var(--color-secondary);
}

.btn-primary-alvara:hover {
    background-color: #b8740c;
    border-color: #b8740c;
    color: var(--color-text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 135, 14, 0.4);
}

.btn-secondary-alvara {
    background-color: transparent;
    color: var(--color-text-light);
    border-color: var(--color-text-light);
}

.btn-secondary-alvara:hover {
    background-color: var(--color-text-light);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-outline-alvara {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline-alvara:hover {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.05rem;
}

/* ============================================
   SECTION TITLE
   ============================================ */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-dark);
}

.section-title-light {
    color: var(--color-text-light);
}

/* ============================================
   DESKTOP HEADER
   ============================================ */
#header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

#header-wrapper.scrolled {
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-logo-link {
    text-decoration: none;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo .logo-icon {
    font-size: 1.8rem;
    color: var(--color-secondary);
    transition: var(--transition);
}

.header-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-light);
    transition: var(--transition);
}

.header-logo .logo-text span {
    font-weight: 400;
}

#header-wrapper.scrolled .header-logo .logo-text {
    color: var(--color-primary);
}

#header-wrapper.scrolled .header-logo .logo-icon {
    color: var(--color-secondary);
}

/* Nav Menu */
#main-nav {
    display: flex;
    justify-content: center;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.nav-menu li a {
    color: var(--color-text-light);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

#header-wrapper.scrolled .nav-menu li a {
    color: var(--color-text-dark);
}

#header-wrapper.scrolled .nav-menu li a:hover {
    color: var(--color-secondary);
}

/* Header Icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

#search-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.search-icon-btn {
    color: var(--color-text-light);
    cursor: pointer;
    font-size: 1rem;
    padding: 8px;
    transition: var(--transition);
    z-index: 2;
}

#header-wrapper.scrolled .search-icon-btn {
    color: var(--color-text-dark);
}

.search-input {
    width: 0;
    padding: 8px 0;
    border: none;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: width 0.4s ease, padding 0.4s ease;
}

#search-wrapper.active .search-input {
    width: 200px;
    padding: 8px 12px;
    border-bottom-color: var(--color-secondary);
}

#header-wrapper.scrolled .search-input {
    color: var(--color-text-dark);
}

.language-select {
    position: relative;
    cursor: pointer;
}

.lang-active {
    color: var(--color-text-light);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    transition: var(--transition);
}

#header-wrapper.scrolled .lang-active {
    color: var(--color-text-dark);
    border-color: var(--color-border);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: var(--shadow-card);
    border-radius: 8px;
    list-style: none;
    padding: 8px 0;
    margin: 8px 0 0;
    min-width: 120px;
    z-index: 100;
}

.language-select:hover .lang-dropdown {
    display: block;
}

.lang-dropdown li a {
    display: block;
    padding: 8px 16px;
    color: var(--color-text-body);
    font-size: 0.9rem;
}

.lang-dropdown li a:hover,
.lang-dropdown li a.active {
    color: var(--color-secondary);
    background-color: var(--color-bg-warm);
}

/* ============================================
   MOBILE HEADER
   ============================================ */
#mobile-header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

#mobile-header-wrapper.scrolled {
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

#mobile-header-wrapper.scrolled .header-logo .logo-text {
    color: var(--color-primary);
}

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

/* Hamburger */
.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--color-text-light);
    border-radius: 2px;
    transition: var(--transition);
}

#mobile-header-wrapper.scrolled .mobile-menu-toggle span {
    background-color: var(--color-primary);
}

.mobile-menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

/* Mobile Menu Container */
.mobile-menu-container {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-card);
    padding: 20px;
    transform: translateY(-120%);
    transition: transform 0.4s ease;
    z-index: 999;
    max-height: calc(100vh - 65px);
    overflow-y: auto;
}

.mobile-menu-container.open {
    transform: translateY(0);
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li a {
    display: block;
    padding: 12px 0;
    color: var(--color-text-dark);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav-menu li a:hover {
    color: var(--color-secondary);
}

.mobile-search-bar {
    margin-top: 20px;
}

.mobile-search-bar input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.mobile-search-bar input:focus {
    border-color: var(--color-secondary);
}

.mobile-lang-select {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--color-border);
}

.mobile-lang-select > span {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-body);
    margin-bottom: 10px;
}

.lang-options {
    display: flex;
    gap: 15px;
}

.lang-options a {
    padding: 6px 14px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--color-text-body);
}

.lang-options a.active {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero-section {
    position: relative;
    z-index: 1;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: #1B3A5C;
}

.hero-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(27,58,92,0.82) 0%, rgba(27,58,92,0.55) 45%, rgba(27,58,92,0.25) 100%);
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 160px 0 100px;
}

.hero-content {
    padding-left: 0;
}

.hero-wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 1;
    line-height: 0;
}

.hero-wave-bottom svg {
    width: 100%;
    height: 90px;
    display: block;
}

.hero-title {
    font-size: 3rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-title strong {
    font-weight: 700;
}

.hero-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

#site-content-wrapper {
    position: relative;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.section-wave-top {
    margin-top: -2px;
}

.section-wave-top svg {
    width: 100%;
    height: 120px;
    display: block;
}

#services-section {
    position: relative;
    z-index: 2;
}

.services-bg {
    background-color: var(--color-bg-warm);
    padding: 0 0 80px;
}

.services-intro {
    margin-bottom: 40px;
}

.services-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--color-text-body);
}

/* Service Cards */
.service-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    background: white;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-card-image {
    position: relative;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.service-card-content {
    padding: 25px 30px;
    position: relative;
}

.service-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text-dark);
}

.service-card-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-body);
    margin-bottom: 0;
}

.service-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 15px;
}

.service-card-orange .service-card-icon {
    background-color: var(--color-secondary);
}

.service-card-green .service-card-icon {
    background-color: var(--color-accent-green);
}

.service-card-brown .service-card-icon {
    background-color: var(--color-accent-brown);
}

/* Color accent strips */
.service-card-orange {
    border-top: 4px solid var(--color-secondary);
}

.service-card-green {
    border-top: 4px solid var(--color-accent-green);
}

.service-card-brown {
    border-top: 4px solid var(--color-accent-brown);
}

/* ============================================
   MARKETS SECTION
   ============================================ */
#markets-section {
    position: relative;
    z-index: 2;
}

.markets-bg {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

.markets-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.markets-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27,58,92,0.85) 0%, rgba(27,58,92,0.6) 100%);
}

.markets-content-wrapper {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.markets-content {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.15);
}

/* Accordion */
.accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: rgba(255,255,255,0.2);
}

.accordion-item {
    background: transparent;
    border-color: rgba(255,255,255,0.2);
}

.accordion-button {
    background: transparent;
    color: var(--color-text-light);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem;
    padding: 18px 5px;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: rgba(255,255,255,0.1);
    color: var(--color-secondary);
}

.accordion-button::after {
    filter: brightness(10);
}

.accordion-body {
    color: rgba(255,255,255,0.8);
    padding: 5px 20px 20px;
}

.accordion-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
}

.accordion-body ul li {
    padding: 5px 0;
    font-size: 0.95rem;
    position: relative;
    padding-left: 18px;
}

.accordion-body ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

/* ============================================
   INGREDIENTS SECTION
   ============================================ */
#ingredients-section {
    position: relative;
    z-index: 2;
}

.ingredients-bg {
    background-color: var(--color-bg-warm);
    padding: 80px 0;
}

/* Filter pills */
.ingredients-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
}

.filter-pill {
    background: transparent;
    border: 2px solid var(--color-border);
    border-radius: 50px;
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-text-body);
    cursor: pointer;
    transition: var(--transition);
}

.filter-pill:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(27,58,92,0.05);
}

.filter-pill.active {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border-color: var(--color-primary);
}

/* Ingredient content panels */
.ingredients-content-wrapper {
    position: relative;
    min-height: 280px;
}

.ingredient-panel {
    display: none;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    animation: fadeIn 0.4s ease;
}

.ingredient-panel.active {
    display: flex;
    flex-wrap: wrap;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.ingredient-image {
    flex: 0 0 40%;
    max-width: 40%;
}

.ingredient-image img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.ingredient-info {
    flex: 0 0 60%;
    max-width: 60%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ingredient-info-full {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 40px;
}

.seeds-page-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 50px;
}

.seeds-page-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-body);
    margin-bottom: 0;
}

.seed-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.seed-item {
    display: block;
    text-decoration: none;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    background: white;
    border: 1px solid var(--color-border);
}

.seed-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.seed-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.seed-item:hover img {
    transform: scale(1.05);
}

.seed-item span {
    display: block;
    padding: 10px 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--color-text-dark);
    text-align: center;
}

.ingredient-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.ingredient-info p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-body);
    margin-bottom: 0;
}

.ingredient-info p:not(:last-child) {
    margin-bottom: 12px;
}

.ingredient-info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

.ingredient-info ul li {
    position: relative;
    padding-left: 18px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-body);
}

.ingredient-info ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

/* ============================================
   NEWS SECTION
   ============================================ */
#news-section {
    padding: 80px 0;
    background-color: var(--color-bg-white);
    position: relative;
    z-index: 2;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.news-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.news-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
}

.news-nav-btn:hover {
    background-color: var(--color-primary);
    color: white;
}

.news-page-indicator {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.95rem;
}

.news-sep {
    color: var(--color-border);
    margin: 0 3px;
}

/* News Card */
.news-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.news-card-image {
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.news-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    display: block;
    font-size: 0.82rem;
    color: var(--color-secondary);
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text-dark);
    line-height: 1.4;
}

.news-excerpt {
    font-size: 0.92rem;
    color: var(--color-text-body);
    line-height: 1.7;
    flex: 1;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-primary);
    margin-top: 15px;
}

.news-read-more:hover {
    color: var(--color-secondary);
    gap: 12px;
}

/* ============================================
   CTA SECTION
   ============================================ */
#cta-section {
    padding: 0 0 80px;
    position: relative;
    z-index: 2;
}

.cta-banner {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: var(--radius-lg);
    padding: 50px 60px;
    color: var(--color-text-light);
}

.cta-title {
    color: var(--color-text-light);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-text {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-wave-top svg {
    width: 100%;
    height: 100px;
    display: block;
}

.footer-bg {
    background-color: var(--color-primary);
    padding: 60px 0 30px;
    color: rgba(255,255,255,0.75);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    font-size: 1.5rem;
    color: var(--color-secondary);
}

.footer-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-light);
}

.footer-logo .logo-text span {
    font-weight: 400;
}

.footer-about {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: white;
}

.footer-heading {
    color: var(--color-text-light);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: rgba(255,255,255,0.65);
    font-size: 0.92rem;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.92rem;
    align-items: flex-start;
}

.footer-contact li i {
    color: var(--color-secondary);
    margin-top: 4px;
    min-width: 16px;
}

.footer-contact li a {
    color: rgba(255,255,255,0.65);
}

.footer-contact li a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

/* ============================================
   CAREERS PAGE
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    padding: 170px 0 90px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.page-hero-title {
    color: var(--color-text-light);
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

.page-hero-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0;
}

#careers-section {
    background-color: var(--color-bg-warm);
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.careers-intro {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.careers-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-body);
    margin-bottom: 0;
}

/* Career Cards */
.career-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 35px 30px;
    height: 100%;
    transition: var(--transition);
    border-top: 4px solid var(--color-secondary);
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.career-card-green {
    border-top-color: var(--color-accent-green);
}

.career-card-brown {
    border-top-color: var(--color-accent-brown);
}

.career-card-image {
    margin: -35px -30px 20px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
}

.career-card-image img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.career-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 20px;
    background-color: var(--color-secondary);
}

.career-card-green .career-card-icon {
    background-color: var(--color-accent-green);
}

.career-card-brown .career-card-icon {
    background-color: var(--color-accent-brown);
}

.career-card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.career-tag {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 50px;
    background-color: var(--color-bg-warm);
    color: var(--color-primary);
}

.career-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text-dark);
}

.career-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-body);
    flex: 1;
    margin-bottom: 22px;
}

.career-card .btn-alvara {
    align-self: flex-start;
}

/* ============================================
   PILLAR CARDS (Sustainability)
   ============================================ */
.page-intro {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.page-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-body);
    margin-bottom: 0;
}

.pillar-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 35px 30px;
    height: 100%;
    transition: var(--transition);
    border-top: 4px solid var(--color-secondary);
    margin-bottom: 30px;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.pillar-card-green {
    border-top-color: var(--color-accent-green);
}

.pillar-card-brown {
    border-top-color: var(--color-accent-brown);
}

.pillar-card-image {
    margin: -35px -30px 20px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
}

.pillar-card-image img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.pillar-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 20px;
    background-color: var(--color-secondary);
}

.pillar-card-green .pillar-card-icon {
    background-color: var(--color-accent-green);
}

.pillar-card-brown .pillar-card-icon {
    background-color: var(--color-accent-brown);
}

.pillar-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-text-dark);
}

.pillar-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--color-text-body);
    margin-bottom: 0;
}

/* Stats band */
.stats-band {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 15px;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.6rem;
    color: var(--color-secondary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.3px;
}

/* Feature image band */
.feature-band {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 2;
}

.feature-band-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.feature-band-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-band-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27,58,92,0.88) 0%, rgba(27,58,92,0.55) 60%, rgba(27,58,92,0.3) 100%);
    z-index: 1;
}

.feature-band-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    padding: 60px 0;
}

.feature-band-content h2 {
    color: var(--color-text-light);
}

.feature-band-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0;
}

/* ============================================
   PRIVACY / LEGAL PAGE
   ============================================ */
#legal-section {
    background-color: var(--color-bg-white);
    padding: 80px 0;
}

.legal-content {
    max-width: 860px;
    margin: 0 auto;
}

.legal-updated {
    font-size: 0.85rem;
    color: var(--color-text-body);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--color-text-body);
    margin-bottom: 18px;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.legal-content ul li {
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--color-text-body);
    margin-bottom: 8px;
}

/* ============================================
   PRODUCT PAGE
   ============================================ */
.breadcrumb {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.breadcrumb a:hover {
    color: var(--color-secondary);
}

#product-overview {
    background-color: var(--color-bg-warm);
    padding: 80px 0;
}

.product-overview-wrapper {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-wrap: wrap;
}

#product-specs {
    padding: 80px 0;
}

.spec-table {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--color-border);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row:nth-child(even) {
    background-color: var(--color-bg-warm);
}

.spec-label {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-text-dark);
}

.spec-value {
    color: var(--color-text-body);
    text-align: right;
}

.spec-note {
    max-width: 800px;
    margin: 20px auto 0;
    font-size: 0.9rem;
    color: var(--color-text-body);
    font-style: italic;
    text-align: center;
}

#product-packaging {
    background-color: var(--color-bg-warm);
    padding: 80px 0;
}

.applications-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.application-tag {
    background: white;
    border: 2px solid var(--color-border);
    border-radius: 50px;
    padding: 10px 22px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--color-text-dark);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Large tablets / small desktops */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .nav-menu {
        gap: 20px;
    }
}

/* Tablets */
@media (max-width: 991px) {
    #hero-section {
        min-height: 80vh;
    }

    .hero-content-wrapper {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .services-bg {
        padding-top: 20px;
    }

    .cta-banner {
        padding: 35px 30px;
        text-align: center;
    }

    .cta-banner .text-md-end {
        text-align: center !important;
        margin-top: 20px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    #hero-section {
        min-height: 70vh;
    }

    .hero-content-wrapper {
        padding: 100px 0 40px;
    }

    .hero-wave-bottom svg {
        height: 50px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .page-hero {
        padding: 110px 0 60px;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stats-band {
        padding: 40px 0;
    }

    .spec-row {
        flex-direction: column;
        gap: 4px;
    }

    .spec-value {
        text-align: left;
    }

    .markets-content {
        padding: 25px;
    }

    .accordion-body ul {
        columns: 1;
    }

    .ingredient-image {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .ingredient-image img {
        min-height: 200px;
    }

    .ingredient-info {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 25px;
    }

    .ingredient-info-full {
        padding: 25px;
    }

    .seed-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .news-card-col {
        margin-bottom: 20px;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .footer-bg {
        padding: 40px 0 25px;
    }

    .footer-heading {
        margin-top: 30px;
    }
}

/* Small mobile */
@media (max-width: 575px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn-alvara {
        text-align: center;
    }

    .filter-pill {
        padding: 8px 16px;
        font-size: 0.82rem;
    }

    .ingredients-filter {
        gap: 6px;
    }
}
