:root {
    --primary-green: #2d5016;
    --soft-green: #4a7c2f;
    --light-green: #7fb069;
    --cream: #f8f4e8;
    --earth: #8b6f47;
    --dark: #1a1a1a;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
}

/* Minimal Bootstrap-compatible button base so 'btn btn-*' works alongside custom styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(248, 244, 232, 0.98);
    backdrop-filter: blur(15px);
    padding: 1.2rem 5%;
    z-index: 2000; /* raised to ensure nav sits above other content */
    box-shadow: 0 4px 30px rgba(45, 80, 22, 0.08);
    animation: slideDown 0.6s ease;
    border-bottom: 1px solid rgba(127, 176, 105, 0.1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 2px 10px rgba(45, 80, 22, 0.1);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--soft-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    animation: rotate 20s linear infinite;
    box-shadow: 0 4px 15px rgba(127, 176, 105, 0.3);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 1.1rem;
    align-items: center;
    flex-wrap: nowrap;
}

/* Responsive adjustments for Bootstrap collapse */
.navbar-toggler {
    border: none;
    padding: 0.35rem 0.5rem;
    z-index: 99999; /* bring toggler fully on top for reliable clicks */
    position: relative;
    background: transparent;
    pointer-events: auto;
    cursor: pointer;
}

.navbar-toggler-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-green), var(--soft-green));
}

.navbar-toggler-icon svg {
    display: block;
    margin: 0 6px;
    color: #fff;
}

/* When collapsed on small screens, make the menu background blend with nav */
.navbar-collapse {
    backdrop-filter: blur(8px);
}

@media (max-width: 991.98px) {
    nav {
        padding: 0.8rem 1rem;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }

    .navbar-collapse {
        background: rgba(248, 244, 232, 0.98);
        border-bottom: 1px solid rgba(127, 176, 105, 0.08);
    }

    .navbar-nav .nav-link {
        padding: 0.5rem 0.25rem;
        font-size: 1rem;
    }
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-green);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--light-green), var(--soft-green));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--soft-green);
}

.navbar-nav .nav-link {
    text-decoration: none;
    color: var(--primary-green);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.navbar-nav .nav-link.apple-exotic {
    white-space: nowrap;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--light-green), var(--soft-green));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: var(--soft-green);
}

.cart-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-green), var(--soft-green));
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(45, 80, 22, 0.2);
}

.cart-icon::after {
    display: none;
}

.cart-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(45, 80, 22, 0.28);
}
.cart-icon:hover::before {
    left: 100%;
}

.cart-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.35);
}

/* Hero Section */
.hero {
   
    min-height: 92vh;
    background: linear-gradient(135deg, #e8f5e9 0%, #f8f9fa 50%, var(--cream) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 70%;
    height: 150%;
    background: radial-gradient(circle, rgba(127, 176, 105, 0.08) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, var(--cream), transparent);
}

/* Trust Bar */
.trust-bar {
    background: white;
    border-top: 1px solid rgba(127, 176, 105, 0.15);
    border-bottom: 1px solid rgba(127, 176, 105, 0.15);
    padding: 2.5rem 5%;
    text-align: center;
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-item {
    padding: 0.5rem 0;
}

.trust-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-green);
    font-weight: 700;
}

.trust-label {
    color: #666;
    font-size: 0.95rem;
    margin-top: 0.4rem;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInLeft 0.8s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(127, 176, 105, 0.15), rgba(74, 124, 47, 0.15));
    color: var(--soft-green);
    padding: 0.6rem 1.8rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1.5px solid rgba(127, 176, 105, 0.3);
    animation: pulse 2s ease infinite;
}

.hero-badge::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--light-green);
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--light-green), var(--soft-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero p {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 550px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-primary,
.btn-secondary {
    padding: 1.1rem 2.8rem;
    border-radius: 35px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--soft-green));
    color: white;
    box-shadow: 0 12px 35px rgba(45, 80, 22, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(45, 80, 22, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-green);
    border: 2.5px solid var(--primary-green);
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.1);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.25);
}

.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.plant-card {
    background: white;
    border-radius: 35px;
    padding: 2.5rem;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(127, 176, 105, 0.1);
}

.plant-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(127, 176, 105, 0.08) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
    pointer-events: none;
}

.plant-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #c8e6c9, #a5d6a7, #81c784);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.05);
}

