/* ========== VARIABLES ========== */
:root {
    --primary-green: #2e7d32;
    --light-green: #4caf50;
    --primary-blue: #1976d2;
    --light-blue: #42a5f5;
    --accent-color: #ff9800;
}

/* ========== BASE ========== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
    padding-top: 76px;
}

body.guide-active {
    overflow: hidden;
}

/* ========== NAVBAR ========== */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-scrolled {
    background-color: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

/* ========== LOGOS ========== */
.navbar-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.danantara-logo {
    margin-right: 10px;
}

.pupuk-logo {
    margin-right: 12px;
}

.ppl-logo {
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.logo-group {
    padding-right: 12px;
    border-right: 2px solid #e0e0e0;
}

.brand-text {
    white-space: nowrap;
}

/* ========== HERO SECTION ========== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    color: white;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
    margin-top: -76px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.floating-icon {
    position: absolute;
    opacity: 0.1;
    color: white;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 10%;
    left: 5%;
    font-size: 4rem;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 20%;
    right: 10%;
    font-size: 3rem;
    animation-delay: 1s;
}

.floating-icon:nth-child(3) {
    bottom: 15%;
    left: 15%;
    font-size: 5rem;
    animation-delay: 2s;
}

.floating-icon:nth-child(4) {
    bottom: 25%;
    right: 5%;
    font-size: 2.5rem;
    animation-delay: 3s;
}

.floating-icon:nth-child(5) {
    top: 40%;
    left: 20%;
    font-size: 3.5rem;
    animation-delay: 4s;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* ========== PARTICLES ========== */
.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    animation: particleFloat 12s infinite linear;
}

.particle-1 { top: 15%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 45%; left: 80%; animation-delay: 2s; width: 8px; height: 8px; }
.particle-3 { top: 70%; left: 25%; animation-delay: 4s; width: 4px; height: 4px; }
.particle-4 { top: 30%; left: 65%; animation-delay: 6s; }
.particle-5 { top: 80%; left: 55%; animation-delay: 8s; width: 10px; height: 10px; background: rgba(255,255,255,0.15); }
.particle-6 { top: 50%; left: 40%; animation-delay: 10s; width: 5px; height: 5px; }

@keyframes particleFloat {
    0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    50% { transform: translateY(-80px) translateX(40px) scale(1.5); opacity: 0.6; }
    90% { opacity: 1; }
    100% { transform: translateY(-160px) translateX(-20px) scale(0.5); opacity: 0; }
}

/* ========== HERO CONTENT ========== */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-line-3 {
    background: linear-gradient(90deg, #ffffff, #a5d6a7, #90caf9, #ffffff);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 4s ease-in-out infinite;
}

@keyframes shimmerText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* ========== HERO ICON WRAPPER (orbiting dots) ========== */
.hero-icon-wrapper {
    display: inline-block;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    margin-top: -100px;
    margin-left: -100px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    animation: orbitSpin 8s linear infinite;
}

.orbit-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    box-shadow: 0 0 10px rgba(255,255,255,0.4);
}

.orbit-dot-1 { top: 0; left: 50%; margin-left: -6px; margin-top: -6px; background: #4caf50; }
.orbit-dot-2 { bottom: 0; left: 50%; margin-left: -6px; margin-bottom: -6px; background: #42a5f5; }
.orbit-dot-3 { top: 50%; right: 0; margin-right: -6px; margin-top: -6px; background: #ff9800; }

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========== BUTTONS ========== */
.btn-hero {
    background: rgba(255,255,255,0.2);
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.btn-hero:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-glow {
    animation: btnGlow 2s ease-in-out infinite alternate;
}

@keyframes btnGlow {
    0% { box-shadow: 0 0 5px rgba(255,255,255,0.2); }
    100% { box-shadow: 0 0 25px rgba(255,255,255,0.5), 0 0 50px rgba(255,255,255,0.15); }
}

/* ========== SECTION TITLES ========== */
.section-title {
    color: var(--primary-green);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

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

.section-title-animated {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-title-animated.title-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title-animated::after {
    width: 0;
    transition: width 0.8s ease 0.4s;
}

.section-title-animated.title-visible::after {
    width: 80px;
}

/* ========== TEXT REVEAL ========== */
.text-reveal {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}

.text-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========== STAT ITEMS ========== */
.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item-enhanced {
    position: relative;
    border-radius: 15px;
    padding: 30px 20px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    overflow: hidden;
}

.stat-item-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.fade-in.visible .stat-item-enhanced::before {
    transform: scaleX(1);
}

.stat-item-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

/* ========== BENEFIT CARDS ========== */
.benefit-card {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-blue), var(--light-green), var(--light-blue), var(--primary-green));
    background-size: 50% 100%;
    animation: lineRun 3s linear infinite;
}

@keyframes lineRun {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0%); }
}

.benefit-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.benefit-icon {
    font-size: 3.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    display: inline-block;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--primary-green);
}

/* Card title hover underline effect */
.benefit-card .card-title,
.region-card .card-title {
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.benefit-card .card-title::after,
.region-card .card-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
    transition: width 0.4s ease;
}

.benefit-card:hover .card-title::after,
.region-card:hover .card-title::after {
    width: 100%;
}

/* ========== REGION CARDS ========== */
.region-card {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.region-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-blue), var(--light-green), var(--light-blue), var(--primary-green));
    background-size: 50% 100%;
    animation: lineRun 3s linear infinite;
}

.region-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.region-icon {
    font-size: 3.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    display: inline-block;
}

.region-card:hover .region-icon {
    transform: scale(1.2) rotate(5deg);
}

.btn-region {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-region::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.6s;
}

.btn-region:hover::before {
    left: 100%;
}

