/*
Theme Name: Brenex Global Theme
Theme URI: http://brenexglobal.com
Author: Bhavesh Barhate
Author URI: https://github.com/google-deepmind
Description: A premium bespoke WordPress theme for Brenex Global Exporters, featuring Ayurvedic products, custom templates, custom post types, and ACF Pro fields.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-templates, translation-ready, featured-images, custom-menu, portfolio
Text Domain: brenex-theme
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-navy: #0F2042;
    --primary-navy-light: #1A305A;
    --primary-navy-dark: #071228;
    --primary-gold: #C5A55A;
    --primary-gold-light: #E0C782;
    --primary-gold-dark: #A3813B;
    --accent-green: #2E5A44;
    --accent-green-light: #418260;
    --accent-green-soft: #EBF7F0;
    --neutral-light: #F8F9FA;
    --neutral-dark: #1E293B;
    --neutral-grey: #64748B;
    --neutral-white: #FFFFFF;
    
    --font-heading: 'Inter', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(15, 32, 66, 0.05);
    --shadow-md: 0 4px 12px rgba(15, 32, 66, 0.08);
    --shadow-lg: 0 10px 25px rgba(15, 32, 66, 0.12);
    --shadow-glass: 0 8px 32px 0 rgba(15, 32, 66, 0.06);
    --border-radius: 12px;
    --max-width: 1200px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--neutral-light);
    color: var(--neutral-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-navy);
    font-weight: 700;
}

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

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

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--primary-navy-dark);
}

.btn-primary-menu a {
    background-color: var(--primary-gold);
    color: var(--primary-navy-dark) !important;
	display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    gap: 8px;
}

.btn-primary:hover {
    background-color: var(--primary-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 165, 90, 0.4);
}

.btn-primary-menu a:hover {
	background-color: var(--primary-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 165, 90, 0.4);
}

.btn-secondary {
    background-color: var(--primary-navy);
    color: var(--neutral-white);
}

.btn-secondary:hover {
    background-color: var(--primary-navy-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(15, 32, 66, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
}

.btn-outline:hover {
    background-color: var(--primary-gold);
    color: var(--primary-navy);
    transform: translateY(-2px);
}

.btn-white-outline {
    background: transparent;
    border: 2px solid var(--neutral-white);
    color: var(--neutral-white);
}

.btn-white-outline:hover {
    background-color: var(--neutral-white);
    color: var(--primary-navy);
    transform: translateY(-2px);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

header.scrolled {
    background-color: rgba(15, 32, 66, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    width: 75px;
    height: 75px;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius : 10px;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-gold);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--primary-navy);
    min-width: 220px;
    border-radius: var(--border-radius);
    padding: 12px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(197, 165, 90, 0.2);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.dropdown-link {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    padding: 10px 16px;
    font-size: 0.9rem;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.dropdown-link:hover {
    background-color: var(--primary-navy-light);
    color: var(--primary-gold);
    padding-left: 20px;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition-smooth);
    background-color: var(--neutral-white);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    background: linear-gradient(rgba(15, 32, 66, 0.85), rgba(7, 18, 40, 0.95)), url('assets/images/hero_background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--neutral-white);
    padding-top: 80px;
}

.hero-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    animation: fadeIn 1s ease-out;
}

.hero-tagline {
    color: var(--primary-gold);
    text-transform: uppercase;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--neutral-white);
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero h1 span {
    color: var(--primary-gold);
}

.hero-desc {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Generic Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-bg-white {
    background-color: var(--neutral-white);
}

.section-bg-grey {
    background-color: var(--neutral-light);
}

.section-bg-navy {
    background-color: var(--primary-navy);
    color: var(--neutral-white);
}

.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-tagline {
    color: var(--primary-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 16px;
}

.section-bg-navy .section-title {
    color: var(--neutral-white);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
}

.section-desc {
    color: var(--neutral-grey);
    font-size: 1.05rem;
}

.section-bg-navy .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* About Us Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(197, 165, 90, 0.2);
}

.about-img-container img {
    width: 100%;
    height: auto;
    transition: var(--transition-smooth);
}

.about-img-container:hover img {
    transform: scale(1.05);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary-gold);
    color: var(--primary-navy);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 2px solid var(--neutral-white);
    animation: float 4s ease-in-out infinite;
}

.about-experience-badge h4 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-navy);
}

.about-experience-badge p {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.about-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--neutral-grey);
    margin-bottom: 24px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-green-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.stat-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
}

.stat-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--neutral-grey);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--neutral-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(15, 32, 66, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(197, 165, 90, 0.3);
}

.product-card.featured {
    border: 2px solid var(--primary-gold);
    box-shadow: 0 10px 30px rgba(197, 165, 90, 0.15);
    transform: scale(1.02);
}

.product-card.featured:hover {
    transform: scale(1.04) translateY(-8px);
    box-shadow: 0 15px 35px rgba(197, 165, 90, 0.25);
}

.product-card.featured::before {
    content: '★ OUR EXPERTISE PRODUCT';
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-gold);
    color: var(--primary-navy-dark);
    padding: 4px 12px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    background-color: var(--neutral-light);
}

.product-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--accent-green);
    color: var(--neutral-white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-botanical {
    font-style: italic;
    font-size: 0.85rem;
    color: var(--neutral-grey);
    margin-bottom: 8px;
}

.product-info h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.product-excerpt {
    color: var(--neutral-grey);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-highlights {
    list-style: none;
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.product-highlights li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--neutral-dark);
}

.product-highlights li i {
    color: var(--primary-gold);
}

.product-actions {
    display: flex;
    gap: 12px;
}

.product-actions .btn {
    flex: 1;
    padding: 10px 16px;
    font-size: 0.85rem;
}

/* Why Choose Us Section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.why-card {
    background-color: var(--neutral-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(15, 32, 66, 0.05);
    text-align: center;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(197, 165, 90, 0.3);
}

.why-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--neutral-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.8rem;
    margin-bottom: 24px;
    border: 1px solid rgba(197, 165, 90, 0.2);
    transition: var(--transition-smooth);
}

.why-card:hover .why-icon {
    background-color: var(--primary-navy);
    color: var(--primary-gold);
    transform: rotateY(180deg);
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.why-card p {
    color: var(--neutral-grey);
    font-size: 0.95rem;
}

/* Certifications Section */
.certifications-section {
    background-color: var(--primary-navy);
    color: var(--neutral-white);
    padding: 80px 0;
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.cert-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition-smooth);
}

