/* leadboard.gr/css/style.css */

:root {
    --bs-primary-rgb: 13, 110, 253; /* Keeping Bootstrap primary for consistency but can be overridden */
    --leadboard-primary: #0062cc; /* A slightly more refined blue */
    --leadboard-primary-darker: #004c9e;
    --leadboard-secondary: #6c757d; /* Bootstrap secondary */
    --leadboard-light: #f8f9fa; /* Bootstrap light */
    --leadboard-dark: #1c1c1c; /* Near black for footer */
    --leadboard-text-dark: #212529; /* Main text color */
    --leadboard-text-light: #555b61; /* Lighter body text */
    --leadboard-accent: #ffc107; /* A happy yellow accent - use sparingly */
    --leadboard-bg-soft-blue: #e7f3ff; /* Soft blue background for sections */
    --leadboard-bg-white: #ffffff;
    --border-radius-default: 0.375rem; /* Bootstrap's default */
    --border-radius-lg: 0.75rem; /* Larger radius for cards */
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.75;
    color: var(--leadboard-text-light);
    background-color: var(--leadboard-bg-white); /* Default white background */
    font-weight: 400;
}

.imgStyle {
    width:-webkit-fill-available; 
    border-radius: 10px;
    max-width:100%;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--leadboard-text-dark);
    margin-bottom: 0.75rem;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); }

.navbar-brand img {
    max-height: 45px;
}
.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: var(--leadboard-bg-white) !important; /* Ensure navbar is white */
    border-bottom: 1px solid #eee;
}
.navbar .nav-link {
    font-weight: 600;
    color: var(--leadboard-text-dark);
    padding: 0.5rem 1rem;
}
.navbar .nav-link.active,
.navbar .nav-link:hover {
    color: var(--leadboard-primary);
}
.navbar .btn-primary { /* For navbar CTA */
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}


.btn {
    border-radius: var(--border-radius-default);
    padding: 0.65rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.25s ease-in-out;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.btn-lg {
    padding: 0.85rem 2rem;
    font-size: 1.05rem;
}
.btn-primary {
    background-color: var(--leadboard-primary);
    border-color: var(--leadboard-primary);
    color: #fff;
}
.btn-primary:hover {
    background-color: var(--leadboard-primary-darker);
    border-color: var(--leadboard-primary-darker);
}
.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}
.btn-outline-light:hover {
    background-color: #fff;
    color: var(--leadboard-primary);
    border-color: #fff;
}
.btn-outline-primary {
    color: var(--leadboard-primary);
    border-color: var(--leadboard-primary);
}
.btn-outline-primary:hover {
    background-color: var(--leadboard-primary);
    color: #fff;
}


/* Hero Section */
.hero-section {
    background: linear-gradient(45deg, var(--leadboard-primary) 0%, #007bff 100%); /* Modern blue gradient */
    color: white;
    padding: 5rem 0 6rem; /* More padding top */
    text-align: center;
    overflow: hidden; /* For potential shapes */
}
.hero-section h1 {
    color: white;
    font-weight: 700; /* Less extreme than 800 */
    margin-bottom: 1.5rem;
}
.hero-section .lead {
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

/* Section Styling */
.section-padding {
    padding: 80px 0;
}
.section-bg-soft {
    background-color: var(--leadboard-bg-soft-blue);
}
.section-bg-white {
    background-color: var(--leadboard-bg-white);
}

.section-title {
    margin-bottom: 4rem; /* Increased margin */
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}
.section-title::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px; /* Shorter line */
    height: 3px; /* Thinner line */
    background: var(--leadboard-primary);
    bottom: 0;
    left: calc(50% - 25px);
    border-radius: 2px;
}

/* Feature Cards */
.feature-icon-clean {
    font-size: 2.5rem; /* Clean icon size */
    color: var(--leadboard-primary);
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    /* background-color: var(--leadboard-bg-soft-blue); */ /* Removed background from icon itself */
    border-radius: var(--border-radius-lg); /* Rounded square */
}
.feature-card-minimal {
    border: none; /* No border */
    border-radius: var(--border-radius-lg);
    background-color: transparent; /* Make card background transparent for section background to show */
    padding: 1.5rem;
    transition: transform 0.3s ease;
    text-align: center; /* Center content */
}
.feature-card-minimal:hover {
    /* transform: translateY(-5px); */ /* Subtle hover */
}
.feature-card-minimal .card-title {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--leadboard-text-dark);
    margin-top: 0.5rem;
}
.feature-card-minimal p {
    font-size: 0.95rem;
    color: var(--leadboard-text-light);
}

