/* ============================================
   PT GENTA ENERGI NUSANTARA — Company Profile
   Design System: White Primary + Green Secondary
   ============================================ */

/* ----- CSS Variables ----- */
:root {
    /* Primary Colors */
    --white: #ffffff;
    --white-soft: #f8faf9;
    --white-muted: #f0f4f2;

    /* Secondary Green Palette */
    --green-50: #edfcf2;
    --green-100: #d3f8e0;
    --green-200: #aaf0c4;
    --green-300: #73e3a1;
    --green-400: #3ace7a;
    --green-500: #16b458;
    --green-600: #0a9246;
    --green-700: #08753a;
    --green-800: #095d30;
    --green-900: #084c29;
    --green-950: #032b16;

    /* Accent & Neutral */
    --dark: #0f1a14;
    --dark-card: #132219;
    --dark-surface: #1a2e23;
    --gray-100: #f1f5f3;
    --gray-200: #e2e8e5;
    --gray-300: #c5cec9;
    --gray-400: #94a39b;
    --gray-500: #6b7d73;
    --gray-600: #556a60;
    --gray-700: #45554d;
    --gray-800: #3a4741;
    --gray-900: #2d3831;

    /* Gradient */
    --gradient-green: linear-gradient(135deg, var(--green-400) 0%, var(--green-600) 100%);
    --gradient-green-dark: linear-gradient(135deg, var(--green-600) 0%, var(--green-900) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(8, 75, 58, 0.06);
    --shadow-md: 0 4px 20px rgba(8, 75, 58, 0.1);
    --shadow-lg: 0 8px 40px rgba(8, 75, 58, 0.12);
    --shadow-xl: 0 16px 64px rgba(8, 75, 58, 0.16);
    --shadow-green-glow: 0 4px 30px rgba(22, 180, 88, 0.25);

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 100px;
}

/* ----- Reset & Base ----- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

::selection {
    background: var(--green-200);
    color: var(--green-900);
}

/* ----- Utility Classes ----- */
.text-gradient {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-primary-green {
    color: var(--green-500) !important;
}

.section-padding {
    padding: 100px 0;
}

.section-gap {
    margin-top: 60px;
}

/* ----- Navbar ----- */
#mainNavbar {
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
    z-index: 1050;
}

#mainNavbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 44px;
    height: 44px;
    background: var(--gradient-green);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: var(--shadow-green-glow);
    transition: var(--transition-smooth);
}

.navbar-brand:hover .brand-logo {
    transform: rotate(-5deg) scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--dark);
    letter-spacing: 0.5px;
}

.brand-tagline {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.65rem;
    color: var(--green-500);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--gray-600);
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--green-600);
    background: var(--green-50);
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-green);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 30px;
}

.btn-contact-nav {
    background: var(--gradient-green) !important;
    color: white !important;
    padding: 8px 20px !important;
    border-radius: var(--radius-full) !important;
    font-weight: 600 !important;
    box-shadow: var(--shadow-green-glow);
}

.btn-contact-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(22, 180, 88, 0.35);
    color: white !important;
    background: var(--gradient-green) !important;
}

.dropdown-menu {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    animation: dropdownFadeIn 0.3s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--green-50);
    color: var(--green-700);
    transform: translateX(4px);
}

.navbar-toggler {
    border: 2px solid var(--green-200);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(22, 180, 88, 0.2);
}

/* ----- Hero Section ----- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(3, 43, 22, 0.92) 0%,
            rgba(8, 75, 58, 0.85) 30%,
            rgba(9, 93, 48, 0.75) 60%,
            rgba(22, 180, 88, 0.5) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10vh) rotate(720deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    color: var(--green-200);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(22, 180, 88, 0.3);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(22, 180, 88, 0);
    }
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, var(--green-300), var(--green-100));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-green);
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    box-shadow: var(--shadow-green-glow);
    transition: var(--transition-smooth);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(22, 180, 88, 0.4);
    color: white;
}

.btn-hero-primary i {
    transition: var(--transition-fast);
}

.btn-hero-primary:hover i {
    transform: translateX(4px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: white;
}

/* Hero Stats */
.hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateX(-8px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-green);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.stat-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
}

.hero-scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

/* ----- Section Header ----- */
.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-50);
    color: var(--green-600);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid var(--green-100);
}

.section-badge.badge-light {
    background: rgba(255, 255, 255, 0.08);
    color: var(--green-300);
    border-color: rgba(255, 255, 255, 0.15);
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ----- Profile Section ----- */
.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.03);
}

.about-image-accent {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 120px;
    height: 120px;
    background: var(--gradient-green);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.3;
}

.about-content {
    padding-left: 20px;
}

.content-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.about-content p {
    font-size: 0.95rem;
    margin-bottom: 16px;
    color: var(--gray-600);
}

