/* Color Variables */
:root {
    --cream: #f9f6f0;
    --sage: #8a9a7b;
    --dark-sage: #5d6e52;
    --burgundy: #7a4a3a;
    --gold: #c9a961;
    --navy: #2c3e4f;
    --light-gold: #e8d5a8;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
        

/* Base Styles */
body {
    font-family: 'Lato', sans-serif;
    background-color: var(--cream);
    color: var(--navy);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--burgundy);
}

/* =================================== Navigation =================================== */
.navbar {
    background: linear-gradient(135deg, var(--dark-sage) 0%, var(--sage) 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--cream) !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    color: rgba(249, 246, 240, 0.9) !important;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
    transform: translateY(-2px);
}

/* =================================== Hero Sections =================================== */
.hero {
    background: linear-gradient(135deg, rgba(93, 110, 82, 0.95) 0%, rgba(138, 154, 123, 0.9) 100%), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f9f6f0" width="1200" height="600"/></svg>');
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M100 40 Q80 60 100 90 Q120 60 100 40 M100 90 Q75 100 60 130 Q85 110 100 90 M100 90 Q125 100 140 130 Q115 110 100 90 M100 90 L100 150 M85 145 L100 160 L115 145' stroke='%23c9a961' stroke-width='3' fill='none' opacity='0.2'/%3E%3Ccircle cx='100' cy='70' r='5' fill='%23c9a961' opacity='0.3'/%3E%3C/svg%3E") no-repeat;
    background-size: contain;
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M100 40 Q80 60 100 90 Q120 60 100 40 M100 90 Q75 100 60 130 Q85 110 100 90 M100 90 Q125 100 140 130 Q115 110 100 90' stroke='%23c9a961' stroke-width='2.5' fill='none' opacity='0.15'/%3E%3C/svg%3E") no-repeat;
    background-size: contain;
    opacity: 0.4;
    animation: float 25s ease-in-out infinite reverse;
}

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

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

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--cream);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}


/* =================================== Home Page Sections =================================== */
.features {
    padding: 5rem 0;
    background: white;
    position: relative;
    z-index: 10;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--sage) 0%, var(--dark-sage) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 6px 20px rgba(138, 154, 123, 0.3);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--burgundy);
}

.featured-flowers {
    padding: 5rem 0;
    background: var(--cream);
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--sage);
    max-width: 700px;
    margin: 0 auto;
}

.flower-card-home {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid var(--light-gold);
    height: 100%;
}

.flower-card-home:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.flower-image {
    height: 250px;
    background: linear-gradient(135deg, #e8d5a8 0%, #f9f6f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.flower-image i {
    font-size: 4rem;
    color: var(--sage);
    opacity: 0.5;
}

.flower-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--burgundy);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
}

.flower-content {
    padding: 1.5rem;
}

.flower-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.flower-content .botanical-name {
    font-style: italic;
    color: var(--sage);
    margin-bottom: 1rem;
}

.flower-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.flower-tag {
    background: var(--light-gold);
    color: var(--burgundy);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}
.before-after-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sage) 0%, var(--dark-sage) 100%);
}

.garden-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1.5s ease-in-out;
}

/* Placeholder styling if images don't load */
.garden-image[src=""],
.garden-image:not([src]) {
    background: linear-gradient(135deg, #e8d5a8 0%, #f9f6f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.garden-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext x='50' y='50' font-size='40' text-anchor='middle' dy='.3em' fill='%238a9a7b'%3E🌱%3C/text%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    opacity: 0.3;
}

.garden-before {
    z-index: 2;
    opacity: 1;
}

.garden-after {
    z-index: 1;
    opacity: 0;
}

/* When animated, fade to after image */
.before-after-container.reveal .garden-before {
    opacity: 0;
}

.before-after-container.reveal .garden-after {
    opacity: 1;
}

.before-after-label {
    position: absolute;
    top: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10;
    transition: opacity 0.5s ease;
}

.before-label {
    left: 20px;
    opacity: 1;
}

.after-label {
    right: 20px;
    opacity: 0;
}

.before-after-container.reveal .before-label {
    opacity: 0;
}

.before-after-container.reveal .after-label {
    opacity: 1;
}

/* Optional: Add hover effect for interactivity */
.before-after-container:hover {
    cursor: pointer;
}

/* Image placeholder text */
.image-placeholder-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--sage);
    z-index: 5;
    pointer-events: none;
    font-style: italic;
}

