/* ========================================
   ASHNEX AGROTRADE - MK EXPORTS STYLE
   Premium Agricultural Export Website
   ======================================== */

/* ===== ROOT VARIABLES ===== */
:root {
    --green-primary: #2E7D32;
    --green-dark: #1B5E20;
    --green-light: #4CAF50;
    --green-lighter: #E8F5E9;
    --blue-primary: #3F51B5;
    --blue-dark: #283593;
    --blue-accent: #3949AB;
    --white: #FFFFFF;
    --off-white: #F5F5F0;
    --light-grey: #ECECE5;
    --text-dark: #1a1a2e;
    --text-body: #555555;
    --text-light: #777777;
    --border-color: #e0e0e0;

    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);

    --transition: all 0.3s ease;
    --z-navbar: 1000;
    --z-floating: 999;
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== SECTION TITLES ===== */
.section-title {
    color: var(--green-primary);
    margin-bottom: 0.5rem;
    position: relative;
}

.section-title::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: var(--blue-primary);
    margin-bottom: 1rem;
    border-radius: 2px;
}

.section-title.centered::before {
    margin-left: auto;
    margin-right: auto;
}

.section-title.centered {
    text-align: center;
}

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

.section-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
}

.section-subtitle.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle.white {
    color: rgba(255,255,255,0.85);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--blue-primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(63, 81, 181, 0.4);
}

.btn-green {
    background: var(--green-primary);
    color: var(--white);
}

.btn-green:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.4);
}

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

.btn-outline:hover {
    background: var(--blue-primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--green-primary);
    font-weight: 700;
}

.btn-white:hover {
    background: var(--green-lighter);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #20BA57;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #e8e8e0;
    padding: 0.6rem 0;
    font-size: 0.85rem;
    color: var(--text-body);
    border-bottom: 1px solid var(--border-color);
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-item i {
    color: var(--blue-primary);
    font-size: 0.85rem;
}

.top-bar-item a {
    color: var(--text-body);
}

.top-bar-item a:hover {
    color: var(--green-primary);
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: var(--z-navbar);
    padding: 0;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 75px;
}

.navbar-logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    height: 45px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--green-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-menu li a {
    padding: 1.5rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--green-dark);
    display: block;
    position: relative;
    transition: var(--transition);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--green-primary);
    transition: width 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--green-primary);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 80%;
}

.cta-btn {
    background: var(--blue-primary) !important;
    color: var(--white) !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--blue-primary);
}

.cta-btn::after {
    display: none !important;
}

.cta-btn:hover {
    background: var(--blue-dark) !important;
    border-color: var(--blue-dark);
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--green-dark);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
    min-height: 550px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: var(--white);
}

.hero-badge-top {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text h1 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-text h1 .gradient-text {
    color: #FFD700;
    background: none;
    -webkit-text-fill-color: #FFD700;
}

.hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.12);
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.2);
    font-weight: 600;
    color: var(--white);
    font-size: 0.85rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.product-showcase {
    display: none;
}

/* Scroll Indicator */
.scroll-indicator { display: none; }

/* Hero Background Elements - hidden in new design */
.hero-background,
.hero-overlay,
.floating-leaf,
.floating-shape,
.bg-svg { display: none; }

/* ===== ABOUT / TRUST SECTION ===== */
.trust,
.about {
    padding: 5rem 0;
    background: var(--white);
}

.trust .section-subtitle,
.about .section-subtitle {
    margin-bottom: 3rem;
}

.trust-grid.three-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 0;
}

.trust-item {
    text-align: center;
    padding: 2rem 1.5rem;
}

.trust-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--green-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.trust-item h4 {
    color: var(--blue-primary);
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.trust-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-body);
}

.feature-list {
    text-align: left;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.feature-list li {
    padding: 0.3rem 0;
    color: var(--text-body);
}

.trust-additional {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.trust-additional .trust-item {
    padding: 1.5rem 1rem;
}

.trust-additional .trust-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    background: var(--green-lighter);
    color: var(--green-primary);
}

.trust-additional h4 {
    font-size: 1rem;
}

.trust-additional p {
    font-size: 0.85rem;
}

/* About page specific */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--green-lighter);
    border-radius: 8px;
}

