/* ===== ROOT VARIABLES (unchanged) ===== */
:root {
    /* Base / Background */
    --light-cream: #fdfbf7;
    --mint-tint: #eef7e0;
    --white: #ffffff;
    --card-bg: #ffffff;

    /* Green (Primary) */
    --dark-green: #225902;
    --dark-green-2: #143b02; 
    --mid-green: #4f8a1f;
    --sage-band: #6fae2c;

    /* Gold / Olive Accent */
    --golden-yellow: #8fc94a;
    --golden-light: #b7e176;
    --border-gold: #6fae2c;
    --premium-gold: #d4a94a;

    /* Discount / Offer Boxes */
    --offer-box-bg: #e8f3d9;
    --offer-box-border: #cbeaa0;

    /* Text */
    --heading-green: #1a4d0a;
    --text-gray: #555555;

    /* Gradients */
    --green-gradient: linear-gradient(135deg, #2d6b05 0%, #225902 45%, #143b02 100%);
    --green-gradient-soft: linear-gradient(160deg, #a8d766 0%, #4f8a1f 45%, #225902 100%);
    --gold-gradient: linear-gradient(135deg, #6fae2c 0%, #3f7a12 55%, #225902 100%);
    --gold-gradient-soft: linear-gradient(135deg, #e3f5c0 0%, #b7e176 45%, #8fc94a 100%);
}

.reset-page,
.reset-page * {
    box-sizing: border-box;
}

.reset-page {
    margin: 0;
    padding: 0;
}

.reset-page * {
    margin: 0;
    padding: 0;
}
 

/* --- UTILS (global) --- */
.section-header {
    margin-bottom: 50px;
    text-align: center;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    background: var(--green-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    position: relative;
    padding: 0 40px;
}

.section-header h2::before,
.section-header h2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 4px;
}

.section-header h2::before {
    left: -100px;
}

.section-header h2::after {
    right: -100px;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Buttons (global) */
.btn-gold {
    display: inline-block;
    background: var(--dark-green);
    color: var(--white);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 6px;
    border: none;
    box-shadow: 0 6px 18px rgba(34, 89, 2, 0.35);
    cursor: pointer;
    transition: 0.3s;
}
.btn-gold:hover {
    background: var(--dark-green-2);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(34, 89, 2, 0.45);
}

.btn-green {
    display: inline-block;
    background: var(--white);
    color: var(--dark-green);
    font-weight: 600;
    padding: 11px 28px;
    border-radius: 6px;
    border: 1.5px solid var(--dark-green);
    box-shadow: none;
    cursor: pointer;
    transition: 0.3s;
}
.btn-green:hover {
    background: var(--dark-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* ================================================================
   HOME PAGE – UNIQUE SCOPED CLASSES
   ================================================================ */

/* --- HOME NAVBAR --- */
.home-navbar {
    position: relative;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 6%;
    background: var(--green-gradient);
    border-bottom: 2px solid;
    border-image: var(--gold-gradient);
    border-image-slice: 1;
    box-shadow: 0 4px 18px rgba(20, 59, 2, 0.25);
}

.home-navbar .logo {
    color: var(--white);
}
.home-navbar .logo h2 {
    font-family: 'Playfair Display', serif;
    color: var(--golden-light);
    font-size: 1.6rem;
}
.home-navbar .logo p {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.home-navbar .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}
.home-navbar .nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 6px;
}
.home-navbar .nav-links a.active {
    color: var(--golden-light);
    border-bottom: 2px solid var(--golden-yellow);
}

.home-navbar .nav-icons {
    display: flex;
    gap: 20px;
    color: var(--white);
    font-size: 1.1rem;
}
.home-navbar .nav-icons .icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    width: 22px;
    height: 22px;
    transition: 0.25s;
    cursor: pointer;
}
.home-navbar .nav-icons .icon-btn:hover {
    color: var(--golden-light);
    transform: translateY(-2px);
}

/* --- HOME HERO --- */
.home-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top:100px;
       font-family: 'Poppins', sans-serif;
    background-color: var(--light-cream);
    color: var(--dark-green);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.home-hero .slider {
    display: flex;
    width: 300%;
    height: 100%;
    animation: slideAuto 15s infinite ease-in-out;
}

@keyframes slideAuto {
    0%, 28% { transform: translateX(0); }
    33%, 61% { transform: translateX(-33.33%); }
    66%, 94% { transform: translateX(-66.66%); }
    100% { transform: translateX(0); }
}

.home-hero .slide {
    width: 33.33%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 8%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.home-hero .slide-1 {
    background-image: url('png/kmh1.png');
}
.home-hero .slide-2 {
    background-image: url('png/kmh2.png');
}
.home-hero .slide-3 {
    background-image: url('png/kmh3.png');
}

.home-hero .hero-content {
    max-width: 600px;
    z-index: 10;
    margin-left: -250px;
}

.home-hero .hero-tag {
    display: inline-block;
    color: var(--golden-light);
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.home-hero .hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--heading-green);
    text-align: left;
}
.home-hero .hero-content h1 span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.home-hero .hero-content p {
    color: var(--golden-light);
    font-weight: 600;
    font-size: 1.2rem;
    text-align: left;
}

.home-hero .hero-product-img {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(-53%); }
}

/* Premium badge inside hero */
.home-hero .premium-badge {
    position: absolute;
    top: 6%;
    right: 6%;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #f3dea0 0%, var(--premium-gold) 60%, #a8792f 100%);
    color: var(--dark-green-2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 18px rgba(212, 169, 74, 0.45);
}

.home-hero .hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 24px 0;
}

.home-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 30px;
    border: 1px solid #5a8f28;
    color: #2f5210;
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
}

.home-hero .hero-offer {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px;
    border-radius: 10px;
    background: var(--offer-box-bg);
    border: 1px solid var(--offer-box-border);
    margin-bottom: 22px;
}
.home-hero .hero-offer .offer-pill {
    background: var(--white);
    color: var(--dark-green);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 5px 12px;
    border-radius: 6px;
    border: 1px solid var(--offer-box-border);
}
.home-hero .hero-offer .offer-text {
    color: var(--dark-green);
    font-size: 0.95rem;
}

.home-hero .hero-cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- HOME PROMISE --- */
.home-promise {
    padding: 80px 8%;
    background: var(--white);
    text-align: center;
}

.home-promise .promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.home-promise .promise-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 14px;
    transition: 0.3s;
    background: linear-gradient(180deg, #ffffff 0%, #fdfaf2 100%);
    border: 1px solid #e3f0c9;
}
.home-promise .promise-card:hover {
    box-shadow: 0 14px 30px rgba(34, 89, 2, 0.12);
    transform: translateY(-6px);
}

.home-promise .promise-card .number {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.home-promise .promise-card .icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--green-gradient-soft);
    box-shadow: 0 8px 20px rgba(34, 89, 2, 0.25);
}
.home-promise .promise-card .icon-box img {
    filter: brightness(0) invert(1);
}
.home-promise .promise-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-green);
}
.home-promise .promise-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* --- HOME STATS --- */
.home-stats {
    background: var(--green-gradient);
    padding: 40px 5%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: var(--white);
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    overflow: hidden;
    z-index: 0;
}
.home-stats::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(143, 201, 74, 0.08), transparent 60%);
    pointer-events: none;
}

