/* =========================================
   DESIGN SYSTEM IMPORTS
   ========================================= */
@import url('design-system/tokens.css');
@import url('design-system/reset.css');
@import url('design-system/typography.css');
@import url('design-system/utilities.css');
@import url('design-system/accessibility.css');
@import url('design-system/components/buttons.css');
@import url('design-system/components/states.css');

/* =========================================
   1. VARIABLES & TOKENS (REFRESHED)
   ========================================= */

:root {
    /* colors - corporate eco */
    --color-primary: #1A472A;
    /* british racing green */
    --color-primary-light: #2C5F3D;
    --color-primary-dark: #0D2816;
    --color-secondary: #D4A373;
    /* muted gold/wood */

    --color-text: #1F2937;
    /* soft black */
    --color-text-light: #6B7280;
    /* cool grey */

    --color-background: #FFFFFF;
    --color-surface-alt: #F3F4F6;
    /* light grey section background */

    --color-border: #E5E7EB;
    --color-white: #FFFFFF;
    /* theme variables */
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;
    --bg-card: #ffffff;
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
    --accent-primary: #15803d;
    --accent-light: #22c55e;
    --accent-bg: #ecfdf5;
    --card-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    /* typography - montserrat */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    /* spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    /* ui elements */
    --radius-sm: 4px;
    --radius-md: 8px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    /* new design colors */
    --bg-green: #0B3D2C;
    --bg-white: #FFFFFF;
    --color-gold: #C5A059;
    --color-gold-light: #E5C585;
    --color-dark-green: #0B3D2C;
    --color-green-light: #1A472A;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

/* Removed global !important font-family - now using design system tokens */

/* =========================================
   2. RESET & BASE
   ========================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--bg-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-size: 0;
    overflow-x: hidden;
    max-width: 100vw;
}

body>* {
    font-size: 16px;
}

main {
    flex: 1;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

/* =========================================
   3. TYPOGRAPHY
   ========================================= */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: var(--spacing-md);
    font-weight: 400;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.text-center {
    text-align: center;
}

.text-light {
    color: var(--color-text-light);
}

.text-xs {
    font-size: 0.875rem;
}

.font-bold {
    font-weight: 600;
}

/* =========================================
   4. LAYOUT UTILITIES
   ========================================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.grid {
    display: grid;
    gap: var(--spacing-md);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.5rem;
    }
}

.flex {
    display: flex;
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-sm {
    gap: var(--spacing-sm);
}

.section {
    padding: var(--spacing-lg) 0;
}

/* =========================================
   5. COMPONENTS
   ========================================= */
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    cursor: pointer;
    border: 1px solid transparent;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-1px);
}

.btn-outline {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Cards */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    transition: box-shadow 0.2s ease, background-color 0.3s ease;
}

.card:hover {
    box-shadow: var(--card-shadow);
    border-color: var(--accent-primary);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.75rem 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

header.header-white {
    background: #ffffff !important;
    border-bottom: 1px solid #e5e7eb !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

header.header-white .nav-links a {
    color: var(--color-primary) !important;
}

header.header-white .nav-logo {
    color: var(--color-primary) !important;
}

header.header-white .lang-current {
    color: var(--color-primary) !important;
}

header.header-white .logo-leaf {
    text-shadow: none !important;
}

/* Removed old generic header.scrolled rule - now using specific classes */

.nav-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.02em;
}

/* Dropdown Menu */
.nav-dropdown {
    position: absolute;
    padding-bottom: 0;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px) scale(0.95);
    min-width: 200px;
    background: var(--bg-card, white);
    border: 1px solid var(--border-color, #e5e7eb);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    background: rgba(255, 255, 255, 0.85);
    /* glass effect */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--color-text) !important;
    font-weight: 500;
    width: 100%;
    text-align: left;
    transition: background 0.2s;
}

.nav-dropdown-menu a:hover {
    background: var(--color-surface-alt);
    color: var(--color-primary) !important;
    text-shadow: none !important;
}

/* Ensure submenu links don't have the bottom underline animation of main links */
.nav-dropdown-menu a::after {
    display: none !important;
}

/* Plant Tree CTA Button Override */
.nav-links a.btn {
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    /* pill shape */
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: white !important;
    box-shadow: 0 4px 12px rgba(26, 71, 42, 0.2);
    border: none;
}

.nav-links a.btn::after {
    display: none;
}

/* No underline for button */
.nav-links a.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 71, 42, 0.3);
}

/* Transparent State with Blur */
header.header-transparent:not(.scrolled) {
    background: rgba(0, 0, 0, 0.1);
    /* very subtle tint */
    backdrop-filter: blur(4px);
    /* slight blur */
    -webkit-backdrop-filter: blur(4px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* In transparent mode (at top), show light logo */
header.header-transparent:not(.scrolled) .logo-light {
    display: block !important;
}

header.header-transparent:not(.scrolled) .logo-dark {
    display: none !important;
}

header.header-transparent:not(.scrolled) .nav-logo {
    color: white;
}

header.header-transparent:not(.scrolled) .nav-links a {
    color: white;
}

header.header-transparent:not(.scrolled) .nav-links a::after {
    background-color: white;
}

/* Hero */
.hero {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 8rem 0;
    text-align: center;
}

.hero h1 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid var(--color-border);
}

/* ========================================
   Cookie Trigger Icon
   ======================================== */
.cookie-trigger {
    position: fixed;
    left: 2rem;
    bottom: 2rem;
    width: 56px;
    height: 56px;
    background: #001f3f;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 31, 63, 0.3);
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cookie-trigger:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 31, 63, 0.4);
}

.cookie-trigger svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.cookie-trigger.hidden {
    display: none;
}

/* Cookie Consent Modal */
.cookie-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 90%;
    max-width: 720px;
    background: #001f3f;
    color: #ffffff;
    padding: 2rem;
    z-index: 10000;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid #003d66;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cookie-banner.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

/* Cookie Overlay */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cookie-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

/* ========================================
   Cookie Banner Components
   ======================================== */

/* Header */
.cookie-header {
    padding: 0.625rem 1.5rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: right;
}

.cookie-logo {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-logo strong {
    display: block;
    font-size: 0.9375rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0;
}

/* Tabs */
.cookie-tabs {
    display: flex;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    background: transparent;
}

.cookie-tab {
    flex: 1;
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s;
}

.cookie-tab:hover {
    color: rgba(255, 255, 255, 0.9);
}

.cookie-tab.active {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

/* Tab Content */
.cookie-tab-content {
    display: none;
    padding: 0.875rem 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.cookie-tab-content.active {
    display: block;
}

.cookie-tab-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.375rem 0;
}

.cookie-tab-description {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin-bottom: 0.875rem;
}

/* Consent List */
.cookie-consent-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.cookie-consent-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.cookie-consent-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.cookie-consent-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    width: 51px;
    height: 31px;
    flex-shrink: 0;
    display: inline-block;
}

.toggle-switch input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: 0;
    cursor: pointer;
    z-index: 2;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 31px;
    transition: 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
    z-index: 1;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 27px;
    width: 27px;
    left: 2px;
    bottom: 2px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked+.toggle-slider {
    background: #34c759;
    border-color: #34c759;
}

.toggle-switch input:checked+.toggle-slider:before {
    transform: translateX(20px);
}

.toggle-switch input:disabled+.toggle-slider {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
}

.toggle-switch input:disabled+.toggle-slider:before {
    background: rgba(255, 255, 255, 0.8);
}

.toggle-switch input:checked:disabled+.toggle-slider {
    background: #34c759;
    border-color: #34c759;
    opacity: 0.8;
    cursor: not-allowed;
}

.toggle-switch input:checked:disabled+.toggle-slider:before {
    background: white;
}

/* Category List */
.cookie-category-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cookie-category {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-category:last-child {
    border-bottom: none;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    cursor: pointer;
}

.category-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.category-expand-icon {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.2s;
}

.category-header.expanded .category-expand-icon {
    transform: rotate(180deg);
}

.category-label {
    flex: 1;
}

.category-name {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.category-count {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.125rem 0.625rem;
    border-radius: 12px;
    margin-left: 0.5rem;
}

.category-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.category-details.expanded {
    max-height: 500px;
    padding-bottom: 1.25rem;
}

.category-description {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-item {
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.service-item strong {
    color: #ffffff;
}

/* Action Buttons */
.cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.625rem;
    padding: 0.75rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
}

.cookie-btn {
    padding: 0.625rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.8125rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-btn-deny {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-deny:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn-selection {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-selection:hover {
    background: rgba(255, 255, 255, 0.15);
}

.cookie-btn-all {
    background: #22c55e;
    color: #ffffff;
}

.cookie-btn-all:hover {
    background: #16a34a;
}

/* Optional: Modal Backdrop */
.cookie-banner::before {
    content: '';
    position: fixed;
    top: -50vh;
    /* cover huge area to simulate full screen fixed relative to modal */
    left: -50vw;
    width: 200vw;
    height: 200vh;
    background: rgba(0, 0, 0, 0.3);
    /* lighter dark overlay */
    backdrop-filter: blur(2px);
    /* soft blur instead of just dark */
    z-index: -1;
    border-radius: 0;
}

/* Cookie Banner Mobile Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        width: 92%;
        max-width: 92%;
        padding: 1.25rem;
        max-height: 80vh;
        font-size: 0.85rem;
    }
    
    .cookie-header {
        padding: 0.5rem 0.75rem 0.5rem;
    }
    
    .cookie-body {
        padding: 0.75rem;
    }
    
    .cookie-title {
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
    }
    
    .cookie-description {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .cookie-actions {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .cookie-consent-item {
        padding: 0.65rem;
    }
    
    .cookie-consent-label {
        font-size: 0.8rem;
    }
    
    .cookie-tabs {
        gap: 0.5rem;
    }
    
    .cookie-tab {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        width: 94%;
        padding: 1rem;
        max-height: 85vh;
        border-radius: 8px;
    }
    
    .cookie-title {
        font-size: 1rem;
    }
    
    .cookie-description {
        font-size: 0.75rem;
    }
    
    .cookie-btn {
        padding: 0.65rem 0.875rem;
        font-size: 0.8rem;
    }
    
    .cookie-tab {
        padding: 0.45rem 0.65rem;
        font-size: 0.75rem;
    }
    
    .cookie-consent-label {
        font-size: 0.75rem;
    }
}

/* Premium Footer */
.footer {
    position: relative;
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 0;
    font-size: 0.95rem;
    overflow: hidden;
    padding-top: 12rem;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #001f3f;
    z-index: 0;
}

.footer .container,
.footer-grid,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer h4 {
    color: #ffffff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    transform: translateY(-3px);
}

.footer-trust {
    text-align: center;
    padding: 2.5rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-trust p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-trust-icons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.footer-trust-icons i.pf {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    cursor: default;
}

.footer-trust-icons i.pf:hover {
    color: rgba(255, 255, 255, 1);
    transform: scale(1.05);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 1rem;
    }

    /* Unwrap .footer-brand so its children participate in the main grid */
    .footer-brand {
        display: contents;
    }

    /* Row 1 & 2 Left: Logo */
    .footer__brand-logo {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
        align-self: flex-start;
    }

    /* Row 1 Right: Description */
    .footer__brand-desc {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        font-size: 0.9rem;
        margin-bottom: 0;
        align-self: flex-start;
    }

    /* Row 2 Right: Contact Info */
    .footer__contact-list {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        margin-top: -1.5rem;
        /* Pull up closer to the description */
    }

    /* Row 3 Left: Quick Links */
    .footer-links--quick {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    /* Row 3 Right: Gift Trees */
    .footer-links--gift {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }

    /* Row 4 Left: Support */
    .footer-links--support {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
    }

    /* Row 4 Right: Social Icons */
    .footer .social-icons {
        grid-column: 2 / 3;
        grid-row: 4 / 5;
        justify-content: flex-start;
        align-self: flex-start;
        margin-top: 2rem;
    }

    .footer h4 {
        font-size: 0.85rem;
    }

    .cookie-trigger {
        left: 1.5rem;
        bottom: 1.5rem;
        width: 50px;
        height: 50px;
    }
}

/* Footer Story Section */
.footer-story-section {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(46, 125, 50, 0.1));
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.footer-story-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.footer-story-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.footer-story-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

.footer-story-icon svg {
    stroke: white;
}

.footer-story-text {
    flex: 1;
}

.footer-story-text h3 {
    color: #4CAF50;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.footer-story-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.footer-story-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.footer-story-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    color: white;
}

.footer-story-btn svg {
    transition: transform 0.3s ease;
}

.footer-story-btn:hover svg {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .footer-story-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-story-text h3 {
        font-size: 1.3rem;
    }

    .footer-story-text p {
        font-size: 0.95rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #15803d;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(21, 128, 61, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #166534;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(21, 128, 61, 0.5);
}

.footer-cookie-link {
    cursor: pointer;
}

.cookie-privacy-link {
    color: #4ade80;
}

/* =========================================
   HOME PAGE - MODERN ECO STYLE
   ========================================= */
/* Eco Hero with Video */
.eco-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 0 !important;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.eco-hero .container {
    position: relative;
    z-index: 2;
}

.eco-hero-content {
    padding: 8rem 0;
    max-width: 700px;
}

.eco-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.eco-hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    color: white;
    margin-bottom: 1.5rem;
}

.eco-hero-text h1 span {
    color: #4ade80;
}

.eco-hero-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(12px);
        opacity: 0;
    }
}

/* Eco Buttons */
.btn-eco-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #15803d;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-eco-primary:hover {
    background: #166534;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(21, 128, 61, 0.4);
}

.btn-eco-primary.full {
    width: 100%;
    justify-content: center;
}

@keyframes trustGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes trustShine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4b5563;
    font-size: 0.85rem;
    font-weight: 500;
    background: white;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.trust-item svg {
    stroke: #6ee7b7;
    width: 18px;
    height: 18px;
    color: #059669;
    flex-shrink: 0;
}

.flag-icon {
    font-size: 1.1rem;
    border-radius: 2px;
}

/* Section Intro */
.section-intro {
    margin-bottom: 1.5rem;
}

.section-intro.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    background: #d1fae5;
    color: #065f46;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.section-intro h2 {
    font-size: 2.5rem;
    color: #064e3b;
    margin-bottom: 0.75rem;
}

.section-intro p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 500px;
}

.section-intro.centered p {
    margin: 0 auto;
}

/* How It Works - 4 Step Process */
.process-header {
    text-align: center;
    margin-bottom: 2rem;
}

.process-header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.process-header-dash {
    color: #6B8E23;
    letter-spacing: 3px;
    font-weight: 700;
}

.process-title {
    font-size: 2.2rem;
    color: #0B3D2C;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-subtitle {
    color: #4b5563;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.process-section {
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    z-index: 0;
}

.process-section .container {
    position: relative;
    z-index: 1;
}

.process-section .section-intro {
    margin-bottom: 2rem;
}

.process-section .section-intro h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.process-section .section-intro p {
    font-size: 0.95rem;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    overflow: visible;
    margin-top: 3rem;
}

.process-step-card {
    background: white;
    border-radius: 20px;
    overflow: visible !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(6, 78, 59, 0.12);
}

.process-step-card:hover .step-image img {
    transform: scale(1.1);
}

.step-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    background: #C8E6C9;
    color: #2e7d32;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    transform: translateX(-50%);
    z-index: 20;
    white-space: nowrap;
    width: max-content;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .process-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .process-steps-grid {
        grid-template-columns: 1fr;
    }

    .step-image {
        height: 200px;
    }
}

.impact-left .section-tag.light {
    background: rgba(110, 231, 183, 0.2);
    color: #6ee7b7;
}

.impact-card {
    background: #F0FFF4;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(107, 142, 35, 0.15);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.impact-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    border-color: rgba(110, 231, 183, 0.3);
    box-shadow: 0 8px 25px rgba(107, 142, 35, 0.1);
}

.impact-icon {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    display: block;
}

.impact-value {
    font-size: 1rem;
    font-weight: 700;
    color: #064e3b;
    line-height: 1;
    margin-bottom: 0.25rem;
    display: block;
}

.impact-label {
    font-size: 0.7rem;
    color: #9ca3af;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 10rem 0 6rem;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--color-gold-light);
    border: 1px solid rgba(197, 160, 89, 0.3);
    font-family: var(--font-sans);
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Packages Section - Tabbed */
.packages-section {
    padding: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.packages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    z-index: 0;
}

.packages-section .container {
    position: relative;
    z-index: 1;
}

.packages-section .section-intro {
    margin-bottom: 0.75rem;
}

.packages-section .section-intro h2 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: #ecfdf5;
    color: #065f46;
}

.tab-btn.active {
    background: #ecfdf5;
    border-color: #15803d;
    color: #065f46;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .package-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .corporate-grid {
        grid-template-columns: 1fr !important;
    }
}

.eco-package.featured {
    border-color: #15803d;
    background: linear-gradient(to bottom, #ecfdf5, white);
}

.pkg-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #dcfce7;
    color: #166534;
    padding: 0.15rem 0.6rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.eco-pkg-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #15803d;
}

.eco-pkg-price .currency {
    font-size: 1rem;
    color: #6b7280;
}

.tree-count {
    font-size: 0.85rem;
    color: #6b7280;
}

.eco-pkg-features li.highlight {
    color: #15803d;
    font-weight: 600;
}

.why-plant-video .container {
    position: relative;
    z-index: 2;
}

.corp-eco-card.featured {
    background: linear-gradient(to bottom, #ecfdf5, #f9fafb);
    box-shadow: 0 10px 30px rgba(21, 128, 61, 0.1);
}

.btn-eco-sm:hover,
.btn-eco-sm.primary {
    background: #15803d;
    color: white;
}

/* Eco CTA Section - Parallax */
.eco-cta {
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: #FFFFFF !important;
}

.eco-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    z-index: 0;
}

.eco-cta .container {
    position: relative;
    z-index: 1;
}

.eco-cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.75rem;
}