.stat h4 {
    color: var(--green-primary);
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.stat p {
    font-size: 0.85rem;
    color: var(--text-body);
    margin: 0;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.value-card {
    padding: 1.5rem;
    background: var(--off-white);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.value-card h3 {
    color: var(--green-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.9rem;
    margin: 0;
}

.about-image {
    position: relative;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    border-radius: 12px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.emoji-large {
    font-size: 6rem;
}

/* ===== QUALITY SECTION ===== */
.quality-process {
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    padding: 4rem 0;
    color: var(--white);
}

.quality-process .section-title {
    color: var(--white);
}

.quality-process .section-title::before {
    background: var(--white);
}

.quality-process .section-subtitle {
    color: rgba(255,255,255,0.85);
}

.quality-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.quality-step {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    backdrop-filter: blur(4px);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.quality-step h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.quality-step p {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    margin: 0;
}

.quality-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 1.5rem;
    padding-top: 2rem;
}

/* ===== PRODUCTS SECTION ===== */
.products {
    background: linear-gradient(160deg, var(--green-light) 0%, var(--green-primary) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(255,255,255,0.06) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255,255,255,0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.03) 0%, transparent 60%);
    pointer-events: none;
}

.products .section-title {
    color: var(--white);
}

.products .section-title::before {
    background: var(--white);
}

.products .section-subtitle {
    color: rgba(255,255,255,0.85);
}

.filter-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    color: var(--white);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--white);
    color: var(--green-primary);
    border-color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 200px 1fr;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-emoji {
    font-size: 4rem;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--green-primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-description {
    color: var(--text-body);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.spec {
    font-size: 0.85rem;
    color: var(--text-body);
}

.spec i {
    color: var(--green-primary);
    width: 18px;
    margin-right: 0.3rem;
}

.btn-quote {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 0.7rem;
    font-size: 0.85rem;
}

/* ===== PROCESS / ORDER SECTION ===== */
.process {
    padding: 5rem 0;
    background: var(--white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: start;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: var(--green-lighter);
    z-index: 0;
}

.timeline-item {
    text-align: center;
    padding: 1rem;
    position: relative;
    z-index: 1;
}

.timeline-number {
    width: 50px;
    height: 50px;
    background: var(--green-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(46,125,50,0.3);
}

.timeline-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.timeline-item h3 {
    color: var(--green-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    font-size: 0.85rem;
    color: var(--text-body);
}

.timeline-connector {
    display: none;
}

/* ===== GLOBAL PRESENCE ===== */
.global-presence {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--off-white), var(--white));
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.country-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.country-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.country-item h4 {
    font-size: 0.95rem;
    color: var(--green-dark);
    margin-bottom: 0.25rem;
}

.country-item p {
    font-size: 0.8rem;
    margin: 0;
    color: var(--text-light);
}

.presence-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    border-radius: 12px;
    padding: 2.5rem;
}

.stat-box {
    text-align: center;
    color: var(--white);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.85;
}

/* ===== CERTIFICATIONS ===== */
.certifications {
    padding: 4rem 0;
    background: var(--white);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.cert-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--off-white);
    border-radius: 8px;
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.cert-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cert-card h3 {
    color: var(--green-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.cert-card p {
    font-size: 0.85rem;
    color: var(--text-body);
    margin-bottom: 0.75rem;
}

.cert-badge {
    display: inline-block;
    background: var(--green-primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--green-dark) 0%, #1a472a 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.03), transparent);
    border-radius: 50%;
}

.testimonials .section-title {
    color: var(--white);
    text-align: center;
}

.testimonials .section-title::before {
    background: var(--white);
    margin-left: auto;
    margin-right: auto;
}

.testimonials .section-subtitle {
    color: rgba(255,255,255,0.8);
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--green-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-info h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.15rem;
}

.testimonial-role {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    margin: 0;
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.star {
    color: #FFD700;
    font-size: 1.1rem;
}

.testimonial-text {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.7;
    margin: 0;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 2rem;
    color: rgba(255,255,255,0.3);
    font-family: serif;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 0;
    position: relative;
}

.cta-overlay { display: none; }

.cta-content {
    background: linear-gradient(135deg, var(--green-dark), #1a472a);
    border-radius: 12px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
}

.cta-content h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    margin: 0.5rem 0 0;
    font-size: 0.95rem;
}

.cta-content .btn {
    flex-shrink: 0;
}

.pulse-effect {
    animation: none;
}

/* ===== BLOG SECTION ===== */
.blog {
    padding: 5rem 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: var(--off-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    padding: 0;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem 0;
}

.blog-date {
    background: var(--blue-primary);
    color: var(--white);
    padding: 0.3rem 0.75rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-category {
    color: var(--green-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-card h3 {
    padding: 1rem 1.5rem 0;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.blog-card p {
    padding: 0 1.5rem;
    font-size: 0.9rem;
    color: var(--text-body);
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    padding: 0 1.5rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

.blog-meta i {
    margin-right: 0.3rem;
}

.read-more {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--blue-primary);
    font-weight: 600;
    font-size: 0.9rem;
    border-top: 1px solid var(--border-color);
    margin-top: 1rem;
}

.read-more:hover {
    color: var(--green-primary);
    background: rgba(46, 125, 50, 0.05);
}

/* ===== NEWSLETTER ===== */
.newsletter {
    padding: 3rem 0;
    background: var(--off-white);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h3 {
    color: var(--green-primary);
    margin-bottom: 0.5rem;
}

.newsletter-content p {
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--green-primary);
}

.glow-effect { animation: none; }

/* ===== FAQ SECTION ===== */
.faqs {
    padding: 5rem 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--off-white);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--green-primary);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    gap: 1rem;
}

.faq-question:hover {
    background: var(--green-lighter);
}

.faq-question h4 {
    font-size: 0.95rem;
    margin: 0;
    color: var(--text-dark);
    font-family: var(--font-primary);
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--green-primary);
    font-weight: 700;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-body);
    margin: 0;
    line-height: 1.7;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 5rem 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.contact-info p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.detail-item i {
    color: var(--blue-primary);
    font-size: 1.2rem;
    margin-top: 0.25rem;
    width: 20px;
    text-align: center;
}

.detail-item h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: var(--text-dark);
}

.detail-item p {
    font-size: 0.95rem;
    margin: 0;
}

.detail-item a {
    color: var(--blue-primary);
}

.detail-item a:hover {
    color: var(--green-primary);
}

.contact-form {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.contact-form h3 {
    color: var(--green-primary);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-primary);
    background: var(--white);
    transition: var(--transition);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-primary);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

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

.form-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.form-message.success {
    background: var(--green-lighter);
    color: var(--green-dark);
}

.form-message.error {
    background: #ffebee;
    color: #c62828;
}

/* ===== SERVICES ===== */
.services {
    padding: 5rem 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    background: var(--off-white);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-primary);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    width: 80px;
    height: 80px;
    background: var(--green-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 12px rgba(46,125,50,0.3);
}

.service-card h3 {
    color: var(--blue-primary);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-body);
    margin: 0;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--light-grey);
    padding: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding: 4rem 0 3rem;
}

.footer-section h4 {
    color: var(--green-primary);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    font-family: var(--font-primary);
    font-weight: 700;
}

.footer-section p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.7;
}

.footer-experience {
    margin-top: 0.75rem;
    font-size: 0.85rem;
}

.footer-service-hours {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: var(--text-body);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--green-primary);
    padding-left: 5px;
}

.contact-footer li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-footer li i {
    color: var(--blue-primary);
    width: 16px;
    text-align: center;
}

.contact-footer li a,
.contact-footer li span {
    color: var(--text-body);
    font-size: 0.9rem;
}

.contact-footer li a:hover {
    color: var(--green-primary);
    padding-left: 0;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--green-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--blue-primary);
    transform: translateY(-3px);
}

.footer-middle {
    padding: 1.25rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.footer-certifications {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cert-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.cert-badges {
    color: var(--green-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-bottom {
    padding: 1rem 0;
    background: var(--blue-dark);
    text-align: center;
}

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

.footer-bottom a {
    color: rgba(255,255,255,0.8);
}

.footer-bottom a:hover {
    color: var(--white);
}

/* ===== FLOATING WHATSAPP ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: var(--z-floating);
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 5.5rem;
    width: 45px;
    height: 45px;
    background: var(--green-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: var(--z-floating);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
}

/* ===== PAGE BANNER (for sub-pages) ===== */
.page-banner {
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    padding: 4rem 0 3rem;
    text-align: center;
    color: var(--white);
}

.page-banner h1 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.breadcrumb {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.9);
}

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

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Remove old animation on sections */
section {
    opacity: 1;
    animation: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image { display: none; }

    .hero-badges {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .trust-grid.three-pillars {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        grid-template-columns: 180px 1fr;
    }

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

    .process-timeline::before { display: none; }

    .countries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

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

    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-content {
        flex-direction: column;
        text-align: center;
        margin: 2rem;
    }

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

    .quality-arrow { display: none; }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-menu li a {
        padding: 1rem 2rem;
        width: 100%;
    }

    .cta-btn {
        margin: 0.5rem 2rem;
        display: inline-block;
        text-align: center;
    }

    .top-bar-content {
        gap: 1rem;
        font-size: 0.75rem;
    }

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

    .presence-stats {
        grid-template-columns: 1fr 1fr;
        padding: 2rem;
    }

    .process-timeline {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        grid-template-columns: 1fr;
    }

    .product-image {
        min-height: 200px;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        min-height: 450px;
        padding: 3rem 0;
    }

    .top-bar { display: none; }

    .countries-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .presence-stats {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .floating-whatsapp {
        width: 48px;
        height: 48px;
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 1.4rem;
    }
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 4rem 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-details {
    margin: 2rem 0;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f5e9;
    color: var(--primary-green);
    border-radius: 50%;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.detail-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    color: var(--dark-blue);
}

.detail-item p,
.detail-item a {
    font-size: 0.9rem;
    color: var(--text-body);
}

.detail-item a:hover {
    color: var(--primary-green);
}

/* ===== CONTACT FORM ===== */
.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.contact-form h3 {
    font-family: var(--heading-font);
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--body-font);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fafafa;
    color: var(--text-dark);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1);
}

.form-group input:disabled,
.form-group select:disabled,
.form-group textarea:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #f0f0f0;
}

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

/* Validation Errors */
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #e53935;
    background: #fff5f5;
    animation: shake 0.4s ease;
}

.field-error {
    display: block;
    font-size: 0.78rem;
    color: #e53935;
    margin-top: 0.3rem;
    padding-left: 0.2rem;
    font-weight: 500;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-5px); }
    40% { transform: translateX(5px); }
    60% { transform: translateX(-3px); }
    80% { transform: translateX(3px); }
}

/* Form Message */
.form-message {
    padding: 0.85rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    animation: fadeInUp 0.3s ease;
}

.form-message.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.form-message.error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.form-message.warning {
    background: #fff8e1;
    color: #f57f17;
    border: 1px solid #ffe082;
}

/* Submit Button */
.btn-submit {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-submit:disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

/* Loading Spinner */
.spinner-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success Overlay */
.success-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
    animation: fadeInUp 0.5s ease;
}

.success-checkmark {
    width: 80px;
    height: 80px;
}

.checkmark-svg {
    width: 80px;
    height: 80px;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #2e7d32;
    animation: checkmark-circle-anim 0.6s ease-in-out forwards;
}

.checkmark-check {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 3;
    stroke-linecap: round;
    stroke: #2e7d32;
    animation: checkmark-check-anim 0.3s ease-in-out 0.4s forwards;
}

@keyframes checkmark-circle-anim {
    to { stroke-dashoffset: 0; }
}

@keyframes checkmark-check-anim {
    to { stroke-dashoffset: 0; }
}

/* Form submitting state */
.form-submitting {
    pointer-events: none;
}

.form-submitting::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
    animation: loading-bar 1.5s infinite;
}

@keyframes loading-bar {
    to { left: 100%; }
}

/* Contact responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