.home-stats .stat-item {
    text-align: center;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1;
}
.home-stats .stat-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}
.home-stats .stat-text h4 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    background: var(--gold-gradient-soft);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.home-stats .stat-text p {
    font-size: 0.85rem;
    opacity: 0.85;
}
.home-stats .stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* --- HOME PRODUCTS --- */
.home-products {
    padding: 80px 5%;
    text-align: center;
    background: var(--mint-tint);
}

.home-products .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.home-products .product-card {
    background: var(--white);
    border-radius: 12px;
    padding: 15px;
    transition: 0.3s;
    border: 1px solid #eee;
}
.home-products .product-card:hover {
    border-color: var(--golden-yellow);
    transform: translateY(-5px);
    box-shadow: 0 16px 30px rgba(34, 89, 2, 0.15);
}

.home-products .product-card h3 {
    font-size: 1rem;
    background: var(--green-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home-products .product-img {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
}
.home-products .product-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: 115%;
    object-fit: cover;
    transform: scale(1.15);
}

/* --- HOME TESTIMONIALS --- */
.home-testimonials {
    padding: 80px 5%;
    text-align: center;
    background: linear-gradient(180deg, #fdfbf7 0%, #f8f2e3 100%);
}

.home-testimonials .testimonial-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.home-testimonials .testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    width: 350px;
    box-shadow: 0 10px 30px rgba(34, 89, 2, 0.08);
    position: relative;
    border-top: 4px solid transparent;
    border-image: var(--gold-gradient);
    border-image-slice: 1;
}
.home-testimonials .testimonial-card p {
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--text-gray);
}
.home-testimonials .testimonial-card .stars {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
    font-size: 1.1rem;
}
.home-testimonials .testimonial-card .author {
    font-weight: 600;
    color: var(--dark-green);
    font-size: 0.9rem;
}