/* Content Feature Sections (Image + Text) */
.content-feature-section .img-fluid {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.content-feature-section h3 {
    margin-bottom: 1rem;
    font-weight: 700;
}
.content-feature-section ul {
    padding-left: 0;
}
.content-feature-section ul li {
    padding-bottom: 0.5rem;
    display: flex;
    align-items: flex-start; /* Align icon with first line of text */
}
.content-feature-section ul li i {
    color: var(--leadboard-primary);
    margin-right: 0.75rem;
    font-size: 1.1rem; /* Slightly smaller check */
    margin-top: 0.25rem; /* Align with text */
}

/* Image Placeholders */
.img-placeholder-minimal {
    background-color: #e9f1f8; /* Lighter blue placeholder */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--leadboard-primary); /* Icon color */
    text-align: center;
    border-radius: var(--border-radius-lg);
    width: 100%;
    min-height: 280px; /* Ensure some height */
    font-size: 0.9rem;
}
.img-placeholder-minimal i {
    font-size: 3rem; /* Larger icon in placeholder */
    margin-bottom: 0.5rem;
}


/* Testimonials */
.testimonial-card {
    background-color: var(--leadboard-bg-white);
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.testimonial-card p.fst-italic {
    color: var(--leadboard-text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}
.testimonial-card h6 {
    color: var(--leadboard-text-dark);
    font-weight: 700;
}

/* Pricing Table */
.pricing-section {
    background-color: var(--leadboard-bg-soft-blue); /* Section background for pricing 
}
.pricing-card {
    border: 1px solid #dee2e6; /* Light border */
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease-in-out;
    background-color: var(--leadboard-bg-white);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.pricing-card:hover, .pricing-card.popular { /* Popular plan also gets hover effect by default */
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 76, 153, 0.15); /* Softer, more spread shadow */
    border-color: var(--leadboard-primary);
}
.pricing-card .card-header {
    background-color: transparent;
    border-bottom: 1px solid #eee;
    padding: 1.5rem;
    font-size: 1.25rem; /* Larger header text */
    font-weight: 700; /* Bolder header */
    color: var(--leadboard-text-dark);
}
.pricing-card.popular .card-header {
    background-color: var(--leadboard-primary);
    color: #fff;
    border-color: var(--leadboard-primary);
}
.pricing-card .card-body {
    padding: 2rem 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.pricing-card .price-tag {
    font-size: clamp(2.5rem, 6vw, 2rem); /* Responsive price */
    font-weight: 700;
    color: var(--leadboard-primary);
    margin-bottom: 0.25rem;
}
.pricing-card .price-tag .text-muted {
    font-size: 1rem;
    font-weight: 400;
    color: var(--leadboard-secondary) !important; /* Ensure this text is muted */
}
.pricing-card .price-subtext {
    font-size: 0.85rem;
    color: var(--leadboard-text-light);
    margin-bottom: 1.5rem;
    min-height: 40px; /* To align elements even if one package has no subtext */
}

.pricing-card ul {
    margin-top: 1rem;
    margin-bottom: 2rem;
    padding-left: 0;
    text-align: left; /* Align features left */
}
.pricing-card ul li {
    padding-bottom: 0.8rem;
    display: table-header-group;
    align-items: center;
    font-size: 0.95rem;
    color: var(--leadboard-text-light);
}
.pricing-card ul li i.bi-check-lg { /* Specific class for check */
    color: #20c997; /* A vibrant green for checks */
    margin-right: 0.75rem;
    font-size: 1.3rem;
}
.pricing-card ul li i.bi-x-lg { /* Specific class for X */
    color: #dc3545; /* Red for unavailable features */
    margin-right: 0.75rem;
    font-size: 1.3rem;
}
.pricing-card .btn {
    font-size: 1rem; /* Slightly larger button text */
    font-weight: 600;
}


/* CTA Section */
.cta-section {
    background-color: var(--leadboard-primary);
    color: #fff;
}
.cta-section h2 {
    color: #fff;
    font-weight: 700;
}
.cta-section .lead {
    color: rgba(255,255,255,0.85);
}


/* Footer */
.footer {
    background-color: var(--leadboard-dark);
    color: #a0a0a0; /* Lighter gray for better contrast on dark background */
    font-size: 0.9rem;
    padding-top: 3rem;
    padding-bottom: 1rem;
}
.footer h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
}
.footer p {
    margin-bottom: 0.6rem;
}
.footer a {
    color: #c0c0c0; /* Even lighter gray for links */
    text-decoration: none;
}
.footer a:hover {
    color: #ffffff; /* White on hover */
    text-decoration: underline !important;
}
.footer .list-inline-item a {
    color: #c0c0c0;
    font-size: 1.5rem; /* Larger social icons */
    margin: 0 0.5rem;
}
.footer .list-inline-item a:hover {
    color: #fff;
}
.footer hr {
    border-top: 1px solid #444;
}
.footer .bottom-text {
    font-size: 0.85rem;
    color: #888;
}

/* Contact Page Specific */
.contact-form .form-control {
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    border-radius: var(--border-radius-default);
    border: 1px solid #ced4da;
    font-size: 0.95rem;
}
.contact-form .form-control:focus {
    border-color: var(--leadboard-primary);
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.contact-info-item i {
    font-size: 1.5rem;
    color: var(--leadboard-primary);
    margin-right: 1rem;
    margin-top: 0.25rem;
}
.contact-info-item div strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--leadboard-text-dark);
}
.contact-info-item div a {
    color: var(--leadboard-text-light);
    text-decoration: none;
}
.contact-info-item div a:hover {
    color: var(--leadboard-primary);
    text-decoration: underline;
}