/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8fcf8; /* Very light green/off-white */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #212529; /* Darker text for headings */
}

a {
    text-decoration: none;
    color: #28a745; /* Green for links */
}

a:hover {
    color: #218838; /* Darker green on hover */
}

.btn {
    text-decoration: none !important; /* Remove underline from buttons */
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.btn-outline-light {
    color: #fff;
    border-color: #fff;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: #28a745;
}

.btn-outline-success {
    color: #28a745;
    border-color: #28a745;
}

.btn-outline-success:hover {
    background-color: #28a745;
    color: #fff;
}

.bg-light-green {
    background-color: #e6ffe6; /* Lightest green for section backgrounds */
}

.text-success {
    color: #28a745 !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(40, 167, 69, 0.7), rgba(40, 167, 69, 0.7)), url(photos/pics/flower-field-bg.jpg) no-repeat center center/cover;
    color: #fff;
    padding: 80px 0;
    display: flex;
    align-items: center;
}

.hero-content {
    padding-left: 5%;
    z-index: 10;
}

.hero-main-image {
    max-width: 90%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: rotate(3deg); /* Creative tilt */
    position: relative;
    right: -20px; /* Asymmetric positioning */
}

.hero-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* White logo on dark background */
}

.hero-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.hero-nav ul {
    padding: 0;
    margin: 0;
}

.hero-nav li a {
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.hero-nav li a:hover {
    color: #a7f0ba !important; /* Lighter green on hover */
}

@media (max-width: 767.98px) {
    .hero-section {
        text-align: center;
        padding: 40px 0;
    }
    .hero-content {
        padding-left: 15px; /* Reset padding for mobile */
        padding-right: 15px;
    }
    .hero-main-image {
        transform: none;
        right: 0;
        margin-top: 30px;
    }
    .hero-nav {
        display: none !important;
    }
    .hero-logo {
        display: block !important; /* Show logo in content for mobile */
        text-align: center;
    }
}

/* About Section */
.about-block {
    border: 1px solid #d4edda; /* Light green border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
}

/* Features Section */
.features-grid .feature-item {
    background-color: #fff;
    border-color: #d4edda;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%; /* Ensure equal height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.features-grid:hover .feature-item:not(:hover) {
    opacity: 0.5; /* Dim others on hover */
    filter: grayscale(70%);
}

.features-grid .feature-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #28a745;
}

/* Pricing Section */
.pricing-plan {
    border-radius: 1rem;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.pricing-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pricing-plan .card-title {
    font-size: 1.8rem;
}

.pricing-plan .price-value {
    font-size: 3rem;
}

.pricing-plan ul li i {
    font-size: 1.2rem;
}

.btn-group .btn {
    border-radius: 0.5rem;
}

.btn-group .btn.active {
    background-color: #28a745;
    color: #fff;
}

/* Stats Section */
.stat-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #28a745;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
}

@media (max-width: 767.98px) {
    .stat-circle {
        width: 120px;
        height: 120px;
    }
    .stat-number {
        font-size: 2rem;
    }
    .stat-label {
        font-size: 0.9rem;
    }
}

/* Calculator Section */
.calculator-section .card {
    border-radius: 1rem;
}

.form-range::-webkit-slider-thumb {
    background-color: #28a745;
}

.form-range::-moz-range-thumb {
    background-color: #28a745;
}

/* Testimonials Section */
.testimonial-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #28a745;
}

/* FAQ Section */
.faq-section .card {
    border-radius: 1rem;
}

.faq-step {
    transition: opacity 0.3s ease;
}

.faq-qa-item h4 {
    font-size: 1.25rem;
}

.faq-qa-item p {
    color: #555;
}

/* Order Form Modal */
#flowerOrderForm .form-control.is-invalid,
#flowerOrderForm .form-select.is-invalid {
    border-color: #dc3545;
}

#flowerOrderForm .invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

#flowerOrderForm .form-control:invalid:not(:placeholder-shown),
#flowerOrderForm .form-select:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

#flowerOrderForm .form-control:valid,
#flowerOrderForm .form-select:valid {
    border-color: #28a745;
}

/* Footer Section */
.footer-section {
    background-color: #1a1a1a; /* Darker background for footer */
    padding: 30px 0;
}

.footer-logo img {
    max-height: 60px;
    filter: brightness(0) invert(1); /* White logo */
}

.footer-links a {
    font-size: 0.9rem;
    margin: 0 10px;
    color: #bbb;
}