/* --- HOME FOOTER --- */
.home-footer {
    background: var(--green-gradient);
    color: rgba(255, 255, 255, 0.85);
    padding: 20px 8% 0;
    position: relative;
    overflow: hidden;
}
.home-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
}

.home-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.home-footer .footer-brand h2 {
    font-family: 'Playfair Display', serif;
    color: var(--golden-light);
    font-size: 1.7rem;
    margin-bottom: 6px;
}
.home-footer .footer-brand .tagline {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 14px;
}
.home-footer .footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 18px;
    max-width: 320px;
}

.home-footer .footer-social {
    display: flex;
    gap: 12px;
}
.home-footer .footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(183, 225, 118, 0.4);
    background: var(--mid-green);
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}
.home-footer .footer-social a:hover {
    background: var(--gold-gradient);
    color: var(--dark-green-2);
    border-color: transparent;
    transform: translateY(-3px);
}

.home-footer .footer-col h4 {
    font-family: 'Playfair Display', serif;
    color: var(--golden-light);
    font-size: 1.1rem;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 8px;
}
.home-footer .footer-col h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.home-footer .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.home-footer .footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.25s;
}
.home-footer .footer-col ul li a:hover {
    color: var(--golden-light);
    padding-left: 4px;
}

.home-footer .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 11px;
}
.home-footer .footer-contact li .icon {
    color: var(--golden-light);
    margin-top: 2px;
}

.home-footer .footer-newsletter {
    display: flex;
    margin-top: 5px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(183, 225, 118, 0.4);
}
.home-footer .footer-newsletter input {
    flex: 1;
    border: none;
    padding: 10px 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    outline: none;
}
.home-footer .footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.home-footer .footer-newsletter button {
    background: var(--gold-gradient);
    border: none;
    padding: 0 20px;
    font-weight: 600;
    color: var(--dark-green-2);
    cursor: pointer;
    transition: 0.3s;
}
.home-footer .footer-newsletter button:hover {
    filter: brightness(1.05);
}

.home-footer .footer-bottom {
    margin: 0 -10%;
    padding: 2px 3%;
    display: flex; 
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    background: var(--mid-green);
    color: rgba(255, 255, 255, 0.75);
}
.home-footer .footer-bottom .legal-links {
    display: flex;
    gap: 22px;
}
.home-footer .footer-bottom .legal-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
}
.home-footer .footer-bottom .legal-links a:hover {
    color: var(--golden-light);
}

/* ================================================================
   RESPONSIVE – scoped to home classes
   ================================================================ */