.about-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--green-50);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--green-500);
    margin-top: 12px;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-green);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

/* Vision & Mission Cards */
.vision-card,
.mission-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    border: 1px solid var(--gray-200);
    height: 100%;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.vision-card::before,
.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-green);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.vision-card:hover::before,
.mission-card:hover::before {
    transform: scaleX(1);
}

.vision-card:hover,
.mission-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--green-200);
}

.vision-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--gradient-green);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: var(--shadow-green-glow);
}

.mission-icon {
    background: linear-gradient(135deg, var(--green-500), var(--green-800));
}

.vision-card h3,
.mission-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.vision-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.mission-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mission-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.mission-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--green-400);
    min-width: 36px;
    line-height: 1.4;
}

.mission-item strong {
    display: block;
    font-size: 0.92rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.mission-item p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.6;
}

/* Value Cards */
.value-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    height: 100%;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-green);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-200);
}

.value-card:hover::after {
    transform: scaleX(1);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: var(--green-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-500);
    font-size: 1.4rem;
    margin: 0 auto 16px;
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon {
    background: var(--gradient-green);
    color: white;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--shadow-green-glow);
}

.value-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
}

/* ----- Dark Sections ----- */
.section-dark {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(22, 180, 88, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* ----- Business Cards ----- */
.business-card {
    background: var(--dark-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    height: 100%;
    transition: var(--transition-smooth);
}

.business-card:hover {
    transform: translateY(-6px);
    border-color: rgba(22, 180, 88, 0.3);
    box-shadow: 0 12px 40px rgba(22, 180, 88, 0.15);
}

.business-card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.business-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.business-card:hover .business-card-img img {
    transform: scale(1.08);
}

.business-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.business-tag {
    background: var(--gradient-green);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.business-card-body {
    padding: 28px;
}

.business-card-body h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.business-card-body h3 i {
    color: var(--green-400);
}

.business-card-body p {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.business-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--gray-300);
}

.highlight-item i {
    color: var(--green-400);
    font-size: 0.9rem;
}

.business-clients {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ----- Energy Section ----- */
.energy-block {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 40px;
    margin-bottom: 32px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.energy-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-green);
    transform: scaleY(0);
    transition: var(--transition-smooth);
    transform-origin: bottom;
}

.energy-block:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--green-200);
    transform: translateY(-3px);
}

.energy-block:hover::before {
    transform: scaleY(1);
}

.energy-image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
}

.energy-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.energy-block:hover .energy-img {
    transform: scale(1.05);
}

.energy-content {
    padding: 0 20px;
}

.energy-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-50);
    color: var(--green-600);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 16px;
    border: 1px solid var(--green-100);
}

.energy-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.energy-content p {
    font-size: 0.92rem;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.energy-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green-50);
    color: var(--green-700);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--green-100);
    transition: var(--transition-fast);
}

.feature-chip:hover {
    background: var(--green-100);
}

/* POME Process Diagram */
.pome-visual {
    background: linear-gradient(135deg, var(--green-50), var(--white-muted));
    display: flex;
    align-items: center;
    justify-content: center;
    height: 280px !important;
}

.pome-process-diagram {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.pome-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.pome-icon {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid var(--green-200);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-500);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.pome-step.active .pome-icon {
    background: var(--gradient-green);
    color: white;
    border-color: var(--green-400);
    box-shadow: var(--shadow-green-glow);
}

.pome-step span {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-600);
    text-align: center;
}

.pome-arrow {
    color: var(--green-300);
    font-size: 1rem;
}

/* Biomethane Grid */
.biomethane-visual {
    background: linear-gradient(135deg, var(--green-50), var(--white-muted));
    display: flex;
    align-items: center;
    justify-content: center;
    height: 280px !important;
}

.biomethane-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 20px;
    width: 100%;
}

.biomethane-card {
    background: white;
    padding: 18px 14px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--green-100);
    transition: var(--transition-smooth);
}

.biomethane-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.biomethane-card i {
    color: var(--green-500);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.biomethane-card h6 {
    font-size: 0.82rem;
    margin-bottom: 4px;
}

.biomethane-card small {
    font-size: 0.72rem;
    color: var(--gray-500);
}

/* Powerplant Diagram */
.powerplant-visual {
    background: linear-gradient(135deg, var(--green-50), var(--white-muted));
    display: flex;
    align-items: center;
    justify-content: center;
    height: 280px !important;
}

.powerplant-diagram {
    position: relative;
    width: 240px;
    height: 240px;
}

.pp-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 2;
    box-shadow: var(--shadow-green-glow);
}

.pp-center i {
    font-size: 1.4rem;
}

.pp-center span {
    font-size: 0.6rem;
    font-weight: 700;
    margin-top: 4px;
}

.pp-orbits {
    position: absolute;
    inset: 0;
}