.cert-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary-gold);
}

.cert-icon-placeholder {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    background-color: rgba(197, 165, 90, 0.1);
    border: 2px dashed var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.cert-card h3 {
    color: var(--neutral-white);
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.cert-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* Global Reach Section */
.map-container {
    background: radial-gradient(circle at center, var(--primary-navy-light), var(--primary-navy-dark));
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(197, 165, 90, 0.2);
    color: var(--neutral-white);
    margin-top: 40px;
}

.countries-list-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.region-box {
    background: rgba(255, 255, 255, 0.02);
    padding: 24px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.region-box h4 {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.region-box ul {
    list-style: none;
}

.region-box li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.region-box li i {
    color: var(--primary-gold);
    font-size: 0.85rem;
}

/* Enquiry Form Section */
.enquiry-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.contact-info-card {
    background-color: var(--primary-navy);
    color: var(--neutral-white);
    padding: 50px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(197, 165, 90, 0.2);
}

.contact-info-card h3 {
    color: var(--neutral-white);
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.contact-info-card > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius);
    background-color: rgba(197, 165, 90, 0.15);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid rgba(197, 165, 90, 0.3);
}

.info-text h4 {
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.info-text p, .info-text a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

.info-text a:hover {
    color: var(--primary-gold);
}

.form-wrapper {
    background-color: var(--neutral-white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(15, 32, 66, 0.05);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-full {
    grid-column: span 2;
}

.form-group label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary-navy);
}

.form-input {
    padding: 12px 16px;
    border: 1px solid rgba(15, 32, 66, 0.15);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
    background-color: var(--neutral-white);
}

.form-input:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(197, 165, 90, 0.15);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

/* Footer Section */
footer {
    background-color: var(--primary-navy-dark);
    color: var(--neutral-white);
    padding: 80px 0 30px 0;
    border-top: 2px solid rgba(197, 165, 90, 0.3);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-gold);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: 50%;
    margin-bottom: 20px;
    width: 100px;
    height: 100px;
}

.footer-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--neutral-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background-color: var(--primary-gold);
    color: var(--primary-navy);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 6px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--primary-gold);
    margin-top: 4px;
}

.footer-contact-item p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

/* Individual Product Page Styles */
.product-hero {
    background: linear-gradient(rgba(15, 32, 66, 0.9), rgba(7, 18, 40, 0.95)), url('assets/images/hero_background.png');
    background-size: cover;
    background-position: center;
    padding: 160px 0 80px 0;
    color: var(--neutral-white);
}

.product-hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-hero-content .product-tag {
    background-color: var(--primary-gold);
    color: var(--primary-navy-dark);
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.product-hero-content h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--neutral-white);
    margin-bottom: 16px;
    line-height: 1.15;
}