/* Tablet */
@media (max-width: 900px) {
    .home-navbar {
        padding: 14px 5%;
    }
    .home-navbar .nav-icons {
        gap: 14px;
        font-size: 1rem;
    }

    .home-hero .hero-content {
        margin-left: 0;
        padding: 0 4%;
        max-width: 100%;
    }
    .home-hero .hero-content h1 {
        font-size: 2.6rem;
    }

    .home-promise .promise-grid {
        gap: 25px;
    }
    .home-products .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .home-hero .hero-content h1 {
        font-size: 2.2rem;
    }

    .home-stats {
        flex-direction: column;
        gap: 40px;
    }
    .home-stats .stat-divider {
        display: none;
    }

    .section-header h2::before,
    .section-header h2::after {
        width: 40px;
    }
    .section-header h2::before {
        left: -50px;
    }
    .section-header h2::after {
        right: -50px;
    }

    .home-navbar .logo h2 {
        font-size: 1.3rem;
    }
    .home-navbar .logo p {
        font-size: 0.6rem;
    }

    .home-hero {
        min-height: 500px;
    }
    .home-hero .hero-content {
        text-align: left;
    }
    .home-hero .hero-tag {
        font-size: 0.75rem;
    }
    .home-hero .hero-badges {
        gap: 8px;
        margin: 16px 0;
    }
    .home-hero .hero-badge {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    .home-hero .hero-offer {
        padding: 10px 16px;
    }
    .home-hero .hero-offer .offer-pill {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    .home-hero .hero-offer .offer-text {
        font-size: 0.85rem;
    }
    .home-hero .hero-cta-row {
        flex-direction: column;
        width: 100%;
    }
    .btn-gold,
    .btn-green {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
    .home-hero .hero-product-img {
        display: none;
    }

    .home-promise,
    .home-products,
    .home-testimonials {
        padding: 50px 6%;
    }

    .section-header h2 {
        font-size: 1.8rem;
        padding: 0 20px;
    }
    .section-header p {
        font-size: 0.95rem;
    }

    .home-promise .promise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .home-promise .promise-card {
        padding: 25px 15px;
    }

    .home-products .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .home-products .product-img {
        height: 180px;
    }

    .home-testimonials .testimonial-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .home-testimonials .testimonial-card {
        width: 100%;
        max-width: 400px;
    }

    .home-footer {
        padding: 50px 6% 0;
    }
    .home-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 35px;
    }
    .home-footer .footer-brand p {
        max-width: 100%;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .home-hero .hero-content h1 {
        font-size: 1.7rem;
    }
    .home-hero .hero-tag {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
    .home-hero .hero-content p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
        padding: 0 10px;
    }
    .section-header h2::before,
    .section-header h2::after {
        display: none;
    }

    .home-products .product-grid {
        grid-template-columns: 1fr;
    }
    .home-products .product-img {
        height: 220px;
    }

    .home-stats .stat-text h4 {
        font-size: 1.4rem;
    }
    .home-stats .stat-text p {
        font-size: 0.75rem;
    }

    .home-footer .footer-bottom {
        text-align: center;
    }
    .home-footer .footer-bottom .legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

}


    .footer-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: left;
    }

    .footer-col ul li {
        text-align: left;
        margin-bottom: 8px;
    }

    .footer-col ul li a {
        display: block;
        text-align: left;
    }

    /* ================================================================
   EXTRA HOVER HIGHLIGHT OVERRIDES
   Ithai unga style.css kadaisila add pannunga.
   Original rules-ah touch pannama, indha block mattum
   overwrite pannum (same selector-ku last rule than win aagum).
   ================================================================ */

/* Nav links - clear golden highlight + underline on hover */
.home-navbar .nav-links a {
    transition: color 0.25s, border-bottom-color 0.25s;
    border-bottom: 2px solid transparent;
}
.home-navbar .nav-links a:hover {
    color: var(--golden-yellow) !important;
    border-bottom-color: var(--golden-yellow) !important;
}

/* Nav icons - brighter, bigger pop */
.home-navbar .nav-icons .icon-btn:hover {
    color: var(--golden-yellow) !important;
    transform: translateY(-3px) scale(1.15) !important;
}

/* Buttons - stronger contrast highlight instead of just darker green */
.btn-gold:hover {
    background: var(--gold-gradient) !important;
    color: var(--dark-green-2) !important;
    box-shadow: 0 10px 26px rgba(212, 169, 74, 0.55) !important;
}
.btn-green:hover {
    background: var(--golden-yellow) !important;
    color: var(--dark-green-2) !important;
    border-color: var(--golden-yellow) !important;
}

/* Promise cards - golden border glow instead of plain shadow */
.home-promise .promise-card:hover {
    border-color: var(--golden-yellow) !important;
    box-shadow: 0 14px 30px rgba(212, 169, 74, 0.35) !important;
}

/* Product cards - stronger golden pop */
.home-products .product-card:hover {
    border: 1px solid var(--golden-yellow) !important;
    box-shadow: 0 16px 30px rgba(212, 169, 74, 0.4) !important;
}
.home-products .product-card:hover h3 {
    background: var(--gold-gradient) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
}

/* Testimonial card - highlight border on hover */
.home-testimonials .testimonial-card {
    transition: transform 0.3s, box-shadow 0.3s;
}
.home-testimonials .testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(212, 169, 74, 0.35) !important;
}

/* Footer social icons - golden pop already exists, made stronger */
.home-footer .footer-social a:hover {
    background: var(--golden-yellow) !important;
    color: var(--dark-green-2) !important;
    transform: translateY(-4px) scale(1.1) !important;
    box-shadow: 0 8px 18px rgba(212, 169, 74, 0.5) !important;
}

/* Footer links - clear golden highlight + slide effect */
.home-footer .footer-col ul li a:hover {
    color: var(--golden-yellow) !important;
    padding-left: 6px !important;
    font-weight: 600;
}

/* Footer legal links */
.home-footer .footer-bottom .legal-links a:hover {
    color: var(--golden-yellow) !important;
    text-decoration: underline;
}

/* Newsletter button - brighter hover */
.home-footer .footer-newsletter button:hover {
    background: var(--golden-yellow) !important;
    filter: none !important;
}