.eco-cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.eco-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-eco-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #15803d;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-eco-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-eco-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-eco-ghost:hover {
    background: white;
    color: #15803d;
    border-color: white;
}

.mission-premium {
    padding: 8rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.section-label.centered {
    justify-content: center;
}

.section-label.light {
    color: rgba(255, 255, 255, 0.9);
}

.label-dot.light {
    background: rgba(255, 255, 255, 0.8);
}

.btn-learn-more {
    display: inline-block;
    align-items: center;
    gap: 0.75rem;
    background: #6B8E23;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-learn-more svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-learn-more:hover {
    background: var(--color-primary-light);
    transform: translateX(5px);
}

.btn-learn-more:hover svg {
    transform: translateX(5px);
}

.section-header-premium.centered {
    text-align: center;
}

.premium-package.featured {
    background: linear-gradient(to bottom, #f0fdf4, white);
    border-color: #22c55e;
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.2);
}

.pkg-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    width: 60px;
    height: 60px;
    background: #f0fdf4;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
}

.pkg-trees {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.pkg-features li.highlight {
    color: #16a34a;
    font-weight: 600;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    position: relative;
}

.process-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.process-icon {
    font-size: 2.5rem;
    margin: 1rem 0;
}

.process-card h4 {
    font-size: 1.15rem;
    color: white;
    margin-bottom: 0.5rem;
}

.process-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.corp-premium-card.featured {
    background: linear-gradient(to bottom, #f0fdf4, #fafafa);
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.15);
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    position: relative;
    overflow: hidden;
}

.c1 {
    width: 300px;
    height: 300px;
    background: #22c55e;
    top: -100px;
    right: -100px;
}

.c2 {
    width: 200px;
    height: 200px;
    background: #16a34a;
    bottom: -50px;
    left: -50px;
}

.l1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.l2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.l3 {
    bottom: 30%;
    left: 40%;
    animation-delay: 4s;
}

@keyframes ctaFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(15deg);
    }
}