.plant-image::after {
    content: '🌿';
    animation: sway 3s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

@keyframes sway {

    0%,
    100% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

.plant-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.plant-card p {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.plant-card strong {
    font-size: 2rem;
    color: var(--soft-green);
    font-weight: 700;
}

/* Features Section */
.features {
    padding: 5rem 5%;
    background: white;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(127, 176, 105, 0.3), transparent);
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

/* Keep landing "Why Choose Us?" heading on one line for desktop hosting widths */
.features .section-header h2 {
    font-size: clamp(2.4rem, 4.2vw, 3.5rem);
    line-height: 1.15;
    white-space: nowrap;
}

.section-header p {
    font-size: 1.25rem;
    color: #666;
    font-weight: 400;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.feature-card {
    background: linear-gradient(135deg, #fafafa, var(--cream));
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(127, 176, 105, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(127, 176, 105, 0.08), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(45, 80, 22, 0.15);
    background: white;
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--soft-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.8rem;
    box-shadow: 0 10px 30px rgba(74, 124, 47, 0.25);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(74, 124, 47, 0.35);
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Products Section */
.products {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--cream) 0%, #f5f5f5 100%);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="%237fb069" opacity="0.1"/></svg>');
    opacity: 0.4;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.product-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(127, 176, 105, 0.1);
    position: relative;

    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(127, 176, 105, 0.03));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(45, 80, 22, 0.2);
}

.product-image {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, #a5d6a7, #81c784, #66bb6a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent);
}

.product-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: linear-gradient(135deg, var(--primary-green), var(--soft-green));
    color: white;
    padding: 0.6rem 1.3rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.product-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    color: var(--light-green);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 70px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(127, 176, 105, 0.15);
    margin-top: auto; /* important */
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
}

.add-to-cart {
    background: linear-gradient(135deg, var(--soft-green), var(--light-green));
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(74, 124, 47, 0.25);
    text-decoration: none;
    display: inline-block;
}

.add-to-cart:hover {
    background: linear-gradient(135deg, var(--primary-green), var(--soft-green));
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(74, 124, 47, 0.35);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-green), #2a4a14);
    color: white;
    padding: 5rem 5% 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="white" opacity="0.05"/></svg>');
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact .contact-icon {
    color: #ffffff;
}

.footer-contact .contact-details a,
.footer-contact .contact-details span {
    color: rgba(255, 255, 255, 0.95);
}

.footer-contact .contact-details a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.footer-bottom-content p {
    margin: 0;
    white-space: nowrap;
}

.developer-credit a {
    color: #ffffff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-wrap: wrap;
        gap: 6px;
    }

    .footer-bottom-content p {
        white-space: normal;
    }
}

/* Floating Support Buttons */
.support-fab {
    position: fixed !important;
    right: 20px !important;
    bottom: 20px !important;
    display: grid !important;
    gap: 10px !important;
    z-index: 9999 !important;
    align-items: end;
}

.support-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 14px !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18) !important;
    font-size: 13px !important;
}

.support-btn.whatsapp {
    background: #25D366;
}

.support-btn.call {
    background: #2d5016;
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
    margin-top: 50px;
    
}
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* legacy .nav-links hide removed — Bootstrap collapse controls visibility now */

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }

    .features .section-header h2 {
        white-space: normal;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Decorative Elements */
.leaf-decoration {
    position: fixed;
    font-size: 3rem;
    opacity: 0.08;
    animation: floatLeaf 15s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes floatLeaf {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(50px, -50px) rotate(90deg);
    }

    50% {
        transform: translate(0, -100px) rotate(180deg);
    }

    75% {
        transform: translate(-50px, -50px) rotate(270deg);
    }
}

.leaf-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.leaf-2 {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.leaf-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
}

/* Additional Premium Touches */
.product-card:hover .product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
}

.btn-primary::after,
.btn-secondary::after {
    content: '→';
    margin-left: 0.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-primary:hover::after,
.btn-secondary:hover::after {
    transform: translateX(5px);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--light-green);
    color: white;
}

/* ==================== PAGE STYLES ==================== */