.image-placeholder-text i {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.about-image-placeholder {
    background: linear-gradient(135deg, var(--sage) 0%, var(--dark-sage) 100%);
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
        

/* =================================== About Page Sections =================================== */

.about-preview {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(138, 154, 123, 0.1) 0%, rgba(232, 213, 168, 0.2) 100%);
    position: relative;
    z-index: 10;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--gold);
}

.about-image-placeholder {
    background: linear-gradient(135deg, var(--sage) 0%, var(--dark-sage) 100%);
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.stat-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--gold);
    margin-top: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--burgundy);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    color: var(--sage);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* =================================== Newsletter Page Sections =================================== */

.newsletter {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--burgundy) 0%, #5a3228 100%);
    color: white;
    text-align: center;
}

.newsletter h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

.newsletter-input {
    padding: 1rem 1.5rem;
    border-radius: 50px 0 0 50px;
    border: none;
    font-size: 1.1rem;
}

.newsletter-btn {
    padding: 1rem 2rem;
    border-radius: 0 50px 50px 0;
    background: var(--gold);
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #d4ae6e;
}

/* =================================== Testimonials Page Sections =================================== */


.testimonials {
    padding: 5rem 0;
    background: white;
    position: relative;
    z-index: 10;
}

.testimonial-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

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

.testimonial-stars {
    color: var(--gold);
}

/* =================================== Story Section =================================== */
.story-section {
    padding: 5rem 0;
    background: white;
}

.story-card {
    background: var(--cream);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 3rem;
    border-left: 4px solid var(--gold);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.story-card h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.story-card .chapter-number {
    background: linear-gradient(135deg, var(--sage) 0%, var(--dark-sage) 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.story-card p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.story-card p:last-child {
    margin-bottom: 0;
}

.story-card .first-letter::first-letter {
    font-size: 3.5rem;
    font-weight: 600;
    float: left;
    line-height: 1;
    margin: 0.1rem 0.2rem 0 0;
    color: var(--burgundy);
    font-family: 'Playfair Display', serif;
}

/* =================================== Image Placeholders =================================== */
.image-placeholder {
    background: linear-gradient(135deg, #e8d5a8 0%, #f9f6f0 100%);
    border-radius: 12px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--gold);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    margin-bottom: 2rem;
}

.image-placeholder-content {
    text-align: center;
    color: var(--sage);
}

.image-placeholder-content i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* =================================== Hulk Lilies Section =================================== */
.hulk-lilies-section {
    background: linear-gradient(135deg, rgba(138, 154, 123, 0.1) 0%, rgba(232, 213, 168, 0.2) 100%);
    padding: 5rem 0;
}

.hulk-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4a7c2c 0%, #6b9c45 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    box-shadow: 0 6px 20px rgba(74, 124, 44, 0.3);
}

/* =================================== Values Section =================================== */
.values-section {
    padding: 5rem 0;
    background: white;
}

.value-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--cream);
    border-radius: 12px;
    height: 100%;
    transition: transform 0.3s ease;
    border: 2px solid var(--light-gold);
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--sage) 0%, var(--dark-sage) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 6px 20px rgba(138, 154, 123, 0.3);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* =================================== Quote Section =================================== */
.quote-section {
    background: linear-gradient(135deg, var(--burgundy) 0%, #5a3228 100%);
    padding: 5rem 0;
    color: white;
    text-align: center;
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
}

.quote-text {
    font-size: 2rem;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.quote-icon {
    font-size: 4rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

/* =================================== Flowers Landing Page Styles =================================== */


.intro-section {
    padding: 4rem 0;
    background: white;
}

.intro-card {
    background: var(--cream);
    border-radius: 12px;
    padding: 3rem;
    border-left: 4px solid var(--gold);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.intro-card p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--navy);
}

.flowers-grid {
    padding: 5rem 0;
    background: var(--cream);
}

.flower-feature-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid var(--light-gold);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.flower-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.flower-feature-image {
    height: 280px;
    background: linear-gradient(135deg, #e8d5a8 0%, #f9f6f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.flower-feature-image i {
    font-size: 5rem;
    color: var(--sage);
    opacity: 0.5;
}

.flower-description {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.flower-highlights {
    background: var(--cream);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.flower-highlights h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--burgundy);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.flower-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.flower-highlights li {
    padding: 0.25rem 0;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.flower-highlights li i {
    color: var(--sage);
    font-size: 0.8rem;
}

.btn-learn-more {
    width: 100%;
    background: linear-gradient(135deg, var(--sage) 0%, var(--dark-sage) 100%);
    border: none;
    color: white;
    padding: 0.75rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-learn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(93, 110, 82, 0.3);
    color: white;
}

.encouragement-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(138, 154, 123, 0.1) 0%, rgba(232, 213, 168, 0.2) 100%);
}

.encouragement-card {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--gold);
    text-align: center;
}

.encouragement-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold) 0%, #b8914f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: white;
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

/* =================================== CTA Section =================================== */
.cta-section {
    padding: 5rem 0;
    background: var(--cream);
    text-align: center;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--gold) 0%, #b8914f 100%);
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.6);
    background: linear-gradient(135deg, #d4ae6e 0%, #c9a961 100%);
    color: white;
}

