/* GreenHealers Modern Styles with Animations */

:root {
    --primary-green: #28a745;
    --dark-green: #1e7e34;
    --light-green: #d4edda;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-green: linear-gradient(135deg, #28a745 0%, #20c997 50%, #17a2b8 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

/* Payment Methods Display */
.payment-methods-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-method-option {
    position: relative;
}

.payment-method-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.payment-method-label {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    gap: 12px;
}

.payment-method-label:hover {
    border-color: #667eea;
    background: #f8fafc;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}

.payment-method-option input[type="radio"]:checked + .payment-method-label {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.2);
}

.payment-method-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

.payment-method-name {
    font-weight: 500;
    color: #1e293b;
    flex: 1;
}

html {
    overflow-x: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    max-width: 100%;
    color: #333;
    line-height: 1.6;
    position: relative;
    padding-top: 80px; /* Default navbar height - will be updated by JS */
    background: white;
    min-height: 100vh;
}

/* Ensure all sections are visible */
section {
    position: relative;
    display: block;
    width: 100%;
}

/* ============================================
   HERO SECTION - MODERN DESIGN
   ============================================ */

/* Hero Section: Lower z-index so dropdown appears above it */
.hero-banner-modern {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-green);
    padding: 60px 0 80px;
    margin-top: 0;
    z-index: 1; /* Lower than navbar and dropdown */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Lower than navbar and dropdown */
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: white;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: white;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: white;
    bottom: 20%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: float-particle 15s infinite ease-in-out;
    pointer-events: none;
}

.particle-1 {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    font-size: 2.5rem;
}

.particle-2 {
    left: 80%;
    top: 30%;
    animation-delay: 2s;
    font-size: 2rem;
}

.particle-3 {
    left: 20%;
    top: 70%;
    animation-delay: 4s;
    font-size: 1.8rem;
}

.particle-4 {
    left: 70%;
    top: 60%;
    animation-delay: 6s;
    font-size: 2.2rem;
}

.particle-5 {
    left: 50%;
    top: 10%;
    animation-delay: 8s;
    font-size: 1.5rem;
}

.particle-6 {
    left: 90%;
    top: 80%;
    animation-delay: 10s;
    font-size: 2rem;
}