.pp-orbit-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid var(--green-200);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--green-600);
    box-shadow: var(--shadow-sm);
    animation: orbitPulse 3s ease-in-out infinite;
}

.pp-orbit-item span {
    font-size: 0.55rem;
    font-weight: 600;
    margin-top: 2px;
    color: var(--gray-600);
}

.pp-orbit-item:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.pp-orbit-item:nth-child(2) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 0.5s;
}

.pp-orbit-item:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.pp-orbit-item:nth-child(4) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

@keyframes orbitPulse {

    0%,
    100% {
        box-shadow: var(--shadow-sm);
    }

    50% {
        box-shadow: 0 0 20px rgba(22, 180, 88, 0.2);
        border-color: var(--green-400);
    }
}

/* ----- Pellet Section ----- */
.pellet-feature-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    height: 100%;
    transition: var(--transition-smooth);
}

.pellet-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(22, 180, 88, 0.3);
    box-shadow: 0 8px 30px rgba(22, 180, 88, 0.1);
}

.pellet-feature-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-green);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-green-glow);
}

.pellet-feature-card h5 {
    color: white;
    font-size: 1rem;
    margin-bottom: 10px;
}

.pellet-feature-card p {
    color: var(--gray-400);
    font-size: 0.85rem;
    margin: 0;
}

.tech-spec-card {
    background: var(--dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition-smooth);
}

.tech-spec-card:hover {
    background: rgba(22, 180, 88, 0.08);
    border-color: rgba(22, 180, 88, 0.2);
    transform: translateY(-3px);
}

.tech-icon {
    width: 44px;
    height: 44px;
    background: rgba(22, 180, 88, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-400);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.tech-spec-card h5 {
    color: white;
    font-size: 0.92rem;
    margin-bottom: 6px;
}

.tech-spec-card p {
    color: var(--gray-400);
    font-size: 0.82rem;
    margin: 0;
}

.pellet-products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.pellet-product-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(22, 180, 88, 0.1);
    border: 1px solid rgba(22, 180, 88, 0.25);
    color: var(--green-300);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.pellet-product-chip:hover {
    background: var(--gradient-green);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-green-glow);
    border-color: transparent;
}

/* ----- Other Products ----- */
.other-product-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 32px;
    height: 100%;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.other-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-green);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.other-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-200);
}

.other-product-card:hover::before {
    transform: scaleX(1);
}

.other-product-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.other-product-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-green);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-green-glow);
}

.other-product-header h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.badge-usa,
.badge-tech,
.badge-eco {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-usa {
    background: #eef2ff;
    color: #4f46e5;
}

.badge-tech {
    background: var(--green-50);
    color: var(--green-600);
}

.badge-eco {
    background: #ecfdf5;
    color: #059669;
}

.other-product-card>p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.other-product-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--gray-600);
}

.spec-item i {
    color: var(--green-500);
    font-size: 0.9rem;
}

.membrane-types {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.membrane-badge {
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

/* ----- CTA Section ----- */
.section-cta {
    background: var(--white-soft);
}

.cta-wrapper {
    background: var(--dark);
    border-radius: var(--radius-xl);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(22, 180, 88, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(22, 180, 88, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 12px;
}

.cta-content p {
    color: var(--gray-400);
    font-size: 1rem;
}

.cta-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.cta-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    transition: var(--transition-smooth);
}

.cta-info-card:hover {
    background: rgba(22, 180, 88, 0.12);
    border-color: rgba(22, 180, 88, 0.3);
    transform: translateX(-4px);
}

.cta-info-card i {
    color: var(--green-400);
    font-size: 1.3rem;
    width: 24px;
    flex-shrink: 0;
}

.cta-info-card strong {
    display: block;
    color: white;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.cta-info-card p {
    color: var(--gray-400);
    font-size: 0.85rem;
    margin: 0;
}

/* ----- Footer ----- */
.site-footer {
    background: #f6f6f6;
    padding: 60px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand img {
    background-color: #ffffff;
    padding: 6px 12px;
    border-radius: 8px;
    height: 56px !important;
    object-fit: contain;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-brand .brand-logo {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
}

.footer-brand .brand-name {
    color: white;
}

.footer-brand .brand-tagline {
    color: var(--green-400);
}

.footer-desc {
    color: var(--dark);
    font-size: 0.88rem;
    max-width: 320px;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    background: var(--gradient-green);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-green-glow);
}

.footer-heading {
    color: var(--dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--dark);
    font-size: 0.88rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--green-400);
    padding-left: 6px;
}

.footer-certifications {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(22, 180, 88, 0.1);
    border: 1px solid rgba(22, 180, 88, 0.2);
    color: var(--green-400);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 48px;
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--dark);
    font-size: 0.82rem;
    margin-bottom: 4px;
}

.footer-tagline {
    color: var(--gray-500);
    font-size: 0.78rem;
    font-style: italic;
}

/* ----- Back to Top ----- */
.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gradient-green);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-green-glow);
    z-index: 1040;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(22, 180, 88, 0.4);
}

