@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap');
:root {
    --primary-green: #388e3c;
    --secondary-green: #43a047;
    --accent-green: #8bc34a;
    --light-green: #dcedc8;
    --earth-brown: #a1887f;
    --cream: #fffde7;
    --tropical-yellow: #ffe082;
    --tropical-orange: #ffb300;
    --tropical-pink: #ff8a80;
    --tropical-blue: #4fc3f7;
    --tropical-purple: #ba68c8;
    --bold-leaf: #009688;
    --bold-flower: #e91e63;
    --bold-sunset: #ff7043;
    --bold-sky: #00bcd4;
    --bold-lime: #cddc39;
    --bold-dark: #263238;
    --dark-text: #2c2c2c;
    --light-text: #666;
    --text-dark: #333;
    --text-light: #666;
    --background-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
}

/* Header */
.navbar {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text) !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}
.navbar-brand img{
    height: 50px;
}

.navbar-nav .nav-link {
    color: var(--dark-text) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
}

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--accent-green);
    transition: all 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 80px;
    /* Add a subtle pattern overlay */
    background-color: var(--bold-dark);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Adjust overlay for better contrast with new colors */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px; /* Increase max-width */
    margin: 0 auto;
    padding: 0 20px;
    /* Add a subtle background or border for definition */
    background-color: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 10px;
}

.hero-title {
    font-size: 4rem; /* Increase font size */
    font-weight: 800; /* Increase font weight */
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7); /* Enhance text shadow */
    animation: fadeInUp 1s ease-out;
    color: var(--bold-flower); /* Use a bold tropical color */
}

.hero-subtitle {
    font-size: 1.4rem; /* Increase font size */
    margin-bottom: 2.5rem; /* Increase margin */
    color: var(--bold-lime); /* Use a bold tropical color */
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-cta {
    display: inline-flex;
    gap: 25px; /* Increase gap */
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary-custom {
    /* Keep existing styles but ensure they work with new colors */
    background: linear-gradient(135deg, var(--bold-sunset), var(--bold-flower));
    border: none;
    padding: 18px 35px; /* Adjust padding */
    font-size: 1.2rem; /* Increase font size */
    font-weight: 700; /* Increase font weight */
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 165, 0, 0.4); /* Adjust shadow color */
}

.btn-primary-custom:hover {
    transform: translateY(-4px); /* Adjust hover effect */
    box-shadow: 0 15px 30px rgba(255, 165, 0, 0.5); /* Adjust shadow color */
    color: white;
}

.btn-secondary-custom {
    /* Keep existing styles but ensure they work with new colors */
    background: transparent;
    border: 2px solid var(--bold-lime); /* Use a bold tropical color for border */
    padding: 18px 35px; /* Adjust padding */
    font-size: 1.2rem; /* Increase font size */
    font-weight: 700; /* Increase font weight */
    border-radius: 50px;
    color: var(--bold-lime); /* Use a bold tropical color for text */
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background: var(--bold-lime); /* Use a bold tropical color for background */
    color: var(--bold-dark); /* Use a bold tropical color for text */
    border-color: var(--bold-lime); /* Ensure border color matches */
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-green);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-green), var(--secondary-green));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, var(--cream), #fff);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(107, 142, 35, 0.1);
}

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

.feature-icon {
    font-size: 3rem;
    color: var(--accent-green);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

/* Plants Section */
.plants-section {
    background: linear-gradient(135deg, #f8f9fa, var(--cream));
}

.plants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem;
    margin: 0 auto;
    max-width: 1400px;
}

.plant-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.plant-image {
    position: relative;
    height: 280px;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.plant-card:hover .plant-image {
    transform: scale(1.05);
}

.plant-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Badge Colors */
.plant-badge.premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.plant-badge.rare {
    background: linear-gradient(135deg, #9C27B0, #673AB7);
}

.plant-badge.exotic {
    background: linear-gradient(135deg, #FF4081, #E91E63);
}

.plant-badge.endemic {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
}

.plant-badge.limited {
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.plant-badge.special {
    background: linear-gradient(135deg, #FF5722, #F44336);
}

.plant-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

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

.btn-view-details {
    background: var(--white);
    color: var(--primary-green);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.btn-view-details:hover {
    background: var(--primary-green);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
}

.plant-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.plant-name {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.4;
}

.plant-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.6;
    flex-grow: 1;
}

.plant-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-top: auto;
}

.plant-price {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-green);
}

.plant-stock {
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 0.4rem 1rem;
    background: var(--background-light);
    border-radius: 15px;
    font-weight: 500;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 0 1rem;
}

.gallery-item {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-item:hover {
    transform: scale(1.02);
}

/* Order Section */
.order-section {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
}

.order-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.order-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    backdrop-filter: blur(10px);
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa, white);
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    margin: 1rem;
    position: relative;
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-green);
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--cream), #fff);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--primary-green);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--light-green);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.3rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    text-decoration:none!important;

}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    text-decoration:none!important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    }
    100% {
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .plants-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.2rem;
    }
    
    .gallery-item {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }

    .plants-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1rem;
        padding: 0.5rem;
    }

    .plant-image {
        height: 220px;
    }

    .plant-info {
        padding: 1.2rem;
    }

    .plant-name {
        font-size: 1.1rem;
    }

    .plant-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .plant-meta {
        padding-top: 0.8rem;
    }

    .plant-price {
        font-size: 1rem;
    }

    .plant-stock {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1rem;
    }
    
    .gallery-item {
        height: 240px;
    }
}

