/* CSS Variables - Eco-Friendly Color Palette */
:root {
    --primary-green: #32511d;
    --light-green: #649727;
    --eco-brown: #905b1a;
    --light-brown: #ddae8c;
    --earth-yellow: #efa038;
    --light-yellow: #f9efd4;
    --nature-blue: #3978b4;
    --light-blue: #6fbbd8;
    --forest-gray: #665d5c;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --black: #000000;
    --text-dark: #232e42;
    --text-light: #ffffff;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
    }
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--light-yellow) 100%);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

h1 {
    font-size: 2.55rem;
    background: linear-gradient(45deg, var(--primary-green), var(--eco-brown));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.65rem;
    color: var(--eco-brown);
}

h4 {
    font-size: 1.37rem;
}

h5 {
    font-size: 1.16rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.57rem;
    font-weight: bold;
    color: var(--primary-green);
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-green);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -9px;
    left: 50%;
    background: linear-gradient(45deg, var(--primary-green), var(--eco-brown));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--nature-blue) 50%, var(--earth-yellow) 100%);
    position: relative;
    padding-top: 121px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../FLO_images/hero-bg.webp') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    padding-top: 178px;
}

.hero-section h2 {
    font-size: 1.64rem;
    color: var(--light-yellow);
    margin-bottom: 1.57rem;
}

.hero-section p {
    font-size: 1.13rem;
    color: var(--white);
    margin-bottom: 2rem;
}

/* Sections */
.section {
    padding: 80px 0;
    position: relative;
}

.section:nth-child(even) {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.section:nth-child(odd) {
    background: linear-gradient(135deg, var(--light-yellow) 0%, var(--light-blue) 100%);
}

/* Cards */
.feature-card, .service-card, .content-card, .review-card, .case-study-card, 
.pricing-card, .team-member, .career-card, .info-card, .blog-card {
    background: var(--white);
    border-radius: 17px;
    padding: 2rem;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
}

.feature-card:hover, .service-card:hover, .content-card:hover, 
.review-card:hover, .case-study-card:hover, .pricing-card:hover,
.team-member:hover, .career-card:hover, .info-card:hover, .blog-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.feature-card i, .info-card i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    display: block;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.feature-item i {
    font-size: 2rem;
    color: var(--eco-brown);
    min-width: 60px;
}

/* Service Cards */
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-card ul li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li::before {
    content: '“';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.price {
    font-size: 1.60rem;
    font-weight: bold;
    color: var(--eco-brown);
    text-align: center;
    padding: 1rem;
    background: linear-gradient(45deg, var(--light-yellow), var(--light-green));
    border-radius: 10px;
    margin-top: 1rem;
}

/* Pricing Cards */
.pricing-card {
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border: 3px solid var(--primary-green);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.99rem;
    font-weight: bold;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.pricing-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.pricing-card .price {
    font-size: 2.56rem;
    color: var(--primary-green);
    margin: 1rem 0;
}

/* Team Members */
.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid var(--light-green);
}

/* Reviews */
.review-card {
    border-left: 4px solid var(--primary-green);
    font-style: italic;
}

.review-card h6 {
    font-style: normal;
    color: var(--eco-brown);
    margin-top: 1rem;
    text-align: right;
}

/* Case Studies */
.case-study-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* Process Steps */
.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-green), var(--eco-brown));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.58rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Timeline */
.timeline {
    /* position: relative; */
    padding: 2rem 0;
}

/* .timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-green), var(--eco-brown));
    transform: translateX(-50%);
} */

.timeline-item {
    /* position: relative; */
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    /* width: 45%; */
}

/* .timeline-item:nth-child(odd) {
    margin-left: 55%;
}

.timeline-item:nth-child(even) {
    margin-right: 55%;
} */

.timeline-item .year {
    /* position: absolute; */
    /* top: 50%; */
    /* transform: translateY(-50%); */
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-green), var(--eco-brown));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.13rem;
    margin-bottom: 1rem;
}

/* .timeline-item:nth-child(odd) .year {
    left: -40px;
}

.timeline-item:nth-child(even) .year {
    right: -40px;
} */

/* Career Cards */
.career-card span {
    display: inline-block;
    background: var(--light-green);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 1.04rem;
    margin-top: 1rem;
}

/* Blog Cards */
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.blog-card a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.blog-card a:hover {
    color: var(--eco-brown);
}

/* FAQ Accordion */
.accordion-item {
    border: 1px solid var(--light-gray);
    margin-bottom: 0.70rem;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    border: none;
    color: var(--text-dark);
    font-weight: 600;
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(32, 66, 12, 0.25);
}

.accordion-body {
    background: var(--white);
    color: var(--text-dark);
}

/* Gallery */
#gallery .col-lg-3 img,
#gallery .col-md-4 img,
#gallery .col-6 img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

#gallery .col-lg-3 img:hover,
#gallery .col-md-4 img:hover,
#gallery .col-6 img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.25rem rgba(37, 75, 22, 0.25);
}

.contact-info {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.72rem;
}

.contact-item i {
    font-size: 1.62rem;
    margin-right: 1rem;
    min-width: 30px;
}

.contact-item p {
    margin: 0;
    color: var(--white);
}

/* Buttons */
.btn {
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-green), var(--eco-brown));
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--eco-brown), var(--primary-green));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--forest-gray) 0%, var(--text-dark) 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 2rem;
}

.footer h4, .footer h5 {
    color: var(--light-yellow);
    margin-bottom: 1rem;
}

.footer p {
    color: var(--light-gray);
    margin-bottom: 0.56rem;
}

.policy-links {
    list-style: none;
    padding: 0;
}

.policy-links li {
    margin-bottom: 0.56rem;
}

.policy-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-links a:hover {
    color: var(--light-yellow);
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 120px 0 2rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.breadcrumbs img {
    max-height: 50px;
    width: auto;
}

/* Space Page */
#space {
    min-height: 70vh;
    background: linear-gradient(135deg, var(--light-yellow) 0%, var(--light-blue) 100%);
    margin-top: 120px;
    border-radius: 15px;
    border: 2px dashed var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#space::before {
    content: 'Space for Future Content';
    font-size: 2rem;
    color: var(--primary-green);
    font-weight: bold;
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Utilities */
.text-eco {
    color: var(--primary-green);
}

.bg-eco {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);
}

.border-eco {
    border-color: var(--primary-green);
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