.btn-outline-custom {
    border: 2px solid white;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
}

.btn-outline-custom:hover {
    background: white;
    color: var(--dark-sage);
    transform: translateY(-3px);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb-item a {
    color: var(--sage);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--burgundy);
}

.flower-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--light-gold);
}

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

.flower-image-container {
    height: 400px;
    background: linear-gradient(135deg, #e8d5a8 0%, #f9f6f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--gold);
}

.flower-image-placeholder {
    text-align: center;
    color: var(--sage);
    font-style: italic;
}

/* Info Pills */
.info-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.info-pill {
    background: linear-gradient(135deg, var(--sage) 0%, var(--dark-sage) 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

/* Quick Facts Grid */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.fact-card {
    background: white;
    border: 2px solid var(--gold);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.fact-card:hover {
    background: var(--cream);
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.fact-icon {
    font-size: 2rem;
    color: var(--sage);
    margin-bottom: 0.5rem;
}

.fact-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--burgundy);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.fact-value {
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 500;
}

/* Content Sections */
.content-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--gold);
}

.section-title {
    color: var(--burgundy);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--light-gold);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-icon {
    color: var(--sage);
    font-size: 1.5rem;
}

/* Steps/Timeline */
.step-timeline {
    position: relative;
    padding-left: 3rem;
}

.step-item {
    position: relative;
    padding-bottom: 2rem;
}

.step-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--sage) 0%, var(--dark-sage) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    border: 3px solid var(--cream);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.step-item:nth-child(1)::before {
    content: '1';
}

.step-item:nth-child(2)::before {
    content: '2';
}

.step-item:nth-child(3)::before {
    content: '3';
}

.step-item:nth-child(4)::before {
    content: '4';
}

.step-item:nth-child(5)::before {
    content: '5';
}

.step-item::after {
    content: '';
    position: absolute;
    left: -2.2rem;
    top: 40px;
    bottom: 0;
    width: 2px;
    background: var(--light-gold);
}

.step-item:last-child::after {
    display: none;
}

/* Pro Tip Box */
.pro-tip {
    background: linear-gradient(135deg, #fff9e6 0%, #fef4d9 100%);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.15);
}

.pro-tip-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #996600;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Table */
.table-botanical {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.table-botanical thead {
    background: linear-gradient(135deg, var(--sage) 0%, var(--dark-sage) 100%);
    color: white;
}

.table-botanical th {
    padding: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.table-botanical td {
    padding: 1rem;
    border-bottom: 1px solid var(--light-gold);
}

.table-botanical tbody tr:hover {
    background: var(--cream);
}

/* =================================== Footer =================================== */
footer {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2732 100%);
    color: var(--cream);
    padding: 3rem 0 1.5rem;
    border-top: 4px solid var(--gold);
}

footer h5 {
    color: var(--gold);
    margin-bottom: 1rem;
}

footer a {
    color: var(--cream);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

footer a:hover {
    opacity: 1;
    color: var(--gold);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(201, 169, 97, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

/* =================================== Animations =================================== */
/* .fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
} */

/* =================================== Responsive Design =================================== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .lead {
        font-size: 1.2rem;
    }

    .story-card {
        padding: 2rem;
    }

    .story-card h2 {
        font-size: 1.8rem;
    }

    .quote-text {
        font-size: 1.5rem;
    }

    .navbar-brand {
        font-size: 1.3rem;
    }

    .step-timeline {
        padding-left: 2.5rem;
    }

    .flower-image-container {
        height: 250px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .newsletter-input {
        border-radius: 50px;
        margin-bottom: 1rem;
    }

    .newsletter-btn {
        border-radius: 50px;
        width: 100%;
    }
}