/* Page Hero */
.page-hero {
    margin-top: 90px;
    background: linear-gradient(135deg, var(--primary-green), var(--soft-green));
    padding: 5rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.page-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Page Section */
.page-section {
    padding: 5rem 5%;
    background: var(--cream);
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Policy Pages */
.policy-intro {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.policy-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.last-updated {
    color: var(--soft-green);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.policy-section {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.policy-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-green);
}

.policy-subsection {
    margin-bottom: 2rem;
}

.policy-subsection h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--soft-green);
    margin-bottom: 1rem;
}

.policy-subsection h4 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 0.8rem;
}

.policy-subsection p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.policy-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.policy-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.policy-list li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: var(--light-green);
    font-size: 1.5rem;
}

.policy-list.highlight li::before {
    content: '✓';
    color: var(--soft-green);
}

.policy-note {
    background: rgba(127, 176, 105, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--light-green);
    margin: 1.5rem 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.policy-acknowledgment {
    background: linear-gradient(135deg, rgba(127, 176, 105, 0.1), rgba(74, 124, 47, 0.1));
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    margin-top: 3rem;
    border: 2px solid rgba(127, 176, 105, 0.3);
}

.policy-acknowledgment h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.policy-acknowledgment p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

/* Contact Page */
.contact-page {
    padding: 4rem 5%;
    background: var(--cream);
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.contact-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.contact-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(45, 80, 22, 0.15);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--soft-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.contact-details p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.8rem;
}

.contact-details strong {
    color: var(--primary-green);
    font-weight: 600;
}

.contact-details a {
    color: var(--soft-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-green);
}

.contact-note {
    background: rgba(127, 176, 105, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.note-icon {
    font-size: 1.3rem;
}

.hours-table {
    margin: 1.5rem 0;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.hours-row.closed {
    background: rgba(255, 0, 0, 0.05);
    color: #d32f2f;
}

.hours-row .day {
    font-weight: 600;
    color: var(--primary-green);
}

.hours-row .time {
    color: #555;
}

/* Contact Services */
.contact-services {
    margin: 4rem 0;
}

.contact-services h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 0.8rem;
}

.service-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Quick Contact Form */
.quick-contact-section {
    margin: 4rem 0;
}

.quick-contact-box {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

.quick-contact-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    text-align: center;
}

.quick-contact-box>p {
    text-align: center;
    color: #666;
    margin-bottom: 2.5rem;
}

.contact-form {
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--light-green);
    box-shadow: 0 0 0 3px rgba(127, 176, 105, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact FAQ */
.contact-faq {
    margin: 4rem 0;
}

.contact-faq h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Social Connect */
.social-connect {
    text-align: center;
    margin: 4rem 0;
}

.social-connect h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.social-connect p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon {
    background: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    color: var(--primary-green);
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(45, 80, 22, 0.2);
    background: var(--primary-green);
    color: white;
}

/* About Page Specific */
.content-block {
    margin-bottom: 5rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-block.reverse .content-grid {
    direction: rtl;
}

.content-block.reverse .content-text {
    direction: ltr;
}

.content-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.content-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #c8e6c9, #a5d6a7);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Values Section */
.values-section {
    margin: 5rem 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    max-width: 800px;
    margin: -1rem auto 3rem;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(45, 80, 22, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--soft-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(74, 124, 47, 0.25);
}

.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Offerings */
.offerings-section {
    margin: 5rem 0;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.offering-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.offering-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.15);
}

.offering-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.offering-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 0.8rem;
}

.offering-item p {
    color: #666;
    line-height: 1.6;
}

/* Serve Section */
.serve-section {
    margin: 5rem 0;
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.serve-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.serve-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.15);
}

.serve-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(127, 176, 105, 0.2);
    margin-bottom: 1rem;
}

.serve-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.serve-card p {
    color: #666;
    line-height: 1.6;
}

/* Why Choose */
.why-choose {
    margin: 5rem 0;
    background: linear-gradient(135deg, rgba(127, 176, 105, 0.1), rgba(74, 124, 47, 0.1));
    padding: 4rem 3rem;
    border-radius: 30px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.why-item {
    text-align: center;
}

.why-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--soft-green);
    margin-bottom: 0.5rem;
}

.why-item p {
    font-size: 1.1rem;
    color: var(--primary-green);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-green), var(--soft-green));
    padding: 4rem 3rem;
    border-radius: 30px;
    margin: 5rem 0;
    color: white;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-green);
}

.cta-buttons .btn-primary:hover {
    background: var(--cream);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary-green);
}