.cta-text h2 {
    font-size: 2.75rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.cta-text h2 span {
    color: #16a34a;
}

.cta-text p {
    font-size: 1.15rem;
    color: var(--color-text);
    line-height: 1.7;
}

.process-section-new .section-header h2,
.process-section-new .section-header p {
    color: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.step-icon span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4ade80;
}

.process-step-new:hover .step-icon {
    background: #22c55e;
    border-color: #22c55e;
}

.process-step-new:hover .step-icon span {
    color: white;
}

.corporate-card.featured {
    border: 2px solid #22c55e;
}

/* Impact Section */
.impact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.impact-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.counter-value {
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

.counter-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: white;
}

.cta-content {
    max-width: 600px;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* =========================================
   RESPONSIVE - ECO STYLE
   ========================================= */
@media (max-width: 1024px) {
    .eco-hero-content {
        max-width: 100%;
        text-align: center;
    }

    .eco-hero-cta {
        justify-content: center;
    }

    .hero-trust-row {
        justify-content: center;
    }

    .packages-eco-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .impact-text {
        margin-bottom: 2rem;
    }

    .steps-grid {
        flex-wrap: wrap;
    }

    .step-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .eco-hero-text h1 {
        font-size: 2.5rem;
    }

    .eco-hero-text p {
        font-size: 1.1rem;
    }

    .hero-trust-row {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .trust-items {
        gap: 1.5rem;
    }

    .trust-item {
        font-size: 0.85rem;
    }

    .steps-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .step-card {
        width: 100%;
    }

    .packages-eco-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-image img {
        height: 300px;
    }

    .eco-benefits {
        grid-template-columns: 1fr;
    }

    .corporate-eco-grid {
        grid-template-columns: 1fr;
    }

    .section-intro h2 {
        font-size: 2rem;
    }

    .eco-cta-content h2 {
        font-size: 2rem;
    }

    .eco-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* =========================================
   ABOUT PAGE STYLES
   ========================================= */
/* About Hero Section */
.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.9), rgba(21, 128, 61, 0.85)),
        url('https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat fixed;
    z-index: 0;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero-content {
    text-align: center;
    padding: 8rem 0 4rem;
    max-width: 700px;
    margin: 0 auto;
}

.about-hero-content h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-hero-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* About Mission Section */
.about-mission {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f0fdf4, #ffffff);
}

.about-impact .container {
    position: relative;
    z-index: 1;
}

.about-impact .section-intro h2 {
    color: white;
}

.impact-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    width: 64px;
    height: 64px;
    background: rgba(107, 142, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.about-process .section-intro h2 {
    color: #064e3b;
}

.about-cta .container {
    position: relative;
    z-index: 1;
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .impact-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-content {
        padding: 6rem 0 3rem;
    }

    .about-hero-content h1 {
        font-size: 2.25rem;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-image img {
        height: 300px;
    }

    .impact-cards {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-cta-content h2 {
        font-size: 2rem;
    }
}

.shop-hero .container {
    position: relative;
    z-index: 2;
}

.shop-packages .container {
    position: relative;
    z-index: 1;
}

.shop-packages-grid.corporate {
    grid-template-columns: repeat(3, 1fr);
}

.shop-package-card.corp {
    border-color: rgba(21, 128, 61, 0.2);
}

.shop-pkg-icon.corp {
    width: 80px;
    height: 80px;
}

.shop-pkg-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #15803d;
}

.shop-pkg-price .currency {
    font-size: 1rem;
    color: #6b7280;
}

.shop-pkg-features li.highlight {
    color: #15803d;
    font-weight: 600;
}

/* Shop Responsive */
@media (max-width: 1024px) {
    .shop-packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-packages-grid.corporate {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .shop-hero-content h1 {
        font-size: 2rem;
    }

    .shop-tabs {
        flex-direction: column;
        align-items: center;
    }

    .shop-tab-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .shop-packages-grid,
    .shop-packages-grid.corporate {
        grid-template-columns: 1fr;
    }

    .shop-why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.pkg-detail-hero .container {
    position: relative;
    z-index: 1;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: white;
    transform: translateX(-5px);
}

.pkg-segment-badge.company {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.trust-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

/* Package Detail Responsive */
@media (max-width: 968px) {
    .pkg-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pkg-detail-visual {
        position: static;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .pkg-detail-info h1 {
        font-size: 2rem;
    }

    .pkg-detail-price .price-amount {
        font-size: 2.5rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }
}

.checkout-hero .container {
    position: relative;
    z-index: 1;
}

/* Summary Card - MOVED TO plant-companies.css */
/* Checkout styles are now in /assets/css/pages/plant-companies.css */

/* Checkout Responsive - MOVED TO plant-companies.css */

/* =========================================
   SUCCESS PAGE STYLES
   ========================================= */
.success-hero {
    padding: 5.5rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.success-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(21, 128, 61, 0.92), rgba(6, 95, 70, 0.88)),
        url('https://images.unsplash.com/photo-1518531933037-91b2f5f229cc?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat fixed;
    z-index: 0;
}

.success-hero .container {
    position: relative;
    z-index: 1;
}

.success-hero-content {
    text-align: center;
    color: white;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.success-hero-content h1 {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.25rem;
}

.success-hero-content p {
    font-size: 1rem;
    opacity: 0.9;
}

.success-content {
    padding: 1.5rem 0;
    background: linear-gradient(180deg, #f0fdf4, #ffffff);
}

.success-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

/* Invoice Card */
.invoice-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
}

.invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.invoice-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-icon {
    font-size: 1.5rem;
}

.invoice-brand h3 {
    font-size: 1.1rem;
    color: #064e3b;
    margin-bottom: 0;
}

.invoice-brand span {
    font-size: 0.8rem;
    color: #6b7280;
}

.status-badge.paid {
    background: #15803d;
    color: white;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.invoice-info {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.invoice-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label {
    font-size: 0.7rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-weight: 600;
    color: #374151;
}

.invoice-items {
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.invoice-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.item-info h4 {
    font-size: 0.95rem;
    color: #064e3b;
    margin-bottom: 0.15rem;
}

.item-info span {
    font-size: 0.8rem;
    color: #6b7280;
}

.item-price {
    font-weight: 600;
    color: #374151;
}

.invoice-totals {
    padding: 1rem 0;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
    font-size: 0.85rem;
    color: #6b7280;
}

.total-row.final {
    border-top: 2px solid #064e3b;
    margin-top: 0.35rem;
    padding-top: 0.5rem;
    font-weight: 700;
    font-size: 1.05rem;
    color: #064e3b;
}

.invoice-footer {
    background: #f0fdf4;
    padding: 0.75rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.invoice-footer p {
    margin: 0;
    font-size: 0.8rem;
    color: #374151;
}

.btn-download {
    background: #064e3b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background: #065f46;
}

/* Next Steps Card */
.next-steps-card {
    background: white;
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.next-steps-card h3 {
    font-size: 1rem;
    color: #064e3b;
    margin-bottom: 0.75rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #374151;
}

.step-num {
    width: 24px;
    height: 24px;
    background: #ecfdf5;
    color: #064e3b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.btn-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 2rem;
    background: linear-gradient(135deg, #15803d, #166534);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(21, 128, 61, 0.3);
}

.btn-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(21, 128, 61, 0.4);
}

/* =========================================
   CANCEL PAGE STYLES
   ========================================= */
.cancel-hero {
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.cancel-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.9), rgba(75, 85, 99, 0.85)),
        url('https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat fixed;
    z-index: 0;
}

.cancel-hero .container {
    position: relative;
    z-index: 1;
}

.cancel-hero-content {
    text-align: center;
    color: white;
}

.cancel-icon {
    font-size: 4rem;
    margin-bottom: 0.75rem;
}

.cancel-hero-content h1 {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.cancel-hero-content p {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto;
}

.cancel-content {
    padding: 2rem 0;
    background: linear-gradient(180deg, #f3f4f6, #ffffff);
}

.cancel-wrapper {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.cancel-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-retry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #15803d, #166534);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(21, 128, 61, 0.3);
}

.btn-retry:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(21, 128, 61, 0.4);
}

.btn-home-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: #064e3b;
    border: 2px solid #064e3b;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-home-outline:hover {
    background: #064e3b;
    color: white;
}

.cancel-help {
    font-size: 0.9rem;
    color: #6b7280;
}

.cancel-help a {
    color: #15803d;
    font-weight: 600;
}

.cancel-help a:hover {
    text-decoration: underline;
}

/* =========================================
   CERTIFICATE PAGE STYLES
   ========================================= */
/* Certificate Hero */
.cert-hero {
    padding: 5.5rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.cert-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.92), rgba(6, 95, 70, 0.88)),
        url('https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat fixed;
    z-index: 0;
}

.cert-hero .container {
    position: relative;
    z-index: 1;
}

.cert-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: all 0.3s ease;
}

.cert-back-link:hover {
    color: white;
    transform: translateX(-5px);
}

/* Certificate Content */
.cert-content {
    padding: 2rem 0 3rem;
    background: linear-gradient(180deg, #f0fdf4, #ffffff);
}

.cert-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

/* Certificate Visual */
.cert-visual-wrap {
    position: sticky;
    top: 80px;
}

/* New Certificate Card Design */
.cert-card-new {
    background: linear-gradient(180deg, #fefefe 0%, #f8fdf9 100%);
    border-radius: 8px;
    box-shadow: 0 25px 60px rgba(6, 78, 59, 0.15);
    overflow: hidden;
}

.cert-top-bar {
    height: 12px;
    background: linear-gradient(90deg, #064e3b, #15803d, #064e3b);
    position: relative;
}

.cert-corner-leaf {
    position: absolute;
    top: 8px;
    font-size: 1.5rem;
    opacity: 0.3;
}

.cert-corner-leaf.left {
    left: 1rem;
}

.cert-corner-leaf.right {
    right: 1rem;
    transform: scaleX(-1);
}

.cert-body {
    padding: 2rem 2.5rem;
}

/* Brand Section */
.cert-brand {
    text-align: center;
    margin-bottom: 1.5rem;
}

.brand-tree {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.25rem;
}

.brand-name {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #064e3b;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
}

.brand-tagline {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 0.25rem;
}

/* Title Section */
.cert-title-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cert-title-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4a373, transparent);
    max-width: 80px;
}

.cert-title-section h1 {
    font-size: 1.1rem;
    color: #064e3b;
    letter-spacing: 0.2em;
    margin: 0;
    white-space: nowrap;
}

/* Main Content */
.cert-main {
    text-align: center;
}

.cert-intro {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.cert-recipient {
    margin-bottom: 1rem;
}

.cert-recipient.corp {
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    padding: 1rem;
    border-radius: 12px;
    margin: 0 -0.5rem 1rem;
}

.cert-company-logo {
    height: 50px;
    margin-bottom: 0.5rem;
}

.recipient-occasion {
    display: block;
    font-size: 0.8rem;
    color: #15803d;
    margin-bottom: 0.25rem;
}

.recipient-from {
    display: block;
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.recipient-name {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #064e3b;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.recipient-type {
    display: block;
    font-size: 0.75rem;
    color: #15803d;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

.cert-action {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

/* Tree Display */
.cert-tree-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 16px;
}

.tree-visual {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.tree-icon {
    font-size: 1.5rem;
}

.tree-more {
    font-size: 0.85rem;
    color: #065f46;
    font-weight: 600;
    margin-left: 0.25rem;
}

.tree-count-box {
    text-align: center;
    padding: 0.5rem 1.25rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(6, 78, 59, 0.1);
}

.count-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #15803d;
    line-height: 1;
}

.count-label {
    display: block;
    font-size: 0.7rem;
    color: #065f46;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Impact Row */
.cert-impact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.impact-item {
    text-align: center;
}

.impact-divider {
    width: 1px;
    height: 40px;
    background: #e5e7eb;
}

/* Footer */
.cert-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px dashed #e5e7eb;
}

.cert-date-section,
.cert-id-section {
    text-align: center;
}

.date-label,
.id-label {
    display: block;
    font-size: 0.65rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.date-value,
.id-value {
    display: block;
    font-size: 0.85rem;
    color: #374151;
    font-weight: 600;
    margin-top: 0.15rem;
}

.id-value {
    font-family: monospace;
    font-size: 0.75rem;
}

.cert-qr {
    text-align: center;
}

.qr-placeholder {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #15803d, #166534);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.25rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.qr-text {
    font-size: 0.65rem;
    color: #15803d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cert-bottom-bar {
    height: 8px;
    background: linear-gradient(90deg, #d4a373, #e5c9a8, #d4a373);
}

.btn-print {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #15803d, #166534);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(21, 128, 61, 0.3);
}

.btn-print:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(21, 128, 61, 0.4);
}

/* Certificate Info Panel */
.cert-info-panel {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.cert-info-panel h2 {
    font-size: 1.25rem;
    color: #064e3b;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e7eb;
}

.cert-map {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid #e5e7eb;
}

/* Sertifikat xəritə iframe — border sıfırlama */
.cert-map iframe {
    border: 0;
}

.cert-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cert-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 10px;
}

.info-icon {
    font-size: 1.25rem;
}

.cert-info-item .info-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9ca3af;
    margin-bottom: 0.15rem;
}

.cert-info-item .info-value {
    display: block;
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
}

.cert-info-item .info-value.mono {
    font-family: monospace;
    font-size: 0.8rem;
}

.cert-note {
    background: #f0fdf4;
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #15803d;
    margin-bottom: 1.5rem;
}

.note-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #065f46;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cert-note p {
    font-style: italic;
    color: #374151;
    margin: 0;
    font-size: 0.95rem;
}

.cert-photos h3 {
    font-size: 1rem;
    color: #064e3b;
    margin-bottom: 1rem;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.photo-item {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.photo-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.photo-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

/* Pending State */
.cert-pending {
    text-align: center;
    padding: 3rem 2rem;
    background: #f9fafb;
    border-radius: 12px;
}

.pending-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.cert-pending h3 {
    font-size: 1.25rem;
    color: #064e3b;
    margin-bottom: 0.5rem;
}

.cert-pending p {
    font-size: 0.95rem;
    color: #6b7280;
    max-width: 300px;
    margin: 0 auto;
}

/* Certificate Responsive */
@media (max-width: 968px) {
    .cert-layout {
        grid-template-columns: 1fr;
    }

    .cert-visual-wrap {
        position: static;
    }

    .cert-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .cert-body {
        padding: 1.5rem;
    }

    .brand-name {
        font-size: 1.25rem;
    }

    .cert-title-section h1 {
        font-size: 0.9rem;
        letter-spacing: 0.1em;
    }

    .recipient-name {
        font-size: 1.5rem;
    }

    .cert-tree-display {
        flex-direction: column;
        gap: 1rem;
    }

    .count-number {
        font-size: 2rem;
    }

    .cert-impact-row {
        flex-direction: column;
        gap: 1rem;
    }

    .impact-divider {
        width: 60px;
        height: 1px;
    }

    .cert-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* =========================================
   CONTACT PAGE STYLES
   ========================================= */
/* Contact Hero */
.contact-hero {
    padding: 10rem 0 3rem;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.contact-hero .container {
    position: relative;
    z-index: 1;
}

.contact-hero-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-hero-content h1 {
    font-size: 2.5rem;
    color: #0B3D2C;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.contact-hero-content p {
    font-size: 1.1rem;
    color: #4b5563;
}

/* Contact Content */
.contact-content {
    padding: 3rem 0;
    background: linear-gradient(180deg, #f0fdf4, #ffffff);
}

.contact-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* Contact Info */
.contact-info h2 {
    font-size: 1.25rem;
    color: #064e3b;
    margin-bottom: 1.5rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(6, 78, 59, 0.1);
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: #ecfdf5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 0.9rem;
    color: #064e3b;
    margin-bottom: 0.25rem;
}

.contact-card p,
.contact-card a {
    font-size: 0.95rem;
    color: #6b7280;
}

.contact-card a:hover {
    color: #15803d;
}

.contact-social h4 {
    font-size: 0.9rem;
    color: #064e3b;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #15803d;
    color: white;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrap {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    width: 100%;
}

.contact-form-wrap h2 {
    font-size: 1.25rem;
    color: #064e3b;
    margin-bottom: 1.5rem;
}

.contact-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #15803d;
    background: white;
    box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.1);
}

.btn-contact-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #15803d, #166534);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(21, 128, 61, 0.3);
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(21, 128, 61, 0.4);
}

.success-message {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 12px;
    color: #065f46;
}

.success-message span {
    font-size: 1.5rem;
}

.success-message p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* FAQ Section */
.contact-faq {
    padding: 3rem 0;
    background: white;
}

.contact-faq .section-intro {
    margin-bottom: 2rem;
}

.contact-faq .section-intro h2 {
    font-size: 1.75rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 16px;
    border-left: 4px solid #15803d;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-item:hover {
    background: #f0fdf4;
    transform: translateX(5px);
    border-color: #6B8E23;
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.1);
}

.faq-item h4 {
    font-size: 1rem;
    color: #064e3b;
    margin-bottom: 0.5rem;
}

.faq-item p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Contact Responsive */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contact-form .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-content h1 {
        font-size: 1.75rem;
    }
}

/* Header transparent mode - white border for active */
.header-transparent .language-switcher .lang-btn.active {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.15);
}

/* Scrolled header - green border */
.header-transparent.scrolled .language-switcher .lang-btn.active {
    border-color: #15803d;
    background: rgba(21, 128, 61, 0.1);
}

/* Non-transparent header */
header:not(.header-transparent) .language-switcher .lang-btn {
    background: rgba(21, 128, 61, 0.05);
}

header:not(.header-transparent) .language-switcher .lang-btn:hover {
    background: rgba(21, 128, 61, 0.1);
}

header:not(.header-transparent) .language-switcher .lang-btn.active {
    border-color: #15803d;
    background: rgba(21, 128, 61, 0.15);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .language-switcher {
        position: absolute;
        top: 1rem;
        right: 4rem;
    }
}

/* Smooth transitions for theme change */
.card,
.process-step-card,
.eco-package,
.faq-item,
.contact-card,
section,
input,
select,
textarea,
button {
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

/* Wave Dividers */
.wave-divider {
    position: absolute;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 10;
}

.wave-divider svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-divider.top {
    top: 0;
    transform: rotate(180deg);
}

.wave-divider.bottom {
    bottom: 0;
}

/* Ensure sections that have waves inside them have relative positioning */
section {
    position: relative;
    padding-bottom: 12rem !important;
}

/* Specific overrides if needed */
/* Hero handles its own */
/* Footer needs top padding for wave from previous section if applicable */
/* =========================================
   HERO REDESIGN
   ========================================= */
.hero-redesign {
    /* min-height: 100vh;
    removed to fit content */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 12rem !important;
    position: relative;
    overflow: hidden;
    background-color: #0b3d2c;
    /* Fallback dark green background */
}

/* Ensure video stays behind content */
.hero-redesign .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-redesign .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 61, 44, 0.6);
    /* dark green overlay */
    z-index: 1;
}

.hero-redesign-content {
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

/* Typography */
.hero-redesign h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin-bottom: 2rem;
}

.hero-redesign p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Buttons */
.hero-redesign-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-individual {
    background-color: #6B8E23;
    /* olive green */
    color: white;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
}

.btn-individual:hover {
    background-color: #55721c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-company {
    background-color: #F5DEB3;
    /* beige/wheat */
    color: #0B3D2C;
    /* dark green text */
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
}

.btn-company:hover {
    background-color: #e6cfa3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-redesign h1 {
        font-size: 2.5rem;
    }

    .hero-redesign-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

/* =========================================
   HERO CARD DECK (Joined Cards)
   ========================================= */
.hero-cards-section {
    position: relative;
    z-index: 20;
    margin-top: -5rem;
    /* overlap hero */
    padding-top: 0 !important;
    padding-bottom: 6rem !important;
    margin-bottom: 0 !important;
    background-color: #0B3D2C !important;
    width: 100%;
    padding-top: 0;
}

.hero-card-deck {
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    display: flex;
    position: relative;
    padding: 0;
    overflow: visible;
}

.deck-item {
    flex: 1;
    padding: 3rem 2.5rem 4rem;
    /* extra bottom padding for button space */
    position: relative;
    display: flex;
    flex-direction: column;
}

.deck-item:not(:last-child) {
    border-right: 1px dashed #e5e7eb;
}

.deck-icon {
    font-size: 3rem;
    color: #6B8E23;
    margin-bottom: 1.5rem;
}

/* Specific layout for rows inside the item */
.deck-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.deck-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0B3D2C;
    margin: 0 0 0.5rem 0;
}

.deck-content p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.deck-btn {
    position: absolute;
    bottom: -25px;
    /* half hanging out */
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #6B8E23;
    /* olive green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(107, 142, 35, 0.4);
    border: 4px solid white;
}

.deck-btn:hover {
    background: #55721c;
    transform: translateX(-50%) scale(1.1);
}

/* On mobile, stack them */
@media (max-width: 968px) {
    .hero-card-deck {
        flex-direction: column;
    }

    .deck-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px dashed #e5e7eb;
    }

    .deck-btn {
        bottom: -25px;
        /* Keep consistent behavior */
        z-index: 5;
    }

    .deck-item {
        padding-bottom: 3rem;
        margin-bottom: 1.5rem;
        /* extra space for button */
    }
}

/* =========================================
   WHY RESTORE FORESTS SECTION
   ========================================= */
.why-restore-section {
    padding: 6rem 0;
    background-color: #FFFFFF !important;
}

.why-restore-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-restore-images {
    position: relative;
}

/* Trees Image Container */
.trees-image-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: visible;
}

.trees-image-container .two-trees-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.trees-image-caption {
    font-size: 0.65rem;
    color: #6b7280;
    margin-top: 0.5rem;
    text-align: center;
    font-style: italic;
    opacity: 0.8;
}

.why-restore-content .section-tag {
    /* recycle existing tag style but maybe specific color */
    color: #6B8E23;
    background: transparent;
    padding: 0;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.why-restore-content h2 {
    font-size: 2.5rem;
    color: #0B3D2C;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.why-restore-content p {
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.restore-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.restore-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #374151;
    font-weight: 500;
}

.restore-features li i,
.restore-features li svg {
    color: #0B3D2C;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-cards-grid {
        grid-template-columns: 1fr;
    }

    .why-restore-grid {
        grid-template-columns: 1fr;
    }

    .process-steps-grid,
    .mission-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2.5rem !important;
    }

    .current-mission-section>.container>div:last-of-type {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .current-mission-section>.container>div:first-child {
        flex-direction: column !important;
        gap: 1.5rem !important;
        text-align: center;
    }
}

@media (max-width: 640px) {

    .process-steps-grid,
    .mission-stats-grid {
        grid-template-columns: 1fr !important;
    }

    .current-mission-section>.container>div:last-of-type {
        grid-template-columns: 1fr !important;
    }
}

/* =========================================
   INDIVIDUAL & COMPANY PACKAGE SECTIONS
   ========================================= */
/* =========================================
   INDIVIDUAL PACKAGES SECTION - NEW DESIGN
   ========================================= */
.packages-section-individuals {
    background-color: #0B3D2C;
    padding: 6rem 0;
}

.packages-section-individuals .section-intro h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.packages-section-individuals .section-intro p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Individual Packages Grid */
.individual-packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Individual Card */
.individual-card {
    background: #F5E6C8;
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.individual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Featured card (green background) */
.individual-card.featured {
    background: #6B8E23;
}

.individual-card.featured .pkg-title,
.individual-card.featured .individual-features li {
    color: white;
}

.individual-card.featured .feature-icon {
    color: white;
}

/* Card Header */
.individual-card-header {
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px dashed rgba(11, 61, 44, 0.2);
    margin-bottom: 1rem;
}

.individual-card.featured .individual-card-header {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.pkg-title {
    font-size: 1rem;
    font-weight: 600;
    color: #0B3D2C;
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 2px solid #0B3D2C;
    border-radius: 50px;
    white-space: nowrap;
}

.individual-card.featured .pkg-title {
    border-color: white;
    color: white;
}

/* Features List */
.individual-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.individual-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #0B3D2C;
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-icon {
    font-size: 1rem;
    min-width: 20px;
    text-align: center;
}

/* Plant Trees Button */
.btn-plant-trees {
    display: block;
    background: #0B3D2C;
    color: white;
    text-align: center;
    padding: 0.85rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-plant-trees:hover {
    background: #094028;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(11, 61, 44, 0.3);
}

/* Outline button for featured card */
.btn-plant-trees-outline {
    display: block;
    background: transparent;
    color: white;
    text-align: center;
    padding: 0.85rem 1.5rem;
    border: 2px solid white;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-plant-trees-outline:hover {
    background: white;
    color: #6B8E23;
}

/* =========================================
   COMPANY PACKAGES SECTION - NEW DESIGN
   ========================================= */
.packages-section-companies {
    background-color: #0B3D2C;
    padding: 6rem 0;
}

.packages-section-companies .section-intro h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.packages-section-companies .section-intro p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Company Packages Grid */
.company-packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Company Card */
.company-card {
    background: #F5E6C8;
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Featured card (green background) */
.company-card.featured {
    background: #6B8E23;
}

.company-card.featured .company-pkg-name,
.company-card.featured .company-pkg-trees,
.company-card.featured .company-features li,
.company-card.featured .cert-desc {
    color: white;
}

.company-card.featured .feature-icon {
    color: white;
}

/* Company Card Header */
.company-card-header {
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px dashed rgba(11, 61, 44, 0.2);
    margin-bottom: 1rem;
}

.company-card.featured .company-card-header {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.company-pkg-name {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0B3D2C;
    margin-bottom: 0.25rem;
}

.company-pkg-trees {
    display: block;
    font-size: 0.9rem;
    color: #0B3D2C;
    opacity: 0.8;
}

/* Company Features List */
.company-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.company-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0;
    color: #0B3D2C;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Company CTA Button */
.btn-company-cta {
    display: block;
    background: #0B3D2C;
    color: white;
    text-align: center;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #0B3D2C;
}

.btn-company-cta:hover {
    background: transparent;
    color: #0B3D2C;
}

/* Outline button for featured card */
.btn-company-cta-outline {
    display: block;
    background: transparent;
    color: white;
    text-align: center;
    padding: 0.75rem 1.25rem;
    border: 2px solid white;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-company-cta-outline:hover {
    background: white;
    color: #6B8E23;
}

/* Certificate Badge */
.certificate-badge {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(11, 61, 44, 0.1);
}

.company-card.featured .certificate-badge {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.cert-desc {
    font-size: 0.8rem;
    color: #0B3D2C;
    font-style: italic;
    line-height: 1.4;
    margin: 0;
}

/* Certificate Image */
.certificate-image {
    margin-top: 1rem;
    text-align: center;
    display: flex;
    justify-content: center;
}

.certificate-image img {
    max-width: 120px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* CO2 Note at bottom */
.co2-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.co2-note p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.co2-note strong {
    color: white;
}

/* Calculator CTA (Home Page) */
.calculator-cta-container {
    margin-top: var(--spacing-8);
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-6);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.calculator-cta-title {
    color: #ffffff !important;
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-4);
}

.calculator-cta-text {
    color: #ffffff !important;
    margin-bottom: var(--spacing-5);
    font-size: var(--font-size-lg);
    opacity: 0.95;
}

.btn-calculator-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-3) var(--spacing-6);
    background: white;
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: transform var(--transition-base);
}

.btn-calculator-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-calculator-cta svg {
    flex-shrink: 0;
}

/* Current Mission Section (Home Page) */
.current-mission-section {
    background: #ffffff;
    padding: var(--spacing-10) 0;
    position: relative;
    overflow: hidden;
}

.mission-container {
    position: relative;
    z-index: 2;
}

.mission-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-6);
}

.mission-dash {
    color: var(--color-secondary);
    letter-spacing: 3px;
    font-weight: var(--font-weight-bold);
}

.mission-title {
    color: var(--color-primary);
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    margin: 0;
}

.btn-mission-view {
    background: #6B8E23;
    color: white;
    padding: var(--spacing-3) var(--spacing-5);
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition-base);
}

.btn-mission-view:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mission-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-5);
    margin-top: var(--spacing-6);
}

.mission-stat-card {
    background: #E8F5E9;
    border-radius: var(--radius-lg);
    padding: var(--spacing-5);
    text-align: center;
    transition: transform var(--transition-base);
}

.mission-stat-card:hover {
    transform: translateY(-5px);
}

.mission-icon-circle {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-4);
}

.mission-icon-circle svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

.mission-value {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: var(--spacing-2);
}

.mission-label {
    color: var(--color-neutral-600);
    font-size: var(--font-size-sm);
}

/* Responsive Design */
@media (max-width: 900px) {

    .individual-packages-grid,
    .company-packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .individual-packages-grid,
    .company-packages-grid {
        grid-template-columns: 1fr;
    }

    .packages-section-individuals .section-intro h2,
    .packages-section-companies .section-intro h2 {
        font-size: 2rem;
    }
}

/* Hero Cards Section - Remove blue, use white background */
/* =========================================
   COMPANIES PAGE - Hero, Calculator & Trust
   ========================================= */

/* --- Companies Hero --- */
.companies-hero {
    padding: 8rem 0 5rem;
    text-align: center;
    background: #f8faf5;
}

.companies-hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.companies-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0B3D2C;
    margin-bottom: 1.25rem;
}

.companies-hero-desc {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.companies-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Wave transitions */
.wave-transition-wrapper {
    margin-top: -2px;
    background: #f8faf5;
}

.wave-transition-wrapper .wave-divider__svg {
    display: block;
    width: 100%;
    height: 80px;
}

.companies-wave-white {
    margin-top: -2px;
    background: #0B3D2C;
}

.companies-wave-white .wave-divider__svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* --- Companies Packages Section --- */
.companies-packages-section {
    background: #0B3D2C;
    padding: 4rem 0 3rem;
}

.companies-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.companies-packages-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.companies-packages-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* --- CO2 Calculator Intro --- */
.co2-calc-intro {
    text-align: center;
    margin: var(--spacing-10) 0 var(--spacing-6);
}

.co2-calc-intro-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    color: #ffffff;
    margin-bottom: var(--spacing-3);
}

.co2-calc-intro-desc {
    font-size: var(--font-size-lg);
    color: #ffffff;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* --- CO2 Calculator --- */
.co2-calculator-container {
    margin-top: 2rem;
}

.co2-calc-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.co2-icon-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(107, 142, 35, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.co2-calc-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6B8E23;
    margin-bottom: 0.25rem;
}

.co2-calc-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.co2-calc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.co2-input-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.co2-input-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(107, 142, 35, 0.4);
}

.co2-card-icon {
    stroke: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
}

.co2-card-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.co2-card-value {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
}

.co2-input-field {
    width: 100%;
    padding: 0.6rem 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(107, 142, 35, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: #0B3D2C;
    outline: none;
    transition: all 0.3s ease;
}

.co2-input-field:focus {
    border-color: #6B8E23;
    box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.15);
}

/* Results card */
.co2-results-card {
    background: linear-gradient(135deg, #6B8E23, #4a6b18);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    color: white;
}

.co2-results-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.co2-results-value {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
}

.co2-trees-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}

.co2-trees-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

/* Recommendation */
.co2-recommendation {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: rgba(107, 142, 35, 0.15);
    border: 1px solid rgba(107, 142, 35, 0.3);
    border-radius: 12px;
    text-align: center;
}

.co2-rec-text {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-co2-rec {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #6B8E23;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-co2-rec:hover {
    background: #5a7a1e;
    transform: translateY(-2px);
}

/* Disclaimer */
.co2-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    line-height: 1.6;
}

.u-hidden {
    display: none;
}

/* --- Why Companies Trust Us Section --- */
.companies-trust-section {
    padding: 5rem 0;
    background: white;
}

.companies-trust-header {
    text-align: center;
    margin-bottom: 3rem;
}

.companies-trust-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B3D2C;
    margin-bottom: 0.75rem;
}

.companies-trust-desc {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.companies-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.trust-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(107, 142, 35, 0.3);
}

.trust-icon-wrapper {
    width: 56px;
    height: 56px;
    background: rgba(107, 142, 35, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.trust-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0B3D2C;
    margin-bottom: 0.5rem;
}

.trust-card-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Transparency note */
.companies-transparency-note {
    margin-top: 3rem;
    background: #f0fdf4;
    border: 1px solid rgba(107, 142, 35, 0.2);
    border-radius: 16px;
    padding: 2rem;
}

.companies-transparency-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.companies-transparency-main {
    flex: 1;
}

.companies-transparency-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0B3D2C;
    margin-bottom: 0.75rem;
}

.companies-transparency-desc {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.7;
}

.companies-price-box {
    flex-shrink: 0;
    background: #fffbeb;
    border: 1px solid rgba(146, 64, 14, 0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
}

.companies-price-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #92400E;
    font-weight: 500;
}

/* --- Companies Page Responsive --- */
@media (max-width: 1024px) {
    .co2-calc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .companies-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .companies-hero-title {
        font-size: 2.2rem;
    }

    .co2-calc-grid {
        grid-template-columns: 1fr;
    }

    .companies-trust-grid {
        grid-template-columns: 1fr;
    }

    .companies-trust-title {
        font-size: 1.8rem;
    }

    .companies-transparency-content {
        flex-direction: column;
    }
}

/* =========================================
   INDIVIDUALS PAGE - Hero, Occasions, Promise
   ========================================= */

/* --- Individuals Hero --- */
.individuals-hero {
    padding: 12rem 0 6rem;
    text-align: center;
    background: linear-gradient(180deg, #f8faf5 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.individuals-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(107, 142, 35, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(11, 61, 44, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.individuals-hero-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.individuals-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0B3D2C;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.individuals-hero-desc {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.individuals-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.btn-individuals-primary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #6B8E23, #5a7a1e);
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(107, 142, 35, 0.3);
}

.btn-individuals-primary:hover {
    background: linear-gradient(135deg, #5a7a1e, #4a6617);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(107, 142, 35, 0.4);
}

.btn-individuals-outline {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #0B3D2C;
    font-size: 1.05rem;
    font-weight: 600;
    border: 2px solid #0B3D2C;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-individuals-outline:hover {
    background: #0B3D2C;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(11, 61, 44, 0.3);
}

/* --- Wave Containers --- */
.wave-container-green {
    margin-top: -2px;
    background: #f8faf5;
}

.wave-container-green .wave-svg {
    display: block;
    width: 100%;
    height: 50px;
}

.wave-container-white {
    margin-top: -2px;
    background: #0B3D2C;
}

.wave-container-white .wave-svg {
    display: block;
    width: 100%;
    height: 50px;
}

/* --- Occasions Section --- */
.individuals-occasions-section {
    background: #0B3D2C;
    padding: 4rem 0 5rem;
}

.individuals-occasions-header {
    text-align: center;
    margin-bottom: 3rem;
}

.individuals-occasions-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.individuals-occasions-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.individuals-occasions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.occasion-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.occasion-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-4px);
    border-color: rgba(107, 142, 35, 0.4);
}

.occasion-icon {
    margin-bottom: 1rem;
}

.occasion-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.occasion-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* --- Promise Section --- */
.individuals-promise-section {
    background: linear-gradient(135deg, #0B3D2C 0%, #1A472A 100%);
    padding: 6rem 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.individuals-promise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(107, 142, 35, 0.1) 0%, transparent 60%),
                radial-gradient(circle at 80% 50%, rgba(107, 142, 35, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.individuals-promise-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.individuals-promise-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.individuals-promise-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.individuals-promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.promise-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.promise-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    border-color: rgba(107, 142, 35, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.promise-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(107, 142, 35, 0.3), rgba(107, 142, 35, 0.2));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(107, 142, 35, 0.2);
}

.promise-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.promise-card-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Transparency note - Individuals */
.individuals-transparency-note {
    margin-top: 4rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.individuals-transparency-content {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.individuals-transparency-main {
    flex: 1;
}

.individuals-transparency-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.individuals-transparency-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.individuals-price-box {
    flex-shrink: 0;
    background: rgba(212, 163, 115, 0.2);
    border: 2px solid rgba(212, 163, 115, 0.4);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    min-width: 280px;
}

.individuals-price-text {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.6;
}

.price-accent {
    color: #d4a373;
    font-weight: 700;
}

/* --- Individuals Page Responsive --- */
@media (max-width: 1024px) {
    .individuals-occasions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .individuals-promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .individuals-transparency-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .individuals-price-box {
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .individuals-hero {
        padding: 9rem 0 4rem;
    }
    
    .individuals-hero-title {
        font-size: 2.5rem;
    }
    
    .individuals-hero-desc {
        font-size: 1.1rem;
    }

    .individuals-occasions-grid {
        grid-template-columns: 1fr;
    }

    .individuals-promise-grid {
        grid-template-columns: 1fr;
    }
    
    .individuals-promise-section {
        padding: 4rem 0;
    }

    .individuals-promise-title {
        font-size: 2.2rem;
    }
    
    .individuals-promise-subtitle {
        font-size: 1.05rem;
    }

    .individuals-transparency-content {
        flex-direction: column;
    }

    .individuals-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-individuals-primary,
    .btn-individuals-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

.impact-section-new .section-tag.light {
    color: white;
    background: rgba(255, 255, 255, 0.15);
}

.impact-section-new .impact-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.impact-section-new .impact-icon,
.impact-section-new .impact-value,
.impact-section-new .impact-label {
    color: white;
}

.why-plant-video .section-tag.light {
    color: #0B3D2C;
    background: rgba(11, 61, 44, 0.1);
}

.why-plant-video .btn-eco-white {
    background: #0B3D2C;
    color: white;
}

/* Eco CTA Section - White Background */
.eco-cta h2,
.eco-cta p {
    color: #0B3D2C;
}

.eco-cta .btn-eco-ghost {
    border: 2px solid #0B3D2C;
    color: #0B3D2C;
    background: transparent;
}

.eco-cta .btn-eco-ghost:hover {
    background: #0B3D2C;
    color: white;
}

/* =========================================
   HERO REDESIGN - Full Viewport with Video
   ========================================= */
.hero-redesign {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -67px;
    /* Pull hero under the fixed header */
    padding-top: 67px;
    /* Compensate so content doesn't hide behind header */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 30, 20, 0.55) 0%, rgba(0, 30, 20, 0.65) 100%);
    z-index: -1;
}

.hero-redesign-content {
    text-align: center;
    max-width: 900px;
    padding: 2rem 1.5rem;
    z-index: 1;
}

.hero-redesign-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-redesign-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-redesign-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-individual {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: #6B8E23;
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.4);
}

.btn-individual:hover {
    background: #5a7a1e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 142, 35, 0.5);
}

.btn-company {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: rgba(245, 230, 200, 0.9);
    color: #0B3D2C;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-company:hover {
    background: rgba(245, 230, 200, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Hero responsive */
@media (max-width: 768px) {
    .hero-redesign-content h1 {
        font-size: 1.85rem;
    }

    .hero-redesign-content p {
        font-size: 0.95rem;
    }

    .hero-redesign-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-individual,
    .btn-company {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* Hide video on mobile */
    .hero-video {
        display: none;
    }
    
    .hero-redesign .hero-video {
        display: none;
    }
    
    /* Make overlay solid background when video is hidden */
    .hero-overlay,
    .hero-redesign .hero-overlay {
        background: linear-gradient(135deg, #0B3D2C 0%, #1A5C3E 100%);
    }
}

@media (max-width: 480px) {
    .hero-video {
        display: none;
    }
    
    .hero-redesign .hero-video {
        display: none;
    }
    
    .hero-redesign-content h1 {
        font-size: 1.6rem;
    }

    .hero-redesign-content p {
        font-size: 0.9rem;
    }
    
    /* Even tighter spacing for small mobile */
    .hero-redesign {
        min-height: 60vh;
        padding-bottom: 1.5rem;
    }
    
    .modern-services-impact-section {
        padding: 2rem 0 0;
    }
    
    .packages-section-companies,
    .packages-section-individuals {
        padding: 2rem 0;
    }
    
    .current-mission-section {
        padding: 2rem 0;
    }
    
    .section-header-modern {
        margin-bottom: 1.5rem;
    }
    
    .process-integration-modern {
        margin-top: 2rem;
    }
}

/* =========================================
   TRUST BADGES (Hero & Occasion Pages)
   Refactored to match Header CTA (Green Pill)
   ========================================= */
.hero-trust-counter {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.trust-counter-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    animation: fadeInUp 1s ease 0.5s both;
}

.counter-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.counter-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.counter-check {
    opacity: 0.8;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    .hero-trust-counter {
        gap: 0.35rem;
        margin-top: 1.5rem;
    }
    
    .trust-counter-inner {
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
    }

    .counter-number {
        font-size: 0.95rem;
    }

    .counter-label {
        font-size: 0.6rem;
    }
    
    .counter-check {
        width: 16px;
        height: 16px;
    }
}
        font-size: 0.65rem;
    }
}

/* ========================================
   ECO GLASS HEADER - Nature Style
   ======================================== */
.eco-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none !important;
}

/* White header for non-transparent pages */
.eco-header.header-white {
    background: #ffffff !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 2px solid #e5e7eb !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    min-height: 70px;
}

.eco-header.header-white .header-inner {
    padding: 0.75rem 0;
}

/* White header text colors */
.eco-header.header-white .nav-link {
    color: #1A472A !important;
    font-weight: 600;
}

.eco-header.header-white .nav-link:hover {
    color: #2C5F3D !important;
}

.eco-header.header-white .lang-current {
    color: #1A472A !important;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
}

.eco-header.header-white .lang-current:hover {
    background: #f3f4f6;
}

.eco-header.header-white .lang-current span {
    color: #1A472A !important;
}

.eco-header.header-white .mobile-toggle span {
    background: #1A472A !important;
}

.eco-header.header-white .logo-img {
    opacity: 1;
    filter: none;
}

.eco-header.header-white .btn-plant-trees-nav {
    background: linear-gradient(135deg, #1A472A, #2C5F3D) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(26, 71, 42, 0.3);
}

.eco-header.header-white .btn-plant-trees-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 71, 42, 0.4);
}

/* Scrolled state for white headers */
.eco-header.header-white.scrolled {
    padding: 0.25rem 0;
    background: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
}

/* Header always has solid dark green background */
.eco-header.header-transparent,
.eco-header.header-transparent:not(.scrolled),
.eco-header.header-transparent.scrolled {
    background: #0B3D2C !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: 1.2rem 0;
}

.eco-header.header-transparent .header-inner,
.eco-header.header-transparent.scrolled .header-inner {
    padding: 0;
}

@keyframes floatLeaf {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-5px) rotate(10deg);
    }
}

.eco-header.scrolled .header-leaf {
    opacity: 0;
}

/* Header inner */
.header-container {
    max-width: 1400px;
    border-bottom: none !important;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: nowrap;
    padding: 1.2rem 0;
    border-bottom: none !important;
}

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.logo-leaf {
    font-size: 1.5rem;
    animation: growLeaf 2s ease-in-out infinite;
    display: none;
}

@keyframes growLeaf {

    0%,
    100% {
        transform: scale(1) rotate(-5deg);
    }

    50% {
        transform: scale(1.1) rotate(5deg);
    }
}

.logo-img {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

.eco-header.scrolled .logo-img {
    height: 70px;
}

/* Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-primary, #1f2937);
    border-radius: 50px;
    transition: all 0.3s ease;
    overflow: hidden;
    white-space: nowrap;
}

@media (max-width: 1150px) {
    .header-inner {
        gap: 1rem;
    }

    .header-nav {
        gap: 0;
    }

    .nav-link {
        padding: 0.5rem 0.5rem;
        font-size: 0.85rem;
    }
}

.nav-link:hover .nav-leaf,
.nav-link.active .nav-leaf {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
}

.nav-link:hover {
    background: rgba(21, 128, 61, 0.1);
    color: #15803d;
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(21, 128, 61, 0.15), rgba(34, 197, 94, 0.1));
    color: #15803d;
}

/* Growing underline */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #15803d, #22c55e);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/* Navigation Dropdown */
.nav-dropdown-wrapper {
    position: relative;
}

.nav-dropdown-wrapper .nav-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.dropdown-arrow {
    margin-left: 2px;
    transition: transform 0.3s ease;
}

.nav-dropdown-wrapper:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-wrapper:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary, #1f2937);
    transition: all 0.2s ease;
}

.dropdown-link:hover {
    background: rgba(21, 128, 61, 0.1);
    color: #15803d;
}

.dropdown-link svg {
    flex-shrink: 0;
}

.mobile-sub-links {
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-sub-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: var(--text-secondary, #4b5563);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-sub-link:hover {
    background: rgba(21, 128, 61, 0.08);
    color: #15803d;
}

/* Transparent header nav */
.eco-header.header-transparent:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.eco-header.header-transparent:not(.scrolled) .nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.eco-header.header-transparent:not(.scrolled) .nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.eco-header.header-transparent:not(.scrolled) .nav-link::after {
    background: white;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Plant a Tree Header Button */
.btn-plant-trees-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background-color: var(--color-primary, #0B3D2C);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

@media (max-width: 1150px) {
    .header-actions {
        gap: 0.25rem !important;
    }

    .btn-plant-trees-nav {
        padding: 6px 12px !important;
        font-size: 13px !important;
    }
}

.btn-plant-trees-nav:hover {
    background-color: var(--color-secondary, #1B4D3C);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 61, 44, 0.2);
}

.eco-header.header-transparent:not(.scrolled) .btn-plant-trees-nav {
    background-color: #ffffff;
    color: var(--color-primary, #0B3D2C);
}

.eco-header.header-transparent:not(.scrolled) .btn-plant-trees-nav:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(21, 128, 61, 0.08);
    border: 1px solid rgba(21, 128, 61, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary, #1f2937);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-current:hover {
    background: rgba(21, 128, 61, 0.15);
    border-color: rgba(21, 128, 61, 0.3);
}

.lang-arrow {
    transition: transform 0.3s ease;
}

.lang-switcher:hover .lang-arrow {
    transform: rotate(180deg);
}

.eco-header.header-transparent:not(.scrolled) .lang-current {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    color: white;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 160px;
    background: var(--bg-card, white);
    border: 1px solid var(--border-color, #e5e7eb);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-primary, #1f2937);
    transition: all 0.2s ease;
}

.lang-option:hover {
    background: rgba(21, 128, 61, 0.1);
}

.lang-option.active {
    background: linear-gradient(135deg, rgba(21, 128, 61, 0.15), rgba(34, 197, 94, 0.1));
    color: #15803d;
}

.lang-option .check {
    margin-left: auto;
    color: #15803d;
}

.cta-planting .planter {
    font-size: 1rem;
    position: absolute;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.3s ease;
}

.cta-planting .tree {
    font-size: 1rem;
    position: absolute;
    opacity: 0;
    transform: translateY(5px) scale(0);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Hover Animation Sequence */
.header-cta:hover .planter {
    opacity: 1;
    animation: digAnimation 1.5s ease-in-out infinite;
}

.header-cta:hover .tree {
    animation: growAnimation 1.5s ease-in-out infinite;
}

/* Digging animation */
@keyframes digAnimation {

    0%,
    100% {
        transform: translateX(0) rotate(0deg);
    }

    25% {
        transform: translateX(-2px) rotate(-10deg);
    }

    50% {
        transform: translateX(2px) rotate(10deg);
    }

    75% {
        transform: translateX(-1px) rotate(-5deg);
    }
}

/* Shovel animation */
@keyframes shovelAnimation {
    0% {
        opacity: 0;
        transform: translateY(5px) rotate(0deg);
    }

    20% {
        opacity: 1;
        transform: translateY(0) rotate(-30deg);
    }

    40% {
        opacity: 1;
        transform: translateY(3px) rotate(15deg);
    }

    60% {
        opacity: 0;
        transform: translateY(5px) rotate(0deg);
    }

    100% {
        opacity: 0;
    }
}

/* Plant seedling animation */
@keyframes plantAnimation {

    0%,
    50% {
        opacity: 0;
        transform: translateY(10px) scale(0);
    }

    60% {
        opacity: 1;
        transform: translateY(2px) scale(0.8);
    }

    70% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    80% {
        opacity: 0;
        transform: translateY(-2px) scale(1.1);
    }

    100% {
        opacity: 0;
        transform: translateY(-5px) scale(0);
    }
}

/* Tree grow animation */
@keyframes growAnimation {

    0%,
    70% {
        opacity: 0;
        transform: translateY(5px) scale(0);
    }

    85% {
        opacity: 1;
        transform: translateY(-2px) scale(1.2);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.header-cta:hover .cta-text {
    transform: translateX(-5px);
}

.cta-text {
    transition: transform 0.3s ease;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: rgba(21, 128, 61, 0.1);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
}

/* Mobile Tagline */
.mobile-tagline {
    display: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
}

/* Mobile tagline color variations */
.eco-header.header-white .mobile-tagline {
    color: #0B3D2C;
}

.eco-header.header-transparent.scrolled .mobile-tagline {
    color: #0B3D2C;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary, #1f2937);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-toggle:hover {
    background: rgba(21, 128, 61, 0.2);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.eco-header.header-transparent:not(.scrolled) .mobile-toggle {
    background: rgba(255, 255, 255, 0.15);
}

.eco-header.header-transparent:not(.scrolled) .mobile-toggle span {
    background: white;
}

/* Mobile tagline color variations */
.eco-header.header-white .mobile-tagline {
    color: #0B3D2C;
}

.eco-header.header-transparent.scrolled .mobile-tagline {
    color: #0B3D2C;
}

/* Header vine decoration */
.header-vine {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #15803d, #22c55e, #4ade80);
    transition: width 0.6s ease;
}

.eco-header.scrolled .header-vine {
    width: 100%;
}

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary, white);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 4rem 1.5rem 2rem;
    overflow-y: auto;
    position: relative;
}

.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-tertiary, #f3f4f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary, #111827);
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s ease;
}

.mobile-close:hover {
    background: #e5e7eb;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    margin-top: 1rem;
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary, #1f2937);
    border-radius: 12px;
    transition: all 0.2s ease;
    text-decoration: none;
    flex: 1;
}

.mobile-link svg {
    color: #6B8E23;
}

.mobile-link:hover,
.mobile-link.active {
    background: rgba(107, 142, 35, 0.08);
    color: #4a6318;
}

.mobile-accordion {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    transition: background 0.3s ease;
}

.mobile-accordion.expanded {
    background: rgba(243, 244, 246, 0.5);
}

.mobile-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
}

.mobile-accordion-header .mobile-link {
    flex: 1;
}

.mobile-accordion-toggle {
    background: transparent;
    border: none;
    padding: 1rem;
    color: var(--text-secondary, #6b7280);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.mobile-accordion.expanded .mobile-accordion-toggle {
    transform: rotate(180deg);
}

.mobile-sub-links {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0 1rem;
}

.mobile-accordion.expanded .mobile-sub-links {
    max-height: 1000px;
    /* Increased to accommodate all sub-menu items */
    padding-bottom: 0.5rem;
}

.mobile-sub-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary, #4b5563);
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.mobile-sub-link svg {
    width: 16px;
    height: 16px;
    color: #6B8E23;
    opacity: 0.8;
}

.mobile-sub-link:hover,
.mobile-sub-link.active {
    background: rgba(107, 142, 35, 0.05);
    color: #4a6318;
    padding-left: 1.5rem;
}

.mobile-menu-divider {
    height: 1px;
    background: var(--border-color, #e5e7eb);
    margin: 1rem 0;
}

.mobile-bottom {
    padding-top: 1.5rem;
    margin-top: auto;
}

.mobile-controls {
    display: flex;
    align-items: stretch;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.mobile-lang {
    display: flex;
    gap: 0.5rem;
    flex: 1;
}
    flex: 1;
}

.mobile-lang a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--bg-tertiary, #f3f4f6);
    border: 1px solid var(--border-color, #e5e7eb);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary, #1f2937);
    flex: 1;
    transition: all 0.2s ease;
    text-decoration: none;
}

.mobile-lang a.active {
    background: #6B8E23;
    color: white;
    border-color: #6B8E23;
}

.mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: #6B8E23;
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.25);
    transition: all 0.2s ease;
}

.mobile-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 142, 35, 0.35);
}

/* Responsive */
@media (max-width: 1024px) {
    .header-nav {
        display: none;
    }

    .header-inner {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-cta {
        display: none;
    }

    .btn-plant-trees-nav {
        display: none !important;
    }

    .mobile-toggle {
        display: flex;
        z-index: 100;
    }
    
    .mobile-tagline {
        display: block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .header-logo {
        flex-shrink: 0;
    }
    
    .header-actions {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex-shrink: 0;
        z-index: 10;
    }

    .header-leaf {
        display: none;
    }
}

@media (max-width: 768px) {
    .lang-switcher {
        display: none !important;
    }

    .logo-img {
        height: 55px;
    }
    
    .mobile-tagline {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 45px;
    }

    .eco-header.scrolled .logo-img {
        height: 45px;
    }

    .mobile-menu-inner {
        padding: 4.5rem 1.25rem 1.5rem;
    }
    
    .mobile-tagline {
        font-size: 0.75rem;
    }
    
    .mobile-toggle {
        width: 32px;
        height: 32px;
        padding: 6px;
    }
}

/* =========================================
   PHASE 1: BEM CLASSES — INLINE STYLE PURGE
   ========================================= */
/* --- gift-emotional --- */
.gift-emotional {
    background: #ffffff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.gift-emotional__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.gift-emotional__badge {
    display: inline-block;
    background: #FEF3C7;
    color: #92400E;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 2rem;
}

.gift-emotional__heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0B3D2C;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.gift-emotional__comparisons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.gift-emotional__compare-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: #FEF2F2;
    border-radius: 12px;
    border: 1px solid #FECACA;
}

.gift-emotional__compare-text {
    text-align: left;
}

.gift-emotional__compare-name {
    text-decoration: line-through;
    color: #991B1B;
    font-weight: 600;
    font-size: 1rem;
}

.gift-emotional__compare-fade {
    color: #DC2626;
    font-size: 0.8rem;
    font-weight: 500;
}

.gift-emotional__alt-box {
    background: linear-gradient(135deg, #F0FFF4, #ECFDF5);
    border: 2px solid #6B8E23;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    margin-bottom: 2.5rem;
}

.gift-emotional__alt-label {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #6B8E23;
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}

.gift-emotional__alt-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.gift-emotional__tree-visual {
    flex-shrink: 0;
}

.gift-emotional__tree-circle {
    width: 100px;
    height: 100px;
    background: rgba(107, 142, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: treePulse 3s ease-in-out infinite;
}

.gift-emotional__alt-text {
    text-align: left;
    max-width: 450px;
}

.gift-emotional__alt-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0B3D2C;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.gift-emotional__alt-desc {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.gift-emotional__features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.gift-emotional__feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0B3D2C;
    font-weight: 600;
    font-size: 0.95rem;
}

.gift-fade-item {
    transition: transform 0.3s ease;
}

.gift-fade-item:hover {
    transform: translateY(-3px);
}

@keyframes treePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(107, 142, 35, 0.2);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 10px rgba(107, 142, 35, 0.1);
    }
}

@media (max-width: 640px) {

    .gift-fade-item,
    .gift-emotional__compare-item {
        flex: 1 1 100%;
    }
}

/* --- gift-testimonials --- */
.gift-testimonials {
    background: linear-gradient(180deg, #F0FFF4 0%, #ffffff 100%);
    padding: 5rem 0;
    position: relative;
}

.gift-testimonials__header {
    text-align: center;
    margin-bottom: 3rem;
}

.gift-testimonials__badge {
    display: inline-block;
    background: rgba(107, 142, 35, 0.1);
    color: #6B8E23;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
}

.gift-testimonials__title {
    color: #0B3D2C;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.gift-testimonials__subtitle {
    color: #4b5563;
    font-size: 1.05rem;
}

.gift-testimonials__carousel {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.gift-testimonials__track {
    display: flex;
    gap: 1.5rem;
    overflow: hidden;
    scroll-behavior: smooth;
}

.testimonial-card {
    min-width: calc(33.333% - 1rem);
    flex-shrink: 0;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}

.testimonial-card__quote {
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f3f4f6;
    padding-top: 1rem;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6B8E23, #0B3D2C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-card__name {
    font-weight: 600;
    color: #0B3D2C;
    font-size: 0.9rem;
}

.testimonial-card__occasion {
    color: #6B8E23;
    font-size: 0.8rem;
    font-weight: 500;
}

.testimonial-card__trees-badge {
    background: #F0FFF4;
    color: #6B8E23;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.gift-testimonials__nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 2;
}

.gift-testimonials__nav-btn--prev {
    left: -20px;
}

.gift-testimonials__nav-btn--next {
    right: -20px;
}

.gift-testimonials__nav-btn:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.05);
}

.gift-testimonials__trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.gift-testimonials__trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6B8E23;
    font-weight: 600;
    font-size: 0.9rem;
}

@media (max-width: 968px) {
    .testimonial-card {
        min-width: calc(50% - 0.75rem);
    }
}

@media (max-width: 640px) {
    .testimonial-card {
        min-width: 100%;
    }
}

/* --- packages-individual --- */
.packages-individual {
    background: #0B3D2C;
    padding: 5rem 0;
    position: relative;
}

.packages-individual__title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.packages-individual__subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.packages-subheader {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.packages-subheader__title {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.packages-subheader__subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.packages-individual__grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
    margin: 3rem auto 0;
}

/* Mobile responsive for individual packages grid */
@media (max-width: 900px) {
    .packages-individual__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .packages-individual__grid {
        grid-template-columns: 1fr;
    }
}

/* --- footer (inline style fixes) --- */
.footer__brand-logo {
    height: 180px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer__brand-desc {
    margin-bottom: 0.5rem;
}

.footer__contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.footer__contact-item {
    margin-bottom: 0.5rem;
}

.footer__contact-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer__contact-address {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
    line-height: 1.6;
}

.footer__vat-notice {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
}

/* --- header (inline style fix) --- */
.eco-header.header-white {
    background: #ffffff !important;
    border-bottom: 1px solid #e5e7eb !important;
}

/* --- impact-visualizer (inline style fix) --- */
.impact-card__value-plus {
    font-size: 1.5rem;
}

/* --- why-section --- */
/* Styles moved from embedded <style> in why-section.php */
.why-section-v2 {
    padding: 50px 0;
    background: #fcfbf9;
}

.why-v2-center {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.why-v2-accent {
    width: 48px;
    height: 4px;
    border-radius: 2px;
    margin: 0 auto 1.5rem;
}

.why-v2-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.why-v2-heading {
    font-size: 2rem;
    color: #0B3D2C;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.why-v2-desc {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.why-v2-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.why-v2-feat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.why-v2-feat span {
    font-size: 0.92rem;
    color: #374151;
    font-weight: 500;
}

@media (max-width: 640px) {
    .why-v2-heading {
        font-size: 1.6rem;
    }

    .why-v2-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}

/* --- Greening Footer Animation (moved from footer.php <style>) --- */
.greening-footer-animation {
    background: transparent !important;
    height: 75px !important;
    width: 100% !important;
    position: relative !important;
    overflow: hidden !important;
    margin: 2rem 0 1rem 0 !important;
    padding: 0 !important;
}

.greening-landscape {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: transparent !important;
    z-index: 1 !important;
}

.greening-footer-animation .planting-spot {
    position: absolute !important;
    bottom: 10px !important;
    width: 20px !important;
    height: 20px !important;
    z-index: 5 !important;
    opacity: 0;
    animation: greening-plant 2s forwards !important;
}

.greening-footer-animation .planting-spot::before {
    content: "" !important;
    position: absolute !important;
    width: 20px !important;
    height: 20px !important;
    background-color: transparent !important;
    border: 2px solid #4CAF50 !important;
    border-radius: 50% !important;
    opacity: 0.7;
    animation: greening-pulse 1.5s infinite !important;
}

.greening-footer-animation .greening-tree {
    position: absolute !important;
    bottom: 10px !important;
    z-index: 5 !important;
    opacity: 0;
    animation: greening-grow 1.5s forwards !important;
}

.greening-footer-animation .tree-pine .tree-trunk {
    position: absolute !important;
    width: 4px !important;
    height: 15px !important;
    background-color: #8B6914 !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.greening-footer-animation .tree-pine .tree-top {
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
    border-left: 12px solid transparent !important;
    border-right: 12px solid transparent !important;
    border-bottom: 18px solid #4CAF50 !important;
    bottom: 12px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.greening-footer-animation .tree-round .tree-trunk {
    position: absolute !important;
    width: 5px !important;
    height: 16px !important;
    background-color: #8B6914 !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.greening-footer-animation .tree-round .tree-top {
    position: absolute !important;
    width: 22px !important;
    height: 22px !important;
    background-color: #66BB6A !important;
    border-radius: 50% !important;
    bottom: 13px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.greening-footer-animation .tree-bushy .tree-trunk {
    position: absolute !important;
    width: 4px !important;
    height: 14px !important;
    background-color: #8B6914 !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.greening-footer-animation .tree-bushy .tree-top {
    position: absolute !important;
    width: 24px !important;
    height: 18px !important;
    background-color: #43A047 !important;
    border-radius: 40% 40% 50% 50% !important;
    bottom: 11px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.greening-footer-animation .tree-cypress .tree-trunk {
    position: absolute !important;
    width: 4px !important;
    height: 18px !important;
    background-color: #8B6914 !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.greening-footer-animation .tree-cypress .tree-top {
    position: absolute !important;
    width: 16px !important;
    height: 22px !important;
    background-color: #388E3C !important;
    border-radius: 8px 8px 12px 12px !important;
    bottom: 15px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

@keyframes greening-plant {
    0% {
        opacity: 1;
        transform: scale(0.5);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }

    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

@keyframes greening-pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.4;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.7;
    }
}

@keyframes greening-grow {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.greening-footer-animation .tree-small {
    transform: scale(0.8) !important;
}

.greening-footer-animation .tree-large {
    transform: scale(1.1) !important;
}

/* --- Page utility classes (moved from inline styles) --- */
.svg-icon--inline {
    vertical-align: text-bottom;
    margin-left: 4px;
}

.svg-icon--cert {
    vertical-align: middle;
    margin-right: 4px;
}

.svg-icon--feature {
    flex-shrink: 0;
    margin-top: 2px;
}

.u-hidden {
    display: none;
}

.wave-divider__svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* --- checkout page utilities --- */
.checkout-optional-label {
    font-weight: normal;
    color: #6b7280;
}

.checkout-form-section--last {
    margin-bottom: 0;
}

.checkout-pkg-icon--transparent {
    background: transparent;
    padding: 0;
}

.checkout-pkg-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wave-transition-wrapper {
    background: #ffffff;
    position: relative;
}

/* --- Admin Panel Utility Classes --- */
/* These classes replace inline styles across all admin pages */
.admin-mb-2 {
    margin-bottom: 2rem;
}

.admin-card {
    margin-bottom: 2rem;
}

.admin-card__heading {
    margin-top: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.admin-notice {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    border-left: 4px solid #4caf50;
}

.admin-label {
    font-weight: bold;
}

.admin-label--small {
    font-weight: bold;
    font-size: 0.9rem;
}

.admin-label--inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
    font-size: 0.85rem;
}

.admin-separator {
    border-top: 1px solid #eee;
    padding-top: 1rem;
    margin-top: 1rem;
}

/* Flag icon styles */
.admin-flag {
    border-radius: 2px;
}

/* ============================================================================
   CONSOLIDATED FROM: pages.css
   ============================================================================ */
/* ========================================
   EARTH GREENING - PAGE SPECIFIC STYLES
   ========================================
   This file contains styles extracted from individual PHP files
   to ensure better maintainability and caching.
   ======================================== */
/* Home Page - Trust Counter */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    .trust-counter-inner {
        padding: 0.6rem 1rem;
    }

    .counter-number {
        font-size: 1.1rem;
    }

    .counter-label {
        font-size: 0.65rem;
    }
}

/* Plant a Tree Page - Hero Section */
.plant-hero {
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.plant-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.plant-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: -1;
}

.plant-hero-container {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 4rem 0 6rem;
}

.plant-hero-title {
    font-size: 4rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.plant-hero-subtitle {
    color: #f3f4f6;
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.plant-hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.plant-btn-primary {
    background: #6B8E23;
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.plant-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
    color: white;
}

.plant-btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.plant-btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
}

.plant-video-credit {
    position: absolute;
    bottom: 80px;
    right: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    z-index: 2;
    font-style: italic;
}

.plant-wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

/* Plant a Tree - Restoration Section */
.plant-restoration-section {
    background: #0B3D2C;
    padding: 1.5rem 0;
}

.plant-restoration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.plant-restoration-title {
    font-size: 2.8rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
}

.plant-restoration-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.8;
}

.plant-wave-transition {
    background: #0B3D2C;
    position: relative;
    line-height: 0;
}

.plant-wave-svg {
    display: block;
    width: 100%;
    height: 50px;
}

/* Plant a Tree - Process Timeline - PROFESSIONAL REDESIGN */
.plant-process-section {
    background: #ffffff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.plant-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(ellipse at top, rgba(0, 31, 63, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.plant-process-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.plant-process-title {
    font-size: 3rem;
    color: #0B3D2C;
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.plant-process-subtitle {
    color: #4b5563;
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.plant-process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.plant-process-timeline::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, 
        #001f3f 0%, 
        #001f3f 25%, 
        #001f3f 50%, 
        #001f3f 75%, 
        #001f3f 100%
    );
    z-index: 0;
}

.plant-process-line {
    display: none;
}

.plant-process-step {
    position: relative;
    text-align: center;
    z-index: 2;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.plant-process-step:nth-child(1) { animation-delay: 0.1s; }
.plant-process-step:nth-child(2) { animation-delay: 0.2s; }
.plant-process-step:nth-child(3) { animation-delay: 0.3s; }
.plant-process-step:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.plant-process-number {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 
        0 20px 40px rgba(0, 31, 63, 0.25),
        0 0 0 8px rgba(0, 31, 63, 0.1),
        0 0 0 16px rgba(0, 31, 63, 0.05);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    font-family: var(--font-heading);
}

.plant-process-number::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #001f3f, #003366);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(8px);
}

.plant-process-step:hover .plant-process-number {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 
        0 30px 60px rgba(0, 31, 63, 0.35),
        0 0 0 8px rgba(0, 31, 63, 0.15),
        0 0 0 16px rgba(0, 31, 63, 0.08);
}

.plant-process-step:hover .plant-process-number::before {
    opacity: 1;
}

.plant-process-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 10px 20px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #f3f4f6;
    position: relative;
    overflow: hidden;
}

.plant-process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6B8E23, #4CAF50);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.plant-process-step:hover .plant-process-card {
    transform: translateY(-12px);
    box-shadow: 
        0 8px 12px rgba(0, 0, 0, 0.04),
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(107, 142, 35, 0.1);
    border-color: #6B8E23;
}

.plant-process-step:hover .plant-process-card::before {
    transform: scaleX(1);
}

.plant-process-label {
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    text-transform: uppercase;
    display: inline-block;
    width: fit-content;
    letter-spacing: 1px;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 31, 63, 0.25);
}

.plant-process-step-title {
    color: #0B3D2C;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 1rem;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.plant-process-text {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

/* Plant a Tree - Products Sections */
.plant-products-section-dark {
    background: #0B3D2C;
    padding: 5rem 0;
    position: relative;
}

.plant-products-section-white {
    background: #ffffff;
    padding: 5rem 0;
}

.plant-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.plant-section-title-white {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.plant-section-subtitle-white {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.plant-section-title-dark {
    font-size: 2.5rem;
    color: #0B3D2C;
    font-weight: 700;
    margin-bottom: 1rem;
}

.plant-section-subtitle-dark {
    color: #4b5563;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.plant-impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.plant-impact-card {
    text-align: center;
    padding: 3rem 2rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.plant-impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.plant-impact-icon {
    width: 90px;
    height: 90px;
    background: #E8F5E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.plant-impact-card:hover .plant-impact-icon {
    transform: scale(1.1);
}

.plant-impact-title {
    color: #0B3D2C;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.plant-impact-text {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.7;
}

/* Plant a Tree - FAQ Section */
.plant-faq-section {
    background: #ffffff;
    padding: 5rem 0;
}

.plant-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.plant-faq-item {
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.plant-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.plant-faq-q-text {
    color: #0B3D2C;
    font-weight: 600;
    font-size: 1rem;
}

.plant-faq-icon {
    transition: transform 0.3s ease;
}

.plant-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.plant-faq-a-text {
    padding: 0 1.5rem 1.25rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

/* Plant a Tree - Gift CTA */
.plant-gift-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.plant-gift-content {
    flex: 1;
    min-width: 300px;
}

.plant-gift-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.plant-gift-icon-wrapper {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.plant-gift-title {
    color: #0B3D2C;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.plant-gift-desc {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.plant-gift-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #1A472A, #2E7D32);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Plant a Tree - Final CTA */
.plant-final-cta {
    background: #ffffff;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.plant-final-cta-content {
    background: transparent;
}

.plant-final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.plant-btn-eco-white {
    background: #6B8E23;
    color: white;
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.plant-btn-eco-ghost {
    background: transparent;
    color: #0B3D2C;
    border: 2px solid #0B3D2C;
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

/* Responsive & Breakpoints */
@media (max-width: 968px) {
    .plant-hero-title {
        font-size: 2.5rem !important;
    }

    .plant-info-grid,
    .plant-calc-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .plant-restoration-grid,
    .plant-transparency-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .plant-impact-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .plant-process-section {
        padding: 4rem 0;
    }

    .plant-process-section::before {
        height: 200px;
    }

    .plant-process-header {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .plant-process-title {
        font-size: 2rem;
    }

    .plant-process-subtitle {
        font-size: 1rem;
    }

    .plant-process-timeline {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }

    .plant-process-timeline::before {
        display: none;
    }

    .plant-process-step {
        animation: none;
        opacity: 1;
    }

    .plant-process-number {
        width: 75px;
        height: 75px;
        margin-bottom: 1.5rem;
        font-size: 2rem;
    }

    .plant-process-card {
        padding: 2rem 1.5rem;
    }

    .plant-process-label {
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
    }

    .plant-process-step-title {
        font-size: 1.2rem;
    }

    .plant-process-text {
        font-size: 0.95rem;
    }

    .plant-final-cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .plant-hero-title {
        font-size: 2rem !important;
    }

    .plant-info-grid,
    .plant-calc-grid {
        grid-template-columns: 1fr !important;
    }

    .plant-hero-buttons {
        flex-direction: column !important;
    }
}

/* Company Packages Helpers */
.company-pkg-icon {
    vertical-align: text-bottom;
    margin-left: 4px;
}

.company-cert-icon {
    vertical-align: middle;
    margin-right: 4px;
}

.stroke-starter {
    stroke: #22c55e;
    stroke-width: 2.5;
}

.stroke-feature {
    stroke: #0B3D2C;
    stroke-width: 2;
}

.fill-bee {
    fill: #FFC107;
    stroke: #FFC107;
}

.fill-elephant {
    fill: #607d8b;
}

.fill-whale {
    fill: #2196f3;
    stroke: #1565c0;
}

.plant-wave-bottom svg {
    display: block;
    width: 100%;
    height: auto;
    background: transparent;
}

/* ========================================     PLANT FOR INDIVIDUALS     ======================================== */
/* MOVED TO LINE 5485 - All individuals styles consolidated above */

/* Impact Visualizer Section */
.plant-impact-section {
    background: linear-gradient(135deg, #f8fdf9 0%, #e8f5e9 100%);
    padding: 4rem 0 !important;
    margin: 0 !important;
    position: relative;
    overflow: hidden;
    border-top: none !important;
    border-bottom: none !important;
}

.plant-impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(76, 175, 80, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(46, 125, 50, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.plant-impact-container {
    position: relative;
    z-index: 1;
}

.plant-impact-header {
    text-align: center;
    margin-bottom: 3rem !important;
    margin-top: 0 !important;
}

.plant-impact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.plant-impact-badge svg {
    width: 14px;
    height: 14px;
}

.plant-impact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a472a;
    margin-bottom: 1rem !important;
    line-height: 1.2;
}

.plant-impact-subtitle {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 0 !important;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.impact-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.impact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1rem 2rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.impact-btn:hover {
    border-color: #4CAF50;
    background: #f8fdf9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.15);
}

.impact-btn.active {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-color: #2E7D32;
    color: white;
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
}

.impact-btn-trees {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.impact-btn.active .impact-btn-trees {
    color: white;
}

.impact-btn-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.impact-btn.active .impact-btn-label {
    color: rgba(255, 255, 255, 0.9);
}

.plant-impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.impact-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 175, 80, 0.1);
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #2E7D32);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(76, 175, 80, 0.15);
}

.impact-card:hover::before {
    transform: scaleX(1);
}

.impact-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.impact-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.impact-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: #2E7D32;
}

.impact-card-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.impact-card-body {
    margin-top: 1rem;
}

.impact-card-value-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.impact-card-value {
    font-size: 3rem;
    font-weight: 700;
    color: #1a472a;
    line-height: 1;
}

.impact-card-plus {
    font-size: 2rem;
    font-weight: 700;
    color: #4CAF50;
}

.impact-card-unit {
    font-size: 1rem;
    color: #718096;
    font-weight: 500;
}

.plant-impact-footer {
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-top: 3rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .plant-impact-section {
        padding: 3rem 0 !important;
    }
    
    .plant-impact-title {
        font-size: 1.875rem;
    }
    
    .plant-impact-subtitle {
        font-size: 1rem;
    }
    
    .impact-selector {
        gap: 0.75rem;
    }
    
    .impact-btn {
        padding: 0.875rem 1.5rem;
        min-width: 80px;
    }
    
    .impact-btn-trees {
        font-size: 1.5rem;
    }
    
    .impact-btn-label {
        font-size: 0.75rem;
    }
    
    .plant-impact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .impact-card {
        padding: 1.5rem;
    }
    
    .impact-card-value {
        font-size: 2.5rem;
    }
}

/* End of individuals section - all other styles moved to line 5485 */

/* ========================================
   ABOUT PAGE - MODERN DESIGN
   ======================================== */

/* Hero Section */
.about-hero-modern {
    background: linear-gradient(135deg, #0B3D2C 0%, #1A472A 50%, #2E7D32 100%);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.about-hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--about-hero-image, url('/assets/images/18447.webp')) center/cover no-repeat;
    opacity: 0.4;
    z-index: 1;
}

.hero-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 61, 44, 0.85) 0%, rgba(26, 71, 42, 0.85) 100%);
    z-index: 2;
}

.about-hero-content-modern {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 3;
}

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(76, 175, 80, 0.3);
    color: #4CAF50;
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(76, 175, 80, 0.4);
}

.hero-badge-modern svg {
    stroke: #4CAF50;
}

.about-hero-content-modern h1 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle-modern {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Story Section */
.about-story-modern {
    background: #ffffff;
    padding: 3rem 0 4rem;
}

.story-grid-modern {
    max-width: 900px;
    margin: 0 auto;
}

.story-content-modern {
    text-align: center;
}

.story-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.story-icon-modern svg {
    stroke: #2E7D32;
}

.story-content-modern h2 {
    color: #0B3D2C;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.story-subtitle-modern {
    color: #4CAF50;
    font-size: 1.25rem;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 2.5rem;
}

.story-text-modern p {
    color: #4a5568;
    font-size: 1.0625rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-align: left;
}

.story-text-modern p:last-child {
    margin-bottom: 0;
}

.story-text-modern strong {
    color: #0B3D2C;
    font-weight: 600;
}

/* Principles Section */
.about-principles-modern {
    background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
    padding: 4rem 0;
}

.principles-header-modern {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    color: #1B5E20;
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.section-badge-modern.gold {
    background: linear-gradient(135deg, #FFF8E1, #FFE082);
    color: #E65100;
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.section-badge-modern svg {
    stroke: #2E7D32;
}

.section-badge-modern.gold svg {
    stroke: #F57C00;
}

.principles-header-modern h2 {
    color: #0B3D2C;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.principles-header-modern p {
    color: #4a5568;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.principles-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.principle-card-modern {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.principle-card-modern:hover {
    border-color: #4CAF50;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.12);
}

.principle-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.principle-icon-modern svg {
    stroke: #2E7D32;
}

.principle-card-modern h3 {
    color: #0B3D2C;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.principle-card-modern p {
    color: #64748b;
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* Transparency Section */
.transparency-modern {
    background: #ffffff;
    padding: 4rem 0;
}

.transparency-header-modern {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.transparency-header-modern h2 {
    color: #0B3D2C;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.transparency-header-modern p {
    color: #4a5568;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.price-breakdown-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.price-card-modern {
    background: linear-gradient(135deg, #f8fafb, #ffffff);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.price-card-modern:hover {
    border-color: #4CAF50;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.12);
}

.price-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.price-icon-modern svg {
    width: 32px;
    height: 32px;
    stroke: #2E7D32;
}

.price-card-modern h3 {
    color: #0B3D2C;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.price-card-modern p {
    color: #64748b;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.transparency-note-modern {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    padding: 2rem 2.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 2px solid rgba(76, 175, 80, 0.3);
}

.transparency-note-modern svg {
    flex-shrink: 0;
    stroke: #2E7D32;
}

.transparency-note-modern p {
    color: #0B3D2C;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.transparency-note-modern strong {
    color: #1B5E20;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .principles-grid-modern,
    .price-breakdown-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero-content-modern h1 {
        font-size: 2.5rem;
    }

    .story-content-modern h2,
    .principles-header-modern h2,
    .transparency-header-modern h2 {
        font-size: 2rem;
    }

    .hero-subtitle-modern,
    .story-subtitle-modern {
        font-size: 1.125rem;
    }

    .transparency-note-modern {
        flex-direction: column;
        text-align: center;
    }
    
    .journey-visual {
        padding: 1rem;
    }
    
    .location-label {
        font-size: 10px;
    }
    
    .journey-animation-compact {
        padding: 1rem;
        margin: 1.5rem auto 0;
    }
    
    .journey-animation-compact svg {
        height: 80px;
    }
}

/* ===== Layout — GTM noscript iframe gizlətmə ===== */
.gtm-noscript-iframe {
    display: none;
    visibility: hidden;
}

/* =========================================
   MODERN SERVICES & IMPACT SECTION
   ========================================= */
.modern-services-impact-section {
    padding: 6rem 0 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

/* Section Header */
.section-header-modern {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ecfdf5;
    color: #065f46;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid #d1fae5;
}

.section-badge svg {
    stroke: #059669;
}

.section-title-modern {
    font-size: 2.75rem;
    color: #064e3b;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle-modern {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Grid (3 Cards) */
.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card-modern {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card-modern:hover::before {
    opacity: 1;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(6, 78, 59, 0.15);
    border-color: #10b981;
}

.service-card-modern > * {
    position: relative;
    z-index: 1;
}

.service-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.service-card-modern:hover .service-card-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    transform: scale(1.1) rotate(5deg);
}

.service-card-icon svg {
    stroke: #059669;
    transition: stroke 0.4s ease;
}

.service-card-modern:hover .service-card-icon svg {
    stroke: white;
}

.service-card-title {
    font-size: 1.5rem;
    color: #064e3b;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card-desc {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #059669;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-card-link svg {
    stroke: #059669;
    transition: transform 0.3s ease;
}

.service-card-link:hover {
    color: #047857;
    gap: 0.75rem;
}

.service-card-link:hover svg {
    transform: translateX(4px);
}

/* Impact Features Grid */
.impact-features-modern {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 0 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.impact-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    color: #374151;
    font-weight: 500;
}

.impact-feature-item:hover {
    background: #ecfdf5;
    border-color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.impact-feature-item .impact-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.impact-feature-item .impact-icon svg {
    stroke: #059669;
    width: 18px;
    height: 18px;
}

.impact-feature-item:hover .impact-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.impact-feature-item:hover .impact-icon svg {
    stroke: white;
}

/* Wave Divider */
.modern-services-impact-section .wave-divider {
    position: relative;
    width: 100%;
    height: 120px;
    margin-top: 2rem;
}

.modern-services-impact-section .wave-divider svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title-modern {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    /* Reduce spacing between all major sections on mobile */
    .hero-redesign {
        min-height: 70vh;
        padding-bottom: 2rem;
    }
    
    .modern-services-impact-section {
        padding: 3rem 0 0;
    }
    
    .packages-section-companies,
    .packages-section-individuals {
        padding: 3rem 0;
    }
    
    .gift-emotional {
        padding: 3rem 0;
    }
    
    .current-mission-section {
        padding: 3rem 0;
    }
    
    section {
        margin-bottom: 0;
    }
    
    .section-header-modern {
        margin-bottom: 2rem;
    }
    
    .section-title-modern {
        font-size: 1.75rem;
    }
    
    .section-subtitle-modern {
        font-size: 0.95rem;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card-modern {
        padding: 2rem 1.5rem;
    }
    
    .impact-features-modern {
        gap: 1rem;
        padding: 2rem 0 3rem;
    }
    
    .impact-feature-item {
        font-size: 0.875rem;
        padding: 0.75rem 1.25rem;
    }
}

@media (max-width: 480px) {
    /* Further reduce spacing on small mobile */
    .hero-redesign {
        min-height: 60vh;
        padding-bottom: 1.5rem;
    }
    
    .modern-services-impact-section {
        padding: 2rem 0 0;
    }
    
    .packages-section-companies,
    .packages-section-individuals {
        padding: 2rem 0;
    }
    
    .gift-emotional {
        padding: 2rem 0;
    }
    
    .current-mission-section {
        padding: 2rem 0;
    }
    
    .section-header-modern {
        margin-bottom: 1.5rem;
    }
    
    .process-integration-modern {
        margin-top: 2rem;
    }
    
    .section-title-modern {
        font-size: 1.75rem;
    }
    
    .service-card-icon {
        width: 64px;
        height: 64px;
    }
    
    .service-card-title {
        font-size: 1.25rem;
    }
    
    .impact-feature-item {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================
   4-STEP PROCESS INTEGRATION (MODERN)
   ========================================= */
.process-integration-modern {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 1px solid #e5e7eb;
}

.process-header-modern {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.process-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #065f46;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid #10b981;
}

.process-badge-modern svg {
    stroke: #059669;
}

.process-title-modern {
    font-size: 2.5rem;
    color: #064e3b;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.process-subtitle-modern {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Process Steps Grid */
.process-steps-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

/* Connecting Line Between Steps */
.process-steps-modern::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, #d1fae5 0%, #10b981 50%, #d1fae5 100%);
    z-index: 0;
}

.process-step-modern {
    position: relative;
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.process-step-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(6, 78, 59, 0.15);
    border-color: #10b981;
}

.step-number-modern {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    z-index: 2;
}

.step-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 1.5rem;
    transition: all 0.4s ease;
}

.process-step-modern:hover .step-icon-modern {
    background: linear-gradient(135deg, #10b981, #059669);
    transform: scale(1.1) rotate(5deg);
}

.step-icon-modern svg {
    stroke: #059669;
    transition: stroke 0.4s ease;
}

.process-step-modern:hover .step-icon-modern svg {
    stroke: white;
}

.step-title-modern {
    font-size: 1.25rem;
    color: #064e3b;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.step-desc-modern {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
}

.step-desc-modern strong {
    color: #059669;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .process-steps-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps-modern::before {
        display: none;
    }
    
    .process-title-modern {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .process-integration-modern {
        margin-top: 4rem;
        padding-top: 3rem;
    }
    
    .process-header-modern {
        margin-bottom: 3rem;
    }
    
    .process-title-modern {
        font-size: 1.75rem;
    }
    
    .process-subtitle-modern {
        font-size: 1rem;
    }
    
    .process-steps-modern {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .process-step-modern {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .process-title-modern {
        font-size: 1.5rem;
    }
    
    .step-icon-modern {
        width: 64px;
        height: 64px;
    }
    
    .step-title-modern {
        font-size: 1.125rem;
    }
    
    .step-desc-modern {
        font-size: 0.875rem;
    }
}


/* Combined Benefits + Process Section */
.combined-benefits-process-section {
    background: #ffffff;
    padding: 6rem 0;
}

.benefits-header {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-title {
    font-size: 3rem;
    color: #0B3D2C;
    font-weight: 800;
    margin-bottom: 1rem;
}

.benefits-subtitle {
    color: #4b5563;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.benefit-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: #E8F5E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-title {
    color: #0B3D2C;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefit-text {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 31, 63, 0.2), transparent);
    margin: 5rem 0;
}

.process-header-combined {
    text-align: center;
    margin-bottom: 4rem;
}

.process-title-combined {
    font-size: 3rem;
    color: #0B3D2C;
    font-weight: 800;
    margin-bottom: 1rem;
}

.process-subtitle-combined {
    color: #4b5563;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.process-timeline-combined {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    position: relative;
}

.process-timeline-combined::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, #001f3f 0%, #001f3f 100%);
    z-index: 0;
}

.process-step-combined {
    position: relative;
    text-align: center;
    z-index: 2;
}

.process-number-combined {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 
        0 20px 40px rgba(0, 31, 63, 0.25),
        0 0 0 8px rgba(0, 31, 63, 0.1);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.process-step-combined:hover .process-number-combined {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 
        0 30px 60px rgba(0, 31, 63, 0.35),
        0 0 0 8px rgba(0, 31, 63, 0.15);
}

.process-content-combined {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.process-step-combined:hover .process-content-combined {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.process-label-combined {
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    text-transform: uppercase;
    display: inline-block;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.process-step-title-combined {
    color: #0B3D2C;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.process-text-combined {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .benefits-grid,
    .process-timeline-combined {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline-combined::before {
        display: none;
    }
}

@media (max-width: 640px) {
    .benefits-grid,
    .process-timeline-combined {
        grid-template-columns: 1fr;
    }
    
    .benefits-title,
    .process-title-combined {
        font-size: 2rem;
    }
}


/* Transparency Section in Combined */
.transparency-section-combined {
    margin: 5rem 0;
}

.transparency-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.transparency-content {
    padding-right: 2rem;
}

.transparency-title {
    font-size: 2.5rem;
    color: #0B3D2C;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.transparency-text {
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.transparency-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .transparency-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .transparency-content {
        padding-right: 0;
    }
}


/* Premium Why Trees Section */
.premium-why-trees-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8faf9 100%);
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.premium-why-trees-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: radial-gradient(ellipse at top, rgba(107, 142, 35, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Hero Header */
.premium-hero-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.premium-main-title {
    font-size: 3.5rem;
    color: #0B3D2C;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.premium-main-subtitle {
    color: #4b5563;
    font-size: 1.3rem;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Benefits Grid */
.premium-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 6rem;
    position: relative;
    z-index: 1;
}

.premium-benefit-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.premium-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #16A34A, #22c55e);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.premium-benefit-card:hover::before {
    transform: scaleX(1);
}

.premium-benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.premium-benefit-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
    color: #16A34A;
}

.premium-benefit-card:hover .premium-benefit-icon-wrapper {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, #16A34A, #22c55e);
    color: #ffffff;
}

.premium-benefit-title {
    color: #0B3D2C;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.premium-benefit-text {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.7;
}

/* Impact Stats Header */
.premium-impact-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.premium-impact-title {
    font-size: 3rem;
    color: #0B3D2C;
    font-weight: 900;
    margin-bottom: 1rem;
}

.premium-impact-subtitle {
    color: #4b5563;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Stats Grid */
.premium-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.premium-stat-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.premium-stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #001f3f, #003366);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.premium-stat-card:hover::after {
    transform: scaleX(1);
}

.premium-stat-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.premium-stat-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.1), rgba(0, 51, 102, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    color: #001f3f;
}

.premium-stat-card:hover .premium-stat-icon {
    transform: scale(1.15) rotate(-5deg);
    background: linear-gradient(135deg, #001f3f, #003366);
    color: #ffffff;
}

.premium-stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: #001f3f;
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: -2px;
}

.premium-stat-title {
    color: #0B3D2C;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.premium-stat-text {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .premium-benefits-grid,
    .premium-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .premium-main-title,
    .premium-impact-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .premium-benefits-grid,
    .premium-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-main-title,
    .premium-impact-title {
        font-size: 2rem;
    }
    
    .premium-stat-number {
        font-size: 3rem;
    }
}