.footer-links a:hover {
    color: #fff;
}

/* Cookie Banner */
.cookie-banner {
    z-index: 1050;
    background-color: #333 !important;
    border-top: 1px solid #555;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-banner a {
    color: #66cdaa !important;
}

.cookie-banner .btn {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
}

/* Cookie Modal */
#cookieSettingsModal .modal-content {
    border-radius: 1rem;
}

#cookieSettingsModal .modal-header {
    background-color: #28a745 !important;
    color: #fff;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

#cookieSettingsModal .btn-close-white {
    filter: invert(1);
}
/* Styles for content within .dataClauseFrame */
.dataClauseFrame {
    padding-top: 2rem; /* Top padding for the content frame */
    padding-bottom: 2rem; /* Bottom padding for the content frame */
    padding-left: 1.5rem; /* Left padding for the content frame */
    padding-right: 1.5rem; /* Right padding for the content frame */
    margin-bottom: 2rem; /* Margin below the content frame */
    background-color: #ffffff; /* White background for content */
    border-radius: 0.75rem; /* Slightly rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Subtle shadow */
}

@media (min-width: 768px) {
    .dataClauseFrame {
        padding-left: 3rem; /* More padding on larger screens */
        padding-right: 3rem; /* More padding on larger screens */
    }
}

.dataClauseFrame h1 {
    font-size: 2.25rem; /* Moderate size for H1 heading */
    margin-bottom: 1.5rem; /* Space below H1 */
    color: #212529; /* Darker text color */
    line-height: 1.2; /* Tighter line height for headings */
}

.dataClauseFrame h2 {
    font-size: 1.8rem; /* Moderate size for H2 heading */
    margin-top: 2rem; /* Space above H2 */
    margin-bottom: 1.2rem; /* Space below H2 */
    color: #212529;
    line-height: 1.3;
}

.dataClauseFrame h3 {
    font-size: 1.5rem; /* Moderate size for H3 heading */
    margin-top: 1.8rem; /* Space above H3 */
    margin-bottom: 1rem; /* Space below H3 */
    color: #212529;
    line-height: 1.4;
}

.dataClauseFrame h4 {
    font-size: 1.25rem; /* Moderate size for H4 heading */
    margin-top: 1.5rem; /* Space above H4 */
    margin-bottom: 0.8rem; /* Space below H4 */
    color: #212529;
    line-height: 1.5;
}

.dataClauseFrame h5 {
    font-size: 1.1rem; /* Moderate size for H5 heading */
    margin-top: 1.2rem; /* Space above H5 */
    margin-bottom: 0.6rem; /* Space below H5 */
    color: #212529;
    line-height: 1.5;
}

.dataClauseFrame p {
    font-size: 1rem; /* Standard paragraph font size */
    line-height: 1.7; /* Increased line height for readability */
    margin-bottom: 1rem; /* Space below paragraphs */
    color: #495057; /* Slightly lighter text color for body */
}

.dataClauseFrame ul {
    list-style-type: disc; /* Default disc bullet points */
    padding-left: 1.5rem; /* Indentation for list items */
    margin-bottom: 1rem; /* Space below the list */
    color: #495057;
}

.dataClauseFrame ol {
    list-style-type: decimal; /* Default decimal numbering */
    padding-left: 1.5rem; /* Indentation for ordered list items */
    margin-bottom: 1rem; /* Space below the ordered list */
    color: #495057;
}

.dataClauseFrame li {
    font-size: 1rem; /* Standard list item font size */
    line-height: 1.6; /* Line height for list items */
    margin-bottom: 0.5rem; /* Space between list items */
}


.hero-section h1{
    color: #fff !important;
}

.hero-logo, .footer-logo{
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}


.hero-logo h2, .footer-logo h2{
    color: #fff !important;
    font-size: clamp(18px,2.5vw,22px) !important;
    margin: 0;
}

.hero-buttons{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

@media(max-width: 480px){
    .hero-buttons{
       justify-content: center;
    }
}

.top-header{
    background-color: #1a1a1a;
    padding: 20px 0;
}

.hero-nav ul{
    display: flex !important;
    justify-content: space-around;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}


@media(max-width: 991px){
    .hero-nav{
       margin-top: 10px;
       justify-content: center;
    }
}

#cookie-banner {
    flex-wrap: wrap;
}

#cookie-banner button{
    margin-top: 10px;
}