/* Refund Policy Specific Styles */
.guarantee-section {
    background: linear-gradient(135deg, rgba(127, 176, 105, 0.05), rgba(74, 124, 47, 0.05));
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.guarantee-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--soft-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 1rem;
}

.guarantee-card h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 0.8rem;
}

.guarantee-card p {
    color: #666;
    font-size: 0.95rem;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.reason-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.reason-card.valid {
    border-color: rgba(76, 175, 80, 0.3);
    background: rgba(76, 175, 80, 0.03);
}

.reason-card.invalid {
    border-color: rgba(244, 67, 54, 0.3);
    background: rgba(244, 67, 54, 0.03);
}

.reason-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.reason-card.valid .reason-icon {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.reason-card.invalid .reason-icon {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
}

.reason-card h4 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 0.8rem;
}

.reason-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.timeline-section {
    margin: 3rem 0;
}

.timeline-step {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    border-left: 5px solid var(--light-green);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.timeline-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--soft-green), var(--light-green));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.timeline-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.timeline-step p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-note {
    background: rgba(127, 176, 105, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--soft-green);
    margin-top: 1rem;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.step-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.step-number {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.step-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 2rem 0;
}

.solution-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.solution-card.featured {
    border: 3px solid var(--light-green);
    background: linear-gradient(135deg, rgba(127, 176, 105, 0.05), rgba(74, 124, 47, 0.05));
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.15);
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.solution-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.solution-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--soft-green);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(74, 124, 47, 0.3);
}

.exclusions-box {
    background: rgba(244, 67, 54, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #f44336;
    margin-bottom: 2rem;
}

.exclusions-box h3 {
    color: #d32f2f;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.exclusions-box p {
    color: #555;
    line-height: 1.8;
}

.tips-section {
    background: linear-gradient(135deg, rgba(127, 176, 105, 0.05), rgba(74, 124, 47, 0.05));
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tip-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tip-card h3 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 0.8rem;
}

.tip-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-method {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-method h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.contact-method p {
    color: #666;
    margin-bottom: 0.5rem;
}

.timing {
    color: var(--soft-green);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
}

.contact-box {
    background: rgba(127, 176, 105, 0.1);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    margin: 2rem 0;
}

.contact-box p {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.contact-box a {
    color: var(--soft-green);
    text-decoration: none;
    font-weight: 600;
}

.contact-box a:hover {
    color: var(--primary-green);
}

/* Privacy Policy Specific */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.use-case {
    background: rgba(127, 176, 105, 0.05);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(127, 176, 105, 0.2);
}

.use-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.use-case h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 0.8rem;
}

.use-case p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.cookie-type {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--light-green);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cookie-type h4 {
    color: var(--primary-green);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.cookie-type p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.right-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.right-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.right-item h3 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 0.8rem;
}

.right-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Design for Pages */
@media (max-width: 968px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-block.reverse .content-grid {
        direction: ltr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.header-logo {
    max-width: 240px;
    display: block;
}

.navbar-brand.logo {
    margin-right: 1.5rem;
    padding-right: 1.5rem;
}

.navbar-brand.logo img {
    display: block;
}

.footer-logo img {
    height: 150px;
    margin-bottom: 12px;
    display: block;
    background: #ffffff;
    padding: 5px;
    border-radius: 8px;
}

/* Final polish: trust bar + hero card stability */
.trust-bar {
    background: #fff;
    padding: 2.2rem 5%;
}

.trust-container {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.trust-item {
    background: #f7f9f4;
    border: 1px solid rgba(127, 176, 105, 0.2);
    border-radius: 16px;
    padding: 1.2rem 1rem;
}

.trust-number {
    font-size: 1.7rem;
}

.hero-image .plant-card {
    max-width: 520px;
    width: 100%;
}

.plant-image {
    height: 240px;
    min-height: 240px;
}

.plant-image.has-photo::after {
    content: none;
}

.hero-card-footer {
    margin-top: 0.4rem;
}

@media (max-width: 991.98px) {
    .hero-image .plant-card {
        max-width: 100%;
    }
    .plant-image {
        height: 220px;
        min-height: 220px;
    }
}

/* Hero product image override */
.plant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plant-image {
    min-height: 300px;
}

.hero-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.hero-add-cart {
    position: relative;
    z-index: 2;
}

.plant-image.has-photo::after {
    content: none;
}