@media (max-width: 480px) {
    .plants-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .plant-image {
        height: 250px;
    }

    .plant-card {
        margin-bottom: 1rem;
    }

    .btn-view-details {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 2rem auto 0;
    }
    
    .gallery-item {
        height: 280px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.plant-card {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Loading State */
.plant-card.loading {
    position: relative;
    overflow: hidden;
}

.plant-card.loading::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: loading 1.5s infinite;
}

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

/* Plant Actions */
.plant-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 0 20px;
}

.btn-view-image,
.btn-call-price {
    background: white;
    color: var(--primary-green);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    width: 100%;
}

.btn-view-image:hover,
.btn-call-price:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}

.btn-call-price {
    background: var(--primary-green);
    color: white;
}

.btn-call-price:hover {
    background: var(--secondary-green);
}

/* Plant Lightbox */
.plant-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1100;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.plant-lightbox.active {
    display: flex;
    opacity: 1;
}

.plant-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plant-lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}

.plant-lightbox-caption {
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 500;
}

.plant-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plant-lightbox-close:hover {
    transform: scale(1.1);
}

.plant-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 20px;
    transition: all 0.3s ease;
    background: none;
    box-shadow: none;
}

.plant-lightbox-prev {
    left: 20px;
}

.plant-lightbox-next {
    right: 20px;
}

.plant-lightbox-nav:hover {
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .plant-lightbox-nav {
        font-size: 1.5rem;
        padding: 10px;
    }
    
    .plant-lightbox-caption {
        font-size: 1rem;
        padding: 15px;
    }
    
    .plant-lightbox-close {
        top: -30px;
        font-size: 1.5rem;
    }
}
.hero-section.alt-bold-tropical {
    background: linear-gradient(135deg, var(--bold-leaf), var(--bold-flower), var(--bold-sunset), var(--bold-lime));
}
.hero-content.alt-bold-tropical {
    color: var(--bold-dark);
}
.btn-primary-custom.alt-bold-tropical {
    background: linear-gradient(135deg, var(--bold-flower), var(--bold-sunset));
    color: var(--white);
}
.btn-secondary-custom.alt-bold-tropical {
    border-color: var(--bold-sky);
    color: var(--bold-sky);
}
.section-title.alt-bold-tropical {
    color: var(--bold-flower);
}
.section-subtitle.alt-bold-tropical {
    color: var(--bold-leaf);
}
.hero-section.alt-tropical {
    background: linear-gradient(135deg, var(--tropical-yellow), var(--tropical-blue), var(--tropical-pink), var(--tropical-green));
}
.hero-content.alt-tropical {
    color: var(--tropical-purple);
}
.btn-primary-custom.alt-tropical {
    background: linear-gradient(135deg, var(--tropical-orange), var(--tropical-pink));
    color: var(--white);
}
.btn-secondary-custom.alt-tropical {
    border-color: var(--tropical-blue);
    color: var(--tropical-blue);
}
.section-title.alt-tropical {
    color: var(--tropical-orange);
}
.section-subtitle.alt-tropical {
    color: var(--tropical-purple);
}

/* Modern Nursery UI/UX Additions */
.icon-circle {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  background: #e8f5e9;
  box-shadow: 0 2px 8px rgba(34,139,34,0.07);
}
.product-card-modern {
  border-radius: 1.5rem;
  transition: all 0.3s cubic-bezier(.4,2,.3,1);
}
.product-card-modern:hover {
  box-shadow: 0 8px 32px rgba(34,139,34,0.14);
  transform: translateY(-6px) scale(1.03);
}
.product-img-modern {
  transition: transform 0.4s cubic-bezier(.4,2,.3,1);
}
.product-card-modern:hover .product-img-modern {
  transform: scale(1.08);
}
section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.card {
  border-radius: 1.5rem;
}
.btn-success, .btn-success:focus {
  background: linear-gradient(90deg, #43a047 0%, #388e3c 100%) !important;
  border: none;
  color: #fff;
  box-shadow: 0 2px 8px rgba(67,160,71,0.08);
}
.btn-success:hover {
  background: linear-gradient(90deg, #388e3c 0%, #43a047 100%) !important;
  color: #fff;
}
.bg-light {
  background: #f8faf7 !important;
}
.bg-white {
  background: #fff !important;
}
body, .container, .card, .btn, h1, h2, h3, h4, h5, h6, p, span, a {
  font-family: 'Ubuntu', sans-serif !important;
}
@media (max-width: 768px) {
  .hero-modern h1 { font-size: 2.2rem; }
  .product-card-modern { margin-bottom: 1.5rem; }
  section { padding-top: 2rem; padding-bottom: 2rem; }
}

/* Service Features Modern */
.service-feature-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 20px rgba(67,160,71,0.08);
  padding: 2.5rem 1.5rem;
  transition: all 0.3s cubic-bezier(.4,2,.3,1);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #e9fbe5;
}
.service-feature-card:hover {
  box-shadow: 0 8px 32px rgba(34,139,34,0.14);
  transform: translateY(-6px) scale(1.03);
}
.service-feature-icon {
  width: 70px;
  height: 70px;
  background: #e9fbe5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #388e3c;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px rgba(34,139,34,0.07);
}
@media (max-width: 768px) {
  .service-feature-card {
    padding: 1.5rem 0.7rem;
  }
  .service-feature-icon {
    width: 54px;
    height: 54px;
    font-size: 1.5rem;
  }
}