/* ----- Responsive ----- */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .energy-block {
        padding: 24px;
    }

    .energy-image-wrap {
        height: 200px;
        margin-bottom: 24px;
    }

    .energy-content {
        padding: 0;
    }

    .cta-wrapper {
        padding: 40px 24px;
    }

    .about-content {
        padding-left: 0;
        margin-top: 24px;
    }

    .navbar-collapse {
        background: white;
        border-radius: var(--radius-md);
        padding: 16px;
        margin-top: 12px;
        box-shadow: var(--shadow-lg);
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .pome-process-diagram {
        flex-direction: column;
    }

    .pome-arrow {
        transform: rotate(90deg);
    }

    .other-product-specs {
        grid-template-columns: 1fr;
    }

    .business-highlights {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        text-align: center;
        justify-content: center;
    }
}

/* ----- Custom Scrollbar ----- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--white-muted);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 5px;
    border: 2px solid var(--white-muted);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--green-400);
}

/* ----- Loading Animation ----- */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s, visibility 0.6s;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(22, 180, 88, 0.2);
    border-top-color: var(--green-400);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ----- WhatsApp Floating Button ----- */
.btn-whatsapp-floating {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1040;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-whatsapp-floating:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* ============================================
   CUSTOM CAROUSEL & TABS FOR RECENT UPDATES
   ============================================ */
.custom-pills .nav-link {
    color: var(--green-700) !important;
    background: transparent;
    border: none;
    font-size: 0.95rem;
    padding: 8px 24px !important;
    transition: var(--transition-smooth);
}

.custom-pills .nav-link.active {
    color: var(--white) !important;
    background: var(--gradient-green) !important;
    box-shadow: var(--shadow-sm);
}

.custom-pills .nav-link:hover:not(.active) {
    background: rgba(22, 180, 88, 0.08);
    color: var(--green-800) !important;
}

.bg-light-green {
    background-color: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.bg-light-green:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-300);
}

/* Carousel Indicators Styling */
.hero-section .carousel-indicators {
    justify-content: flex-start;
    margin-left: 0;
    margin-bottom: 0;
    bottom: -15px;
    position: relative;
    z-index: 10;
}

.hero-section .carousel-indicators [data-bs-target] {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    background-color: rgba(255, 255, 255, 0.3) !important;
    margin: 0 5px !important;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.hero-section .carousel-indicators .active {
    background-color: var(--green-400) !important;
    border-color: var(--white) !important;
    opacity: 1;
    transform: scale(1.25);
}

/* Adjustments for Hero Carousel Inner Layout */
.hero-section .carousel-item {
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

/* ============================================
   BRILLIANT QUEST SECTION CUSTOM STYLES
   ============================================ */
.process-step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition-smooth);
    height: 100%;
}

.process-step-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--green-400);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.process-step-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--green-400);
    line-height: 1;
    margin-bottom: 12px;
    opacity: 0.8;
}

.location-highlight-card {
    background: linear-gradient(135deg, rgba(22, 180, 88, 0.15) 0%, rgba(3, 43, 22, 0.4) 100%);
    border: 1px solid rgba(22, 180, 88, 0.25);
    border-radius: var(--radius-xl);
    padding: 40px;
    transition: var(--transition-smooth);
}

.location-highlight-card:hover {
    border-color: var(--green-400);
    box-shadow: 0 12px 40px rgba(22, 180, 88, 0.15);
}

.spec-table-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.spec-table-container th {
    background: transparent !important;
    color: white !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1) !important;
    font-weight: 700;
}

.spec-table-container td {
    color: rgba(255, 255, 255, 0.75) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.spec-table-container tr:last-child td {
    border-bottom: none !important;
}

/* Custom isolated spec table styling to prevent Bootstrap table color/bg overrides */
.spec-table-custom {
    width: 100% !important;
    background: transparent !important;
    border-collapse: collapse !important;
    margin-bottom: 0 !important;
}

.spec-table-custom td {
    padding: 12px 16px !important;
    background: transparent !important;
    color: rgba(255, 255, 255, 0.8) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.spec-table-custom tr:last-child td {
    border-bottom: none !important;
}

.spec-table-custom td strong {
    color: #ffffff !important;
}

.stat-icon-brilliant {
    width: 64px;
    height: 64px;
    background: rgba(22, 180, 88, 0.1);
    border: 1px solid rgba(22, 180, 88, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-400);
    font-size: 1.8rem;
    margin-bottom: 16px;
    transition: var(--transition-smooth);
}

.stat-card-brilliant:hover .stat-icon-brilliant {
    background: var(--gradient-green);
    color: white;
    transform: scale(1.05);
}