@keyframes float-particle {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    50% {
        transform: translateY(-100px) translateX(50px) rotate(180deg);
        opacity: 0.5;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-200px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

.hero-content-modern {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text {
    color: white;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
    position: relative;
}

.typing-text {
    display: inline-block;
    overflow: hidden;
    border-right: 3px solid rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    animation: typing 2s steps(9, end), blink-cursor 0.75s step-end infinite;
}

.typing-text-delay {
    display: inline-block;
    overflow: hidden;
    border-right: 3px solid rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    animation: typing 2s steps(14, end) 0.5s both, blink-cursor 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-cursor {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: rgba(255, 255, 255, 0.7);
    }
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #e0f7fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    animation: buttons-entrance 1s ease-out 0.8s both;
}

@keyframes buttons-entrance {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-hero-primary {
    background: white;
    color: var(--primary-green);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
    color: var(--dark-green);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    animation: stats-entrance 1s ease-out 1s both;
}

@keyframes stats-entrance {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.stat-item {
    text-align: center;
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 15px;
    cursor: default;
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 400;
}

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

.floating-plant {
    font-size: 15rem;
    color: rgba(255,255,255,0.2);
    animation: float-plant 6s ease-in-out infinite;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.7);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* ============================================
   ANIMATIONS
   ============================================ */

.animate-fade-in {
    animation: fadeIn 1s ease-out;
    opacity: 1; /* Ensure visible after animation */
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
    opacity: 1; /* Ensure visible after animation */
}

.animate-slide-down {
    animation: slideDown 0.8s ease-out;
    opacity: 1; /* Ensure visible after animation */
}

.animate-slide-up-delay {
    animation: slideUp 0.8s ease-out 0.2s both;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.4s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

.animate-zoom-in {
    animation: zoomIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Fallback: Show content if JS doesn't load */
.no-js .animate-on-scroll,
.animate-on-scroll:not(.animated) {
    animation: fadeInFallback 0.5s ease-out 0.5s forwards;
}

@keyframes fadeInFallback {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SECTION STYLES
   ============================================ */

.section-header {
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--light-green);
    color: var(--dark-green);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.badge-animated {
    animation: badge-bounce 2s ease-in-out infinite;
}

.badge-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes badge-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.title-animated {
    animation: title-glow 3s ease-in-out infinite;
}

@keyframes title-glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(44, 62, 80, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(40, 167, 69, 0.5), 0 0 30px rgba(40, 167, 69, 0.3);
    }
}

.subtitle-animated {
    animation: fade-in-out 4s ease-in-out infinite;
}

@keyframes fade-in-out {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

.badge-herbal {
    background: #fff3cd;
    color: #856404;
}

.badge-blog {
    background: #d1ecf1;
    color: #0c5460;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 400;
}

/* ============================================
   PRODUCT CARDS - MODERN
   ============================================ */

.section-trending {
    background: #f8f9fa;
    padding: 100px 0;
    position: relative;
    z-index: 1;
    width: 100%;
}

.product-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-modern:hover {
    transform: translateY(-10px) scale(1.02) rotate(1deg);
    box-shadow: var(--shadow-lg);
    animation: card-pulse 1s ease-in-out infinite;
}

@keyframes card-pulse {
    0%, 100% {
        box-shadow: var(--shadow-lg);
    }
    50% {
        box-shadow: 0 12px 40px rgba(40, 167, 69, 0.3);
    }
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
    background: #f8f9fa;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card-modern:hover .product-image {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(40, 167, 69, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-modern:hover .product-overlay {
    opacity: 1;
}

.btn-overlay {
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    background: white;
    color: var(--primary-green);
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.product-card-modern:hover .btn-overlay {
    transform: translateY(0);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #dc3545;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    animation: badge-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(220, 53, 69, 0.6);
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(220, 53, 69, 0.6);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 25px rgba(220, 53, 69, 0.9);
    }
}

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

.product-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
    min-height: 48px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-green);
}

.btn-product {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-product:hover {
    background: var(--dark-green);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.5);
}

/* ============================================
   HERBAL SECTION
   ============================================ */

.section-herbal {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    z-index: 1;
    width: 100%;
}

.herbal-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fff9e6 0%, #f0f8e8 100%);
    z-index: 0;
}

.herbal-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    z-index: 1;
}

.herbal-card:hover {
    transform: translateY(-15px) rotate(2deg);
    box-shadow: var(--shadow-lg);
    animation: herbal-glow 1.5s ease-in-out infinite;
}

@keyframes herbal-glow {
    0%, 100% {
        box-shadow: var(--shadow-lg);
    }
    50% {
        box-shadow: 0 15px 45px rgba(40, 167, 69, 0.4);
    }
}

.herbal-image-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
    background: #f8f9fa;
}

.herbal-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.herbal-card:hover .herbal-image {
    transform: scale(1.15);
}

.herbal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(40, 167, 69, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.herbal-card:hover .herbal-overlay {
    opacity: 1;
}

.btn-herbal {
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    background: white;
    color: var(--primary-green);
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.herbal-card:hover .btn-herbal {
    transform: scale(1);
}

.herbal-info {
    padding: 25px;
    text-align: center;
}

.herbal-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 20px;
    font-size: 1.5rem;
    color: white;
    box-shadow: var(--shadow-md);
}

.herbal-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.herbal-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.herbal-link {
    color: #6c757d;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.herbal-link:hover {
    color: var(--primary-green);
    gap: 10px;
}

/* ============================================
   BLOG CARDS
   ============================================ */

.section-blog {
    padding: 100px 0;
    background: white;
    position: relative;
    z-index: 1;
    width: 100%;
}

.blog-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    animation: blog-float 2s ease-in-out infinite;
}

@keyframes blog-float {
    0%, 100% {
        transform: translateY(-8px) scale(1.02);
    }
    50% {
        transform: translateY(-12px) scale(1.02);
    }
}

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 60%;
    background: #f8f9fa;
}

.blog-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card-modern:hover .blog-image {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.95);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6c757d;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    font-size: 0.85rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
    line-height: 1.4;
}

.blog-excerpt {
    color: #6c757d;
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.7;
}

.blog-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.blog-link:hover {
    gap: 12px;
}

/* ============================================
   CTA SECTION
   ============================================ */

.section-cta {
    padding: 80px 0;
    background: var(--gradient-green);
    position: relative;
    z-index: 1;
    width: 100%;
}

.cta-box {
    background: white;
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-text {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 30px;
}

.btn-cta {
    padding: 18px 40px;
    background: var(--gradient-green);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(40, 167, 69, 0.3);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(40, 167, 69, 0.4);
    color: white;
}

.cta-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    font-size: 15rem;
    color: rgba(40, 167, 69, 0.05);
    z-index: 1;
    animation: rotate 20s linear infinite;
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
    .hero-content-modern {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .floating-plant {
        font-size: 10rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-banner-modern {
        min-height: auto;
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-box {
        padding: 40px 30px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

/* ============================================
   EXISTING STYLES (Preserved)
   ============================================ */

/* Product Cards (Legacy) */
.product-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    box-shadow: var(--shadow-sm);
}

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

.product-card img {
    height: 200px;
    object-fit: cover;
}

/* Buttons */
.btn-success {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-success:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
}

/* ============================================
   MODERN NAVBAR
   ============================================ */

/* Header/Navbar: High z-index to appear above hero section */
.navbar-modern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999 !important;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(40, 167, 69, 0.1);
    transition: all 0.3s ease;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow: visible !important; /* Allow dropdown to escape */
    box-sizing: border-box;
}

.navbar-modern.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom-color: rgba(40, 167, 69, 0.2);
}

.navbar-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(32, 201, 151, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.navbar-modern.scrolled .navbar-backdrop {
    opacity: 1;
}

.navbar-modern .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 20px;
    border: 1px solid rgba(40, 167, 69, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06),
                0 2px 8px rgba(40, 167, 69, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    margin: 8px auto;
    max-width: 1400px;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible !important;
    min-width: 0;
    z-index: inherit;
}

.navbar-modern .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(40, 167, 69, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.navbar-modern .container:hover::before {
    left: 100%;
}

.navbar-modern.scrolled .container {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(40, 167, 69, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08),
                0 4px 12px rgba(40, 167, 69, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.95);
    padding: 10px 22px;
}

/* Brand */
.navbar-brand-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--primary-green);
    font-weight: 700;
    transition: all 0.3s ease;
    z-index: 2;
    margin-right: 40px;
    min-width: 0;
    flex-shrink: 1;
    max-width: 100%;
}

.navbar-brand-modern:hover {
    transform: scale(1.05);
    color: var(--dark-green);
}

.brand-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
}

.navbar-brand-modern:hover .brand-icon {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 6px 16px rgba(40, 167, 69, 0.4);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brand-tagline {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.7;
    color: #6c757d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Navigation Links */
.navbar-nav-modern {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: 20px;
}

.nav-item-modern {
    position: relative;
}

.nav-link-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-green);
    opacity: 0.1;
    transition: left 0.3s ease;
    z-index: 0;
}

.nav-link-modern:hover::before,
.nav-link-modern.active::before {
    left: 0;
}

.nav-link-modern i {
    font-size: 1.1rem;
    z-index: 1;
    position: relative;
}

.nav-link-modern span {
    z-index: 1;
    position: relative;
}

.nav-link-modern:hover {
    color: var(--primary-green);
    transform: translateY(-2px);
}

.nav-link-modern.active {
    color: var(--primary-green);
    background: rgba(40, 167, 69, 0.1);
}

.nav-link-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 3px;
    background: var(--gradient-green);
    border-radius: 2px 2px 0 0;
    transition: transform 0.3s ease;
}

.nav-link-modern.active .nav-link-indicator {
    transform: translateX(-50%) scaleX(1);
}

/* Navbar Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: visible;
    z-index: 1;
}

/* Search */
.search-wrapper {
    position: relative;
}

.search-form {
    margin: 0;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 25px;
    padding: 8px 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.search-input-wrapper:focus-within {
    background: white;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.1);
}

.search-icon {
    color: #6c757d;
    font-size: 1rem;
    margin-right: 8px;
}

.search-input {
    border: none;
    background: transparent;
    outline: none;
    width: 200px;
    font-size: 0.9rem;
    color: #495057;
}

.search-input::placeholder {
    color: #adb5bd;
}

.search-submit {
    background: var(--primary-green);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 8px;
}

.search-submit:hover {
    background: var(--dark-green);
    transform: scale(1.1);
}

/* Navbar Buttons */
.navbar-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.navbar-icon-btn {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #f8f9fa;
    border: none;
    color: #495057;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: visible;
    flex-shrink: 0;
    box-sizing: border-box;
}

.navbar-icon-btn:hover {
    background: var(--gradient-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.navbar-icon-btn.user-btn {
    position: relative;
    overflow: hidden;
}

.navbar-icon-btn.user-btn i {
    font-size: 1.4rem;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.navbar-icon-btn.user-btn:hover i {
    opacity: 0.5;
}

.navbar-icon-btn.user-btn .user-name-short {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.85rem;
    font-weight: 700;
    color: #495057;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    pointer-events: none;
    transition: color 0.3s ease;
}

.navbar-icon-btn.user-btn:hover .user-name-short {
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cart-badge-modern {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

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

.user-name-short {
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.tooltip {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #2c3e50;
    color: white;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.navbar-icon-btn:hover .tooltip {
    opacity: 1;
}

/* Dropdown - Redesigned */
.dropdown-modern {
    position: static;
}

.navbar-actions .dropdown-modern,
.navbar-buttons .dropdown-modern {
    position: relative;
    z-index: 99999;
    overflow: visible !important;
}

/* Dropdown Menu: Absolute position with highest z-index to appear above everything */
.dropdown-menu-modern,
.dropdown-menu.dropdown-menu-modern {
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    left: auto !important;
    min-width: 320px;
    max-width: 400px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
                0 8px 24px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(40, 167, 69, 0.08);
    padding: 0;
    list-style: none;
    margin: 0;
    border: none;
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99999 !important; /* Highest z-index to appear above hero */
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Bootstrap dropdown show state */
.dropdown.show .dropdown-menu-modern,
.dropdown-modern.show .dropdown-menu-modern,
.dropdown-menu-modern.show,
.dropdown.show .dropdown-menu,
.dropdown-menu.show,
[data-bs-popper] .dropdown-menu-modern,
[data-bs-popper] .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    z-index: 99999 !important;
    pointer-events: auto !important;
    position: absolute !important;
}

.dropdown-header {
    padding: 20px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 20px 20px 0 0;
    margin: 0;
    color: white;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.user-details {
    flex: 1;
}

.user-name {
    font-weight: 600;
    color: white;
    font-size: 1rem;
    margin-bottom: 4px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.user-email {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.dropdown-item-modern,
.dropdown-item.dropdown-item-modern {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    border-left: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.dropdown-item-modern::before,
.dropdown-item.dropdown-item-modern::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--gradient-green);
    transform: scaleY(0);
    transition: transform 0.25s ease;
}

.dropdown-item-modern i,
.dropdown-item.dropdown-item-modern i {
    width: 22px;
    text-align: center;
    color: #28a745;
    font-size: 1.1rem;
    transition: all 0.25s ease;
}

.dropdown-item-modern:hover,
.dropdown-item.dropdown-item-modern:hover {
    background: linear-gradient(90deg, rgba(40, 167, 69, 0.08) 0%, rgba(40, 167, 69, 0.03) 100%);
    color: #28a745;
    transform: translateX(8px);
    padding-left: 22px;
}

.dropdown-item-modern:hover::before,
.dropdown-item.dropdown-item-modern:hover::before {
    transform: scaleY(1);
}

.dropdown-item-modern:hover i,
.dropdown-item.dropdown-item-modern:hover i {
    color: #28a745;
    transform: scale(1.15);
}

.logout-item {
    color: #dc3545;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 4px;
    padding-top: 16px;
}

.logout-item i {
    color: #dc3545 !important;
}

.logout-item:hover {
    background: linear-gradient(90deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%);
    color: #dc3545;
}

.logout-item:hover i {
    color: #dc3545 !important;
}

.dropdown-divider {
    margin: 0;
    border-color: rgba(0, 0, 0, 0.08);
    opacity: 1;
}

/* Action Buttons */
.btn-navbar {
    padding: 7px 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-navbar-outline {
    background: transparent;
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-navbar-outline:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn-navbar-primary {
    background: var(--gradient-green);
    color: white;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn-navbar-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(40, 167, 69, 0.4);
}

/* Mobile Toggle */
.navbar-toggler-modern {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    display: none; /* Hidden by default */
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
    z-index: 2;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar-toggler-modern[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.navbar-toggler-modern[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler-modern[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .navbar-modern {
        padding: 0;
        overflow-x: hidden;
    }
    
    .navbar-toggler-modern {
        display: flex; /* Show on mobile */
        flex-shrink: 0;
        margin-left: 8px;
        width: 40px;
        min-width: 40px;
    }
    
    .navbar-modern .container {
        flex-wrap: wrap;
        padding: 8px 12px;
        border-radius: 12px;
        margin: 4px 8px;
        width: calc(100% - 16px);
        max-width: calc(100% - 16px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05),
                    0 2px 4px rgba(40, 167, 69, 0.06);
        box-sizing: border-box;
        overflow-x: hidden;
        overflow-y: visible;
    }
    
    .navbar-modern.scrolled .container {
        padding: 6px 10px;
        margin: 4px 8px;
        width: calc(100% - 16px);
        max-width: calc(100% - 16px);
    }
    
    .navbar-collapse {
        width: 100%;
        margin-top: 12px;
        padding-top: 15px;
        border-top: 1px solid rgba(40, 167, 69, 0.1);
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .navbar-brand-modern {
        margin-right: 8px;
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(100% - 48px);
        overflow: hidden;
    }
    
    .brand-text {
        min-width: 0;
        overflow: hidden;
        flex: 1;
        max-width: 100%;
    }
    
    .brand-icon {
        flex-shrink: 0;
    }
    
    .brand-icon {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
    
    .brand-tagline {
        font-size: 0.65rem;
    }
    
    .navbar-nav-modern {
        flex-direction: column;
        width: 100%;
        gap: 4px;
        margin-left: 0;
    }
    
    .nav-link-modern {
        width: 100%;
        justify-content: flex-start;
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .navbar-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-top: 12px;
    }
    
    .search-input-wrapper {
        width: 100%;
        max-width: 100%;
        padding: 6px 12px;
        box-sizing: border-box;
    }
    
    .search-input {
        width: 100%;
        max-width: 100%;
        font-size: 0.85rem;
        box-sizing: border-box;
    }
    
    .navbar-buttons {
        width: 100%;
        max-width: 100%;
        justify-content: space-between;
        gap: 8px;
        box-sizing: border-box;
    }
    
    .navbar-icon-btn {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }
    
    .btn-navbar {
        padding: 6px 12px;
        font-size: 0.8rem;
        flex: 1;
        min-width: 0;
        justify-content: center;
        box-sizing: border-box;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .dropdown-menu-modern,
    .dropdown-menu.dropdown-menu-modern {
        right: 0 !important;
        left: auto !important;
        width: calc(100vw - 20px);
        max-width: 320px;
        min-width: 280px;
        box-sizing: border-box;
        z-index: 10001 !important;
        border-radius: 16px;
    }
    
    .dropdown-header {
        padding: 16px;
    }
    
    .user-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .dropdown-item-modern,
    .dropdown-item.dropdown-item-modern {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
}

/* Extra Small Devices */
@media (max-width: 576px) {
    .navbar-modern {
        overflow-x: hidden;
    }
    
    .navbar-modern .container {
        padding: 6px 10px;
        margin: 4px 6px;
        width: calc(100% - 12px);
        max-width: calc(100% - 12px);
        border-radius: 10px;
        box-sizing: border-box;
        overflow-x: hidden;
        overflow-y: visible;
    }
    
    .navbar-modern.scrolled .container {
        padding: 5px 8px;
        margin: 4px 6px;
        width: calc(100% - 12px);
        max-width: calc(100% - 12px);
    }
    
    .navbar-brand-modern {
        max-width: calc(100% - 44px);
        margin-right: 6px;
    }
    
    .navbar-toggler-modern {
        width: 36px;
        min-width: 36px;
        margin-left: 6px;
    }
    
    .brand-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .brand-name {
        font-size: 1.1rem;
    }
    
    .brand-tagline {
        font-size: 0.6rem;
    }
    
    .navbar-toggler-modern {
        width: 36px;
        height: 36px;
    }
    
    .hamburger-line {
        width: 22px;
        height: 2.5px;
    }
    
    .nav-link-modern {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
    
    .navbar-collapse {
        margin-top: 10px;
        padding-top: 12px;
    }
    
    .navbar-actions {
        gap: 10px;
        margin-top: 10px;
    }
    
    .search-input-wrapper {
        padding: 5px 10px;
    }
    
    .navbar-icon-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    .navbar-icon-btn.user-btn i {
        font-size: 1.1rem;
    }
    
    .navbar-icon-btn.user-btn .user-name-short {
        font-size: 0.7rem;
    }
    
    .btn-navbar {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
}

/* Navbar Scroll Indicator */
.nav-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-green);
    width: 0;
    transition: width 0.3s ease;
}

/* Legacy Navbar Support */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Forms */
.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* ============================================
   MODERN FOOTER WITH NEON SOCIAL ICONS
   ============================================ */

.footer-modern {
    position: relative;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    padding: 80px 0 30px;
    margin-top: 100px;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(40, 167, 69, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(32, 201, 151, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-brand {
    margin-bottom: 20px;
}

.brand-icon-footer {
    width: 60px;
    height: 60px;
    background: var(--gradient-green);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.3);
    animation: float-icon 3s ease-in-out infinite;
}

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

.brand-name-footer {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline-footer {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-green);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-green);
}

.footer-links a:hover {
    color: white;
    padding-left: 20px;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-contact li:hover {
    color: rgba(255, 255, 255, 0.95);
    transform: translateX(5px);
}

.footer-contact li > span:not(.footer-contact-icon) {
    transition: all 0.3s ease;
}

.footer-contact li:hover > span:not(.footer-contact-icon) {
    color: rgba(255, 255, 255, 1);
}

/* Footer Contact Icons - Force Visibility */
.footer-contact-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 45px !important;
    height: 45px !important;
    min-width: 45px !important;
    min-height: 45px !important;
    border-radius: 50% !important;
    position: relative !important;
    flex-shrink: 0 !important;
    margin-right: 15px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    z-index: 10 !important;
    overflow: visible !important;
}

.footer-contact-icon i {
    font-size: 1.8rem !important;
    display: inline-block !important;
    line-height: 1 !important;
    position: relative !important;
    z-index: 5 !important;
    opacity: 1 !important;
    visibility: visible !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-family: "bootstrap-icons" !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    color: inherit !important;
    width: 1em !important;
    height: 1em !important;
    vertical-align: middle !important;
}

/* Phone Icon - Cyan/Blue Neon */
.footer-contact-icon.phone-icon {
    background: rgba(0, 217, 255, 0.25) !important;
    box-shadow: 
        0 0 25px rgba(0, 255, 255, 0.6),
        0 0 50px rgba(0, 168, 255, 0.4),
        inset 0 0 20px rgba(0, 255, 255, 0.3) !important;
    animation: neon-glow-phone 3s ease-in-out infinite, float-icon-phone 4s ease-in-out infinite !important;
}

.footer-contact-icon.phone-icon i {
    color: #00ffff !important;
    text-shadow: 
        0 0 12px #00ffff,
        0 0 24px #00a8ff,
        0 0 36px #0080ff,
        0 0 48px #0060ff !important;
    filter: brightness(1.6) drop-shadow(0 0 10px #00ffff) !important;
    animation: icon-pulse-phone 2s ease-in-out infinite !important;
}

.footer-contact li:first-child:hover .footer-contact-icon.phone-icon {
    background: rgba(0, 255, 255, 0.4) !important;
    box-shadow: 
        0 0 40px rgba(0, 255, 255, 0.9),
        0 0 80px rgba(0, 168, 255, 0.6),
        inset 0 0 30px rgba(0, 255, 255, 0.5) !important;
    transform: scale(1.2) rotate(360deg) !important;
    animation: none !important;
}

.footer-contact li:first-child:hover .footer-contact-icon.phone-icon i {
    color: #ffffff !important;
    text-shadow: 
        0 0 20px #00ffff,
        0 0 40px #00a8ff,
        0 0 60px #0080ff,
        0 0 80px #0060ff !important;
    filter: brightness(2) drop-shadow(0 0 15px #00ffff) !important;
    transform: scale(1.1) !important;
    animation: none !important;
}

@keyframes neon-glow-phone {
    0%, 100% {
        box-shadow: 
            0 0 25px rgba(0, 255, 255, 0.6),
            0 0 50px rgba(0, 168, 255, 0.4),
            inset 0 0 20px rgba(0, 255, 255, 0.3);
        background: rgba(0, 217, 255, 0.25);
    }
    50% {
        box-shadow: 
            0 0 15px rgba(0, 255, 255, 0.5),
            0 0 30px rgba(0, 168, 255, 0.3),
            inset 0 0 10px rgba(0, 255, 255, 0.2);
        background: rgba(0, 217, 255, 0.2);
    }
}

@keyframes float-icon-phone {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(5deg);
    }
    50% {
        transform: translateY(-4px) rotate(0deg);
    }
    75% {
        transform: translateY(-8px) rotate(-5deg);
    }
}

@keyframes icon-pulse-phone {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1.6) drop-shadow(0 0 10px #00ffff);
    }
    50% {
        transform: scale(1.05);
        filter: brightness(1.8) drop-shadow(0 0 15px #00ffff);
    }
}

/* Email Icon - Green Neon */
.footer-contact-icon.email-icon {
    background: rgba(50, 255, 50, 0.25) !important;
    box-shadow: 
        0 0 25px rgba(0, 255, 0, 0.6),
        0 0 50px rgba(0, 204, 0, 0.4),
        inset 0 0 20px rgba(0, 255, 0, 0.3) !important;
    animation: neon-glow-email 3s ease-in-out infinite 0.5s, float-icon-email 4s ease-in-out infinite 0.5s !important;
}

.footer-contact-icon.email-icon i {
    color: #00ff00 !important;
    text-shadow: 
        0 0 12px #00ff00,
        0 0 24px #00cc00,
        0 0 36px #00aa00,
        0 0 48px #008800 !important;
    filter: brightness(1.6) drop-shadow(0 0 10px #00ff00) !important;
    animation: icon-pulse-email 2s ease-in-out infinite 0.5s !important;
}

.footer-contact li:nth-child(2):hover .footer-contact-icon.email-icon {
    background: rgba(0, 255, 0, 0.4) !important;
    box-shadow: 
        0 0 40px rgba(0, 255, 0, 0.9),
        0 0 80px rgba(0, 204, 0, 0.6),
        inset 0 0 30px rgba(0, 255, 0, 0.5) !important;
    transform: scale(1.2) rotate(-360deg) !important;
    animation: none !important;
}

.footer-contact li:nth-child(2):hover .footer-contact-icon.email-icon i {
    color: #ffffff !important;
    text-shadow: 
        0 0 20px #00ff00,
        0 0 40px #00cc00,
        0 0 60px #00aa00,
        0 0 80px #008800 !important;
    filter: brightness(2) drop-shadow(0 0 15px #00ff00) !important;
    transform: scale(1.1) !important;
    animation: none !important;
}

@keyframes neon-glow-email {
    0%, 100% {
        box-shadow: 
            0 0 25px rgba(0, 255, 0, 0.6),
            0 0 50px rgba(0, 204, 0, 0.4),
            inset 0 0 20px rgba(0, 255, 0, 0.3);
        background: rgba(50, 255, 50, 0.25);
    }
    50% {
        box-shadow: 
            0 0 15px rgba(0, 255, 0, 0.5),
            0 0 30px rgba(0, 204, 0, 0.3),
            inset 0 0 10px rgba(0, 255, 0, 0.2);
        background: rgba(50, 255, 50, 0.2);
    }
}

@keyframes float-icon-email {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(-5deg);
    }
    50% {
        transform: translateY(-4px) rotate(0deg);
    }
    75% {
        transform: translateY(-8px) rotate(5deg);
    }
}

@keyframes icon-pulse-email {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1.6) drop-shadow(0 0 10px #00ff00);
    }
    50% {
        transform: scale(1.05);
        filter: brightness(1.8) drop-shadow(0 0 15px #00ff00);
    }
}

/* Location Icon - Orange/Pink Neon */
.footer-contact-icon.location-icon {
    background: rgba(255, 107, 53, 0.25) !important;
    box-shadow: 
        0 0 25px rgba(255, 107, 53, 0.6),
        0 0 50px rgba(255, 71, 87, 0.4),
        inset 0 0 20px rgba(255, 107, 53, 0.3) !important;
    animation: neon-glow-location 3s ease-in-out infinite 1s, float-icon-location 4s ease-in-out infinite 1s !important;
}

.footer-contact-icon.location-icon i {
    color: #ff6b35 !important;
    text-shadow: 
        0 0 12px #ff6b35,
        0 0 24px #ff4757,
        0 0 36px #ff3838,
        0 0 48px #ff1744 !important;
    filter: brightness(1.6) drop-shadow(0 0 10px #ff6b35) !important;
    animation: icon-pulse-location 2s ease-in-out infinite 1s !important;
}

.footer-contact li:nth-child(3):hover .footer-contact-icon.location-icon {
    background: rgba(255, 107, 53, 0.4) !important;
    box-shadow: 
        0 0 40px rgba(255, 107, 53, 0.9),
        0 0 80px rgba(255, 71, 87, 0.6),
        inset 0 0 30px rgba(255, 107, 53, 0.5) !important;
    transform: scale(1.2) rotate(360deg) !important;
    animation: none !important;
}

.footer-contact li:nth-child(3):hover .footer-contact-icon.location-icon i {
    color: #ffffff !important;
    text-shadow: 
        0 0 20px #ff6b35,
        0 0 40px #ff4757,
        0 0 60px #ff3838,
        0 0 80px #ff1744 !important;
    filter: brightness(2) drop-shadow(0 0 15px #ff6b35) !important;
    transform: scale(1.1) !important;
    animation: none !important;
}

@keyframes neon-glow-location {
    0%, 100% {
        box-shadow: 
            0 0 25px rgba(255, 107, 53, 0.6),
            0 0 50px rgba(255, 71, 87, 0.4),
            inset 0 0 20px rgba(255, 107, 53, 0.3);
        background: rgba(255, 107, 53, 0.25);
    }
    50% {
        box-shadow: 
            0 0 15px rgba(255, 107, 53, 0.5),
            0 0 30px rgba(255, 71, 87, 0.3),
            inset 0 0 10px rgba(255, 107, 53, 0.2);
        background: rgba(255, 107, 53, 0.2);
    }
}

@keyframes float-icon-location {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(5deg);
    }
    50% {
        transform: translateY(-4px) rotate(0deg);
    }
    75% {
        transform: translateY(-8px) rotate(-5deg);
    }
}

@keyframes icon-pulse-location {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1.6) drop-shadow(0 0 10px #ff6b35);
    }
    50% {
        transform: scale(1.05);
        filter: brightness(1.8) drop-shadow(0 0 15px #ff6b35);
    }
}

/* Continuous subtle glow animation */
.footer-contact-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
    animation: glow-ripple 4s ease-in-out infinite;
}

.footer-contact-icon.phone-icon::after {
    background: radial-gradient(circle, rgba(0, 255, 255, 0.6) 0%, rgba(0, 168, 255, 0.3) 50%, transparent 70%);
    box-shadow: 
        0 0 25px rgba(0, 255, 255, 0.4),
        0 0 50px rgba(0, 168, 255, 0.2);
    animation-delay: 0s;
}

.footer-contact-icon.email-icon::after {
    background: radial-gradient(circle, rgba(0, 255, 0, 0.6) 0%, rgba(0, 204, 0, 0.3) 50%, transparent 70%);
    box-shadow: 
        0 0 25px rgba(0, 255, 0, 0.4),
        0 0 50px rgba(0, 204, 0, 0.2);
    animation-delay: 0.5s;
}

.footer-contact-icon.location-icon::after {
    background: radial-gradient(circle, rgba(255, 107, 53, 0.6) 0%, rgba(255, 71, 87, 0.3) 50%, transparent 70%);
    box-shadow: 
        0 0 25px rgba(255, 107, 53, 0.4),
        0 0 50px rgba(255, 71, 87, 0.2);
    animation-delay: 1s;
}

@keyframes glow-ripple {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    33% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
    66% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0.2;
    }
}

/* Social Media Section */
.footer-social-section {
    margin: 60px 0 40px;
}

.social-divider {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.social-divider::before,
.social-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(40, 167, 69, 0.5), transparent);
}

.social-divider::before {
    left: 0;
}

.social-divider::after {
    right: 0;
}

.divider-text {
    display: inline-block;
    padding: 0 20px;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.social-icons-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-icons-container {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icon {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: visible;
}

/* Neon Glow Effects for Each Social Icon */
.social-icon.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d5dbf 100%);
    box-shadow: 
        0 0 20px rgba(24, 119, 242, 0.5),
        0 0 40px rgba(24, 119, 242, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 
        0 0 20px rgba(225, 48, 108, 0.5),
        0 0 40px rgba(225, 48, 108, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.social-icon.twitter {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
    box-shadow: 
        0 0 20px rgba(29, 161, 242, 0.5),
        0 0 40px rgba(29, 161, 242, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.social-icon.youtube {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    box-shadow: 
        0 0 20px rgba(255, 0, 0, 0.5),
        0 0 40px rgba(255, 0, 0, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.social-icon.pinterest {
    background: linear-gradient(135deg, #bd081c 0%, #8b0614 100%);
    box-shadow: 
        0 0 20px rgba(189, 8, 28, 0.5),
        0 0 40px rgba(189, 8, 28, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.social-icon.linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    box-shadow: 
        0 0 20px rgba(0, 119, 181, 0.5),
        0 0 40px rgba(0, 119, 181, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.social-icon.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 
        0 0 20px rgba(37, 211, 102, 0.5),
        0 0 40px rgba(37, 211, 102, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Hover Animations */
.social-icon:hover {
    transform: translateY(-12px) scale(1.2) rotate(360deg);
    animation: neon-pulse 1.5s ease-in-out infinite, icon-bounce 0.6s ease-out;
}

@keyframes icon-bounce {
    0% {
        transform: translateY(-12px) scale(1.2) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) scale(1.25) rotate(180deg);
    }
    100% {
        transform: translateY(-12px) scale(1.2) rotate(360deg);
    }
}

.social-icon.facebook:hover {
    box-shadow: 
        0 0 30px rgba(24, 119, 242, 0.8),
        0 0 60px rgba(24, 119, 242, 0.6),
        0 0 90px rgba(24, 119, 242, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.social-icon.instagram:hover {
    box-shadow: 
        0 0 30px rgba(225, 48, 108, 0.8),
        0 0 60px rgba(225, 48, 108, 0.6),
        0 0 90px rgba(225, 48, 108, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.social-icon.twitter:hover {
    box-shadow: 
        0 0 30px rgba(29, 161, 242, 0.8),
        0 0 60px rgba(29, 161, 242, 0.6),
        0 0 90px rgba(29, 161, 242, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.social-icon.youtube:hover {
    box-shadow: 
        0 0 30px rgba(255, 0, 0, 0.8),
        0 0 60px rgba(255, 0, 0, 0.6),
        0 0 90px rgba(255, 0, 0, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.social-icon.pinterest:hover {
    box-shadow: 
        0 0 30px rgba(189, 8, 28, 0.8),
        0 0 60px rgba(189, 8, 28, 0.6),
        0 0 90px rgba(189, 8, 28, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.social-icon.linkedin:hover {
    box-shadow: 
        0 0 30px rgba(0, 119, 181, 0.8),
        0 0 60px rgba(0, 119, 181, 0.6),
        0 0 90px rgba(0, 119, 181, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.social-icon.whatsapp:hover {
    box-shadow: 
        0 0 30px rgba(37, 211, 102, 0.8),
        0 0 60px rgba(37, 211, 102, 0.6),
        0 0 90px rgba(37, 211, 102, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

@keyframes neon-pulse {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

/* Social Icon Tooltip */
.social-tooltip {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
}

.social-tooltip::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid rgba(0, 0, 0, 0.9);
}

.social-icon:hover .social-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: -35px;
    transform: translateX(-50%) translateY(0);
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 40px;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(40, 167, 69, 0.3), transparent);
    margin-bottom: 30px;
}

.footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-copyright p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.footer-tagline {
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

.footer-made-with {
    margin-top: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.animated-heart {
    display: inline-block;
    color: #ff1744;
    font-size: 1.2rem;
    animation: heartbeat 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 23, 68, 0.8));
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(255, 23, 68, 0.8));
    }
    10% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 12px rgba(255, 23, 68, 1));
    }
    20% {
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(255, 23, 68, 0.8));
    }
    30% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 15px rgba(255, 23, 68, 1));
    }
    40% {
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(255, 23, 68, 0.8));
    }
}

.author-name {
    color: var(--primary-green);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
    transition: all 0.3s ease;
    text-decoration: none;
}

.author-name:hover {
    color: #20c997;
    text-shadow: 0 0 15px rgba(32, 201, 151, 0.8);
    transform: scale(1.05);
}

.footer-made-with:hover .author-name {
    color: #20c997;
    text-shadow: 0 0 15px rgba(32, 201, 151, 0.8);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-modern {
        padding: 60px 0 20px;
    }
    
    .social-icons-container {
        gap: 15px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .brand-name-footer {
        font-size: 1.5rem;
    }
}

/* Legacy Footer Support */
footer a:hover {
    color: var(--primary-green) !important;
}

/* ============================================
   MODERN ENHANCEMENTS & ANIMATIONS
   ============================================ */

/* Smooth transitions for all interactive elements */
a, button, input, select, textarea {
    transition: all 0.3s ease;
}

/* Enhanced card hover effects */
.card, .product-card-modern, .blog-card-modern {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover, .product-card-modern:hover, .blog-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Modern button effects */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Smooth image loading */
img {
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Modern form inputs */
.form-control, .form-select {
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}

.form-control:focus, .form-select:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.15);
    transform: translateY(-2px);
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Smooth page transitions */
body {
    animation: fadeIn 0.5s ease-in;
}

/* Enhanced shadows */
.shadow-modern {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08),
                0 2px 8px rgba(0, 0, 0, 0.04);
}

.shadow-modern-hover:hover {
    box-shadow: 0 20px 60px rgba(40, 167, 69, 0.15),
                0 4px 12px rgba(0, 0, 0, 0.06);
}

/* ============================================
   PROMOTIONAL BANNERS & ADS
   ============================================ */

.promo-banner-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.promo-banner {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 24px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(40, 167, 69, 0.25);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.promo-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(40, 167, 69, 0.35);
}

.promo-banner-content {
    flex: 1;
    color: white;
    position: relative;
    z-index: 1;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.promo-badge i {
    font-size: 1.1rem;
}

.promo-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}

.promo-text {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-promo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #28a745;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-promo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #28a745;
}

.btn-promo i {
    transition: transform 0.3s ease;
}

.btn-promo:hover i {
    transform: translateX(5px);
}

.promo-decoration {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.15);
    position: absolute;
    right: 30px;
    animation: float 3s ease-in-out infinite;
}

.promo-banner-2 {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    flex-direction: row-reverse;
}

.promo-banner-2 .promo-decoration {
    left: 30px;
    right: auto;
}

.promo-discount {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

/* Ad Banners */
.ad-banner-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    padding: 70px 0 !important;
    margin: 0;
}

.ad-banner-section .container {
    max-width: 1200px;
}

.ad-banner-section .row {
    margin-left: -15px;
    margin-right: -15px;
}

.ad-banner-section .row > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}

.ad-banner {
    position: relative;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.15);
    margin-bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ad-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

.ad-banner:hover::before {
    opacity: 0.5;
}

.ad-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.ad-banner:hover::after {
    transform: scale(1);
}

.ad-banner:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.ad-banner:hover .btn-ad {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.ad-banner-left {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.ad-banner-right {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.ad-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ad-banner:hover .ad-banner-overlay {
    opacity: 1;
}

.ad-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 40px 30px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ad-icon {
    font-size: 5rem;
    margin-bottom: 25px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.3));
    transition: all 0.4s ease;
}

.ad-banner:hover .ad-icon {
    transform: scale(1.1) rotate(5deg);
}

.ad-banner-content h4 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 18px;
    text-shadow: 0 3px 15px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}

.ad-banner-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 90%;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.btn-ad {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #667eea;
    padding: 16px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                box-shadow 0.4s ease,
                background 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn-ad span {
    position: relative;
    z-index: 5;
    color: #667eea;
    display: inline-block;
    transition: color 0.3s ease;
}

.btn-ad i {
    position: relative;
    z-index: 5;
    color: #667eea;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.btn-ad::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.05);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
    pointer-events: none;
}

.btn-ad:hover::after {
    width: 300px;
    height: 300px;
}

.ad-banner-right .btn-ad {
    color: #f5576c;
}

.ad-banner-right .btn-ad span {
    color: #f5576c;
}

.ad-banner-right .btn-ad i {
    color: #f5576c;
}

.ad-banner-right .btn-ad::after {
    background: rgba(245, 87, 108, 0.05);
}

.btn-ad:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: white;
}

.btn-ad:hover span {
    color: #667eea;
}

.ad-banner-right .btn-ad:hover span {
    color: #f5576c;
}

.btn-ad:hover i {
    transform: translateX(5px);
    color: #667eea;
}

.ad-banner-right .btn-ad:hover i {
    color: #f5576c;
}

/* Newsletter Banner */
.newsletter-banner-section {
    background: linear-gradient(135deg, #1a5f3f 0%, #28a745 50%, #20c997 100%);
    position: relative;
    overflow: hidden;
    padding: 35px 0 !important;
    margin: 0;
}

.newsletter-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="3" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
    animation: background-move 20s linear infinite;
}

@keyframes background-move {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.newsletter-banner {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2),
                0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.newsletter-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25),
                0 8px 20px rgba(0, 0, 0, 0.15);
}

.newsletter-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.35),
                0 3px 10px rgba(40, 167, 69, 0.2);
    animation: pulse 2s ease-in-out infinite;
    position: relative;
    transition: all 0.4s ease;
}

.newsletter-banner:hover .newsletter-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 45px rgba(40, 167, 69, 0.4),
                0 8px 20px rgba(40, 167, 69, 0.25);
}

.newsletter-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.newsletter-banner:hover .newsletter-icon::before {
    transform: scale(1.5);
    opacity: 0;
}

.newsletter-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.newsletter-content p {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    margin-bottom: 20px;
}

.newsletter-input-group {
    display: flex;
    gap: 10px;
    max-width: 450px;
    margin: 0 auto;
    align-items: stretch;
}

.newsletter-input-group input {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    outline: none;
    background: #f8f9fa;
    font-weight: 500;
}

.newsletter-input-group input:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.1);
    background: white;
    transform: translateY(-2px);
}

.newsletter-input-group input::placeholder {
    color: #adb5bd;
    font-weight: 400;
}

.btn-newsletter {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.35);
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-newsletter::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-newsletter:hover::before {
    width: 300px;
    height: 300px;
}

.btn-newsletter:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.45);
}

.btn-newsletter > * {
    position: relative;
    z-index: 1;
}

.btn-newsletter i {
    transition: transform 0.3s ease;
}

.btn-newsletter:hover i {
    transform: translateX(5px);
}

.newsletter-benefits {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(40, 167, 69, 0.1);
}

.newsletter-benefits span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #28a745;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(32, 201, 151, 0.05) 100%);
    border-radius: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(40, 167, 69, 0.1);
}

.newsletter-benefits span:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(32, 201, 151, 0.1) 100%);
    border-color: rgba(40, 167, 69, 0.2);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.15);
}

.newsletter-benefits i {
    font-size: 1.2rem;
    color: #20c997;
}

/* Responsive */
@media (max-width: 991px) {
    .promo-banner {
        flex-direction: column;
        text-align: center;
        padding: 35px 30px;
    }
    
    .promo-decoration {
        position: relative;
        right: auto;
        left: auto;
        margin-top: 20px;
        font-size: 5rem;
    }
    
    .promo-title {
        font-size: 1.6rem;
    }
    
    .ad-banner-section {
        padding: 50px 0 !important;
    }
    
    .ad-banner {
        height: 350px;
        margin-bottom: 20px;
    }
    
    .row.g-4 {
        margin-bottom: 0;
    }
    
    .ad-banner-content {
        padding: 30px 20px;
    }
    
    .ad-icon {
        font-size: 4rem;
        margin-bottom: 20px;
    }
    
    .ad-banner-content h4 {
        font-size: 1.6rem;
    }
    
    .ad-banner-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .newsletter-banner-section {
        padding: 30px 0 !important;
    }
    
    .newsletter-banner {
        padding: 25px 20px;
        max-width: 90%;
    }
    
    .newsletter-icon {
        width: 65px;
        height: 65px;
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .newsletter-content h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .newsletter-content p {
        font-size: 0.85rem;
        margin-bottom: 18px;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        max-width: 100%;
    }
    
    .newsletter-input-group input {
        width: 100%;
    }
    
    .btn-newsletter {
        width: 100%;
        justify-content: center;
    }
    
    .newsletter-benefits {
        flex-direction: column;
        gap: 15px;
        margin-top: 25px;
        padding-top: 25px;
    }
    
    .newsletter-benefits span {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .promo-banner {
        padding: 30px 20px;
    }
    
    .promo-title {
        font-size: 1.4rem;
    }
    
    .promo-text {
        font-size: 1rem;
    }
    
    .ad-banner-section {
        padding: 40px 0 !important;
    }
    
    .ad-banner {
        height: 300px;
        border-radius: 20px;
    }
    
    .ad-banner-content {
        padding: 25px 15px;
    }
    
    .ad-icon {
        font-size: 3.5rem;
        margin-bottom: 15px;
    }
    
    .ad-banner-content h4 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .ad-banner-content p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .btn-ad {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    
    .newsletter-banner-section {
        padding: 25px 0 !important;
    }
    
    .newsletter-banner {
        padding: 22px 18px;
        border-radius: 18px;
    }
    
    .newsletter-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .newsletter-content h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .newsletter-content p {
        font-size: 0.8rem;
        margin-bottom: 16px;
    }
    
    .newsletter-input-group {
        gap: 12px;
    }
    
    .newsletter-input-group input {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
    
    .btn-newsletter {
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .newsletter-benefits {
        gap: 12px;
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .newsletter-benefits span {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}