.btn-region:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    color: white;
}

/* ========== STATS SECTION ========== */
.stats-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 60px 0 30px;
}

.footer a {
    color: var(--light-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #90caf9;
}

/* ========== FADE IN ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ========== PROGRESS RING ========== */
.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-circle {
    transition: stroke-dashoffset 1s ease;
}

/* ========== DATA VISUALIZATION ========== */
.data-visualization {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-top: 30px;
}

.visual-title {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.data-bar {
    height: 30px;
    background: #e9ecef;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
}

.data-fill {
    height: 100%;
    border-radius: 15px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
    width: 0;
    transition: width 1.5s ease;
}

.data-label {
    position: absolute;
    top: 0;
    left: 15px;
    line-height: 30px;
    color: white;
    font-weight: 500;
    z-index: 1;
}

/* ========== PULSE DOT ========== */
.pulse-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-green);
    margin-right: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

/* ========== FLOATING SHAPES ========== */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: floatShape 15s infinite linear;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    bottom: 10%;
    right: 5%;
    animation-delay: 5s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes floatShape {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: auto;
    min-width: 175px;
    height: 60px;
    border-radius: 50px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white !important;
    text-decoration: none !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    padding: 0 20px;
    overflow: hidden;
    animation: waButtonAnimation 3s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
    color: white !important;
    animation: none;
}

.whatsapp-button-content {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.whatsapp-icon {
    font-size: 1.6rem;
    animation: iconPulse 2s infinite;
}

.whatsapp-text {
    font-weight: 600;
    white-space: nowrap;
}

.whatsapp-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: all 0.6s;
}

.whatsapp-button:hover::before {
    left: 100%;
}

@keyframes waButtonAnimation {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    }
}

/* ========== HELP BUTTON ========== */
.help-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: auto;
    min-width: 180px;
    height: 60px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 1001;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    padding: 0 20px;
    overflow: hidden;
    animation: helpButtonAnimation 3s infinite;
}

.help-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0,0,0,0.4);
    animation: none;
}

.help-button.active {
    background: linear-gradient(135deg, var(--accent-color), #ff5722);
    animation: none;
}

.help-button-content {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.help-icon {
    font-size: 1.5rem;
    animation: iconPulse 2s infinite;
}

.help-text {
    font-weight: 600;
    white-space: nowrap;
    animation: textGlow 2s infinite alternate;
}

.help-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: all 0.6s;
}

.help-button:hover::before {
    left: 100%;
}

@keyframes helpButtonAnimation {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 6px 25px rgba(0,0,0,0.4);
    }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes textGlow {
    0% { text-shadow: 0 0 5px rgba(255,255,255,0.5); }
    100% { text-shadow: 0 0 15px rgba(255,255,255,0.8); }
}

/* ========== HAND CURSOR ========== */
.hand-cursor {
    position: fixed;
    width: 60px;
    height: 60px;
    z-index: 1002;
    pointer-events: none;
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: none;
}

.hand-cursor.active {
    display: block;
}

.hand-icon {
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255,255,255,0.7);
    animation: handPulse 1.5s infinite;
}

.hand-icon i {
    font-size: 1.8rem;
    color: var(--primary-blue);
    transform: rotate(-10deg);
}

@keyframes handPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ========== GUIDE OVERLAY ========== */
.guide-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 999;
    display: none;
}

.guide-overlay.active {
    display: block;
}

.guide-notification {
    position: fixed;
    top: 90px;
    right: 20px;
    background-color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1002;
    display: none;
    max-width: 300px;
    font-weight: 500;
}

.guide-notification.active {
    display: block;
    animation: slideInRight 0.5s ease;
}

.guide-notification.success {
    background-color: #4caf50;
    color: white;
}

.highlight-element {
    position: relative;
    z-index: 1001;
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.8) !important;
    transition: box-shadow 0.3s ease;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ========== NAV LINK ENHANCED HOVER ========== */
.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

.nav-link:hover {
    color: var(--primary-green) !important;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .help-button {
        min-width: 150px;
        height: 50px;
        font-size: 0.9rem;
    }
    
    .help-icon {
        font-size: 1.2rem;
    }

    .whatsapp-button {
        min-width: 140px;
        height: 50px;
        font-size: 0.85rem;
    }

    .whatsapp-icon {
        font-size: 1.3rem;
    }
    
    body {
        padding-top: 66px;
    }
    
    .hero-section {
        margin-top: -66px;
    }

    .navbar-logo {
        height: 28px;
    }

    .ppl-logo {
        height: 32px;
    }

    .logo-group {
        padding-right: 8px;
    }

    .brand-text {
        font-size: 0.8rem;
    }

    .navbar-brand {
        max-width: 85%;
    }
}

@media (max-width: 576px) {
    .navbar-logo {
        height: 22px;
    }

    .ppl-logo {
        height: 26px;
    }

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

    .brand-text {
        font-size: 0.7rem;
    }
}

/* ========== LOGIN BUTTON & MODAL STYLES ========== */
.btn-login-nav {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    color: white !important;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 7px 20px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.25);
    transition: all 0.3s ease;
}

.btn-login-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(25, 118, 210, 0.4);
    background: linear-gradient(135deg, #256728 0%, #1565c0 100%);
}

.login-modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    overflow: hidden;
}

.login-modal-icon {
    width: 48px;
    height: 48px;
    background: rgba(46, 125, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-login-submit {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
    transition: all 0.3s ease;
}

.btn-login-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.4);
    background: linear-gradient(135deg, #256728 0%, #1565c0 100%);
}

.login-modal-content .input-group-text {
    background-color: #f8f9fa !important;
}

.login-modal-content .form-control:focus {
    border-color: var(--primary-green);
    box-shadow: none;
}