.product-hero-content .botanical-name {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-gold);
    margin-bottom: 24px;
}

.product-hero-content .hero-bullets {
    list-style: none;
    margin-bottom: 30px;
}

.product-hero-content .hero-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.product-hero-content .hero-bullets li i {
    color: var(--primary-gold);
}

.product-hero-image {
    background-color: var(--neutral-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(197, 165, 90, 0.3);
}

.product-hero-image img {
    width: 100%;
    height: auto;
}

.details-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.details-block h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.details-block h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-gold);
}

.details-description {
    color: var(--neutral-grey);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.benefits-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.benefit-card {
    background-color: var(--neutral-white);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-green);
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.benefit-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-navy);
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--neutral-grey);
    margin: 0;
}

.quick-specs-card {
    background-color: var(--primary-navy);
    color: var(--neutral-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(197, 165, 90, 0.2);
}

.quick-specs-card h4 {
    color: var(--primary-gold);
    font-size: 1.25rem;
    margin-bottom: 24px;
    font-weight: 600;
}

.specs-list {
    list-style: none;
}

.specs-list li {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

.specs-list li:last-child {
    border-bottom: none;
}

.specs-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.specs-value {
    color: var(--neutral-white);
    text-align: right;
}

/* Specifications Table */
.specs-table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 32, 66, 0.08);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--neutral-white);
    text-align: left;
}

.specs-table th {
    background-color: var(--primary-navy);
    color: var(--neutral-white);
    padding: 16px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
}

.specs-table td {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(15, 32, 66, 0.05);
    font-size: 0.95rem;
    color: var(--neutral-dark);
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table tr:nth-child(even) {
    background-color: rgba(15, 32, 66, 0.02);
}

.specs-table tr:hover {
    background-color: rgba(197, 165, 90, 0.05);
}

/* Success Message Popup style */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-green);
    color: var(--neutral-white);
    padding: 16px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10000;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.toast i {
    font-size: 1.25rem;
}

/* Responsive CSS */
@media (max-width: 1024px) {
    .about-grid, .details-grid, .product-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-hero-container {
        text-align: center;
    }
    
    .product-hero-content .hero-bullets {
        display: inline-block;
        text-align: left;
    }
    
    .product-hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .enquiry-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
        background-color: var(--primary-navy);
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background-color: var(--primary-navy-dark);
        width: 100%;
        height: calc(100vh - 75px);
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        padding: 40px 0;
        gap: 24px;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item:hover .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: block;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        margin-top: 10px;
        border: none;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group-full {
        grid-column: span 1;
    }
    
    .form-wrapper {
        padding: 30px 20px;
    }
    
    .about-experience-badge {
        right: 0;
        bottom: 0;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Certifications Modal & Interactive Card */
.cert-card {
    cursor: pointer;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 18, 40, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--neutral-white);
    padding: 24px;
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-gold);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: var(--neutral-white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--primary-gold);
    transform: rotate(90deg);
}

.modal-img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    max-height: 70vh;
    object-fit: contain;
}

.modal-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-navy);
    margin-top: 16px;
}
