/* Landing Pages New Layout Styles */
.lp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Alternating Content Blocks */
.lp-content-block {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 4rem 0;
    padding: 2rem 0;
}

.lp-content-block.reverse {
    flex-direction: row-reverse;
}

.lp-content-text {
    flex: 1;
    padding: 2rem;
}

.lp-content-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lp-content-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Typography */
.lp-heading {
    color: #2a71a0;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.lp-subheading {
    color: #4799cf;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.lp-text {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* CTA Buttons */
.lp-cta-container {
    margin: 2rem 0;
    text-align: center;
}

.lp-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    border: none;
    cursor: pointer;
}

.lp-cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.25);
    background: linear-gradient(135deg, #ffb74d 0%, #ff7043 100%);
    color: white;
}

/* Feature Icons */
.lp-feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.lp-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(71, 153, 207, 0.05);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.lp-feature-item:hover {
    transform: translateX(5px);
}

.lp-feature-icon {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
    color: #4799cf;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-feature-text {
    flex: 1;
}

.lp-feature-text b {
    font-weight: bold;
    color: black;
}

/* Testimonials Section */
.lp-testimonials {
    background: linear-gradient(135deg, rgba(42, 113, 160, 0.05) 0%, rgba(71, 153, 207, 0.05) 100%);
    padding: 4rem;
    margin: 4rem 0;
}

.lp-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.lp-testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.lp-testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

.lp-testimonial-author {
    font-weight: 600;
    color: #2a71a0;
}

/* Trust Signals */
.lp-trust-signals {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.lp-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.lp-trust-badge img {
    height: 24px;
    width: auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .lp-content-block {
        flex-direction: column;
        gap: 2rem;
    }

    .lp-content-block.reverse {
        flex-direction: column;
    }

    .lp-content-text,
    .lp-content-visual {
        width: 100%;
        padding: 1rem;
    }

    .lp-heading {
        font-size: 2rem;
    }

    .lp-subheading {
        font-size: 1.5rem;
    }

    .lp-testimonial-grid {
        grid-template-columns: 1fr;
    }

    /* Sticky CTA for Mobile */
    .lp-sticky-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        display: flex;
        justify-content: center;
        gap: 1rem;
    }
}

/* Animation Classes */
.lp-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.lp-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.lp-text-center {
    text-align: center;
}

.lp-mt-2 {
    margin-top: 2rem;
}

.lp-mb-2 {
    margin-bottom: 2rem;
}

.lp-p-2 {
    padding: 2rem;
}

.lp-highlight-box {
    background: #f5faff;
    border-left: 4px solid #2a71a0;
    padding: 1.5rem 1rem;
    margin-bottom: 2rem;
    border-radius: 8px;
  }
  
  .lp-feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
  }
  
  .lp-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
  }
  
  .lp-feature-icon {
    font-size: 1.5rem;
    margin-right: 0.75rem;
    color: #4799cf;
  }

  /* Card style for the whole content block */
.lp-content-block.card-style {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    z-index: 1;
  }
  
  /* Background image for the whole block */
  .lp-content-block.card-style .lp-block-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    pointer-events: none;
  }
  
  /* Gradient overlay for the whole block */
  .lp-content-block.card-style .lp-block-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(42,113,160,0.5) 0%, rgba(71,153,207,0.5) 100%);
    opacity: 0.1; /* Adjust as needed or add utility classes */
    transition: opacity 0.3s;
    border-radius: 24px;
  }
  
  /* Make sure content is above overlays */
  .lp-content-block.card-style > .lp-content-text,
  .lp-content-block.card-style > .lp-content-visual {
    position: relative;
    z-index: 3;
  }
  
  /* Optional: Utility classes for overlay opacity */
  .lp-block-overlay-opacity-10 { opacity: 0.01 !important; }
  .lp-block-overlay-opacity-20 { opacity: 0.02 !important; }
  .lp-block-overlay-opacity-30 { opacity: 0.03 !important; }
  .lp-block-overlay-opacity-40 { opacity: 0.04 !important; }
  .lp-block-overlay-opacity-50 { opacity: 0.05 !important; }
  .lp-block-overlay-opacity-60 { opacity: 0.06 !important; }
  .lp-block-overlay-opacity-70 { opacity: 0.07 !important; }
  .lp-block-overlay-opacity-80 { opacity: 0.08 !important; }
  .lp-block-overlay-opacity-90 { opacity: 0.09 !important; }
  .lp-block-overlay-opacity-100 { opacity: 0.1 !important; }