/* Landing Page Styles */

/* Reset and Base Styles */
.landing-page {
    font-family: inherit;
    line-height: 1.6;
}

/* Hero Section */
.landing-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
}

.landing-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.landing-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}

.landing-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.95;
}

.landing-hero-cta {
    margin-bottom: 3rem;
}

.landing-cta-primary {
    background: linear-gradient(135deg, #bdd653, #a3c93a);
    color: #273039;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(189, 214, 83, 0.3);
}

.landing-cta-primary:hover {
    background: linear-gradient(135deg, #a8c242, #8eb32f);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(189, 214, 83, 0.4);
    color: #273039;
    text-decoration: none;
}

.landing-cta-primary i {
    transition: transform 0.3s ease;
}

.landing-cta-primary:hover i {
    transform: translateX(3px);
}

/* Trust Elements */
.landing-trust-elements {
    margin-top: 3rem;
}

.trust-label {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-logo {
    height: 40px;
    width: auto;
    opacity: 0.7;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.trust-logo:hover {
    opacity: 1;
}

/* Hero Visual */
.landing-hero-visual {
    margin-top: 3rem;
    text-align: center;
}

.landing-hero-visual img {
    max-width: 600px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Sticky CTA */
.landing-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;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.landing-sticky-cta.show {
    transform: translateY(0);
}

.landing-sticky-cta .btn {
    background: linear-gradient(135deg, #bdd653, #a3c93a);
    color: #273039;
    border: none;
    width: 100%;
    padding: 1rem;
    font-weight: 600;
    border-radius: 50px;
}

/* Section Styles */
.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #112739;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Problem Solution Section */
.landing-problem-solution {
    background: white;
}

.problem-content,
.solution-content {
    padding: 2rem;
}

.problem-points {
    margin-top: 2rem;
}

.problem-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 10px;
}

.problem-point i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.solution-transformation {
    margin-top: 2rem;
}

.transformation-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 10px;
    font-weight: 600;
    color: #28a745;
}

.transformation-item i {
    font-size: 1.5rem;
    color: #bdd653;
}

/* Benefits Section */
.landing-benefits {
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.benefit-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #bdd653, #a3c93a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #112739;
}

.benefit-description {
    color: #666;
    line-height: 1.6;
}

/* Before After Section */
.before-after-section {
    margin-top: 4rem;
}

.before-card,
.after-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
}

.before-card {
    border-left: 4px solid #dc3545;
}

.after-card {
    border-left: 4px solid #28a745;
}

.before-title,
.after-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.before-title {
    color: #dc3545;
}

.after-title {
    color: #28a745;
}

.before-list,
.after-list {
    list-style: none;
    padding: 0;
}

.before-list li,
.after-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

/* Social Proof Section */
.landing-social-proof {
    background: white;
}

.star-rating {
    margin-bottom: 3rem;
}

.star-rating i {
    color: #ffc107;
    font-size: 1.5rem;
    margin-right: 0.25rem;
}

.rating-text {
    margin-left: 1rem;
    font-weight: 600;
    color: #666;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-stars {
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: #ffc107;
    font-size: 1rem;
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #112739;
}

.author-title,
.author-company {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.25rem;
}

/* Case Study Snippet */
.case-study-snippet {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.case-study-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #112739;
}

.case-study-result {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Process Section */
.landing-process {
    background: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.process-step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #bdd653;
    color: #273039;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: white;
    border: 3px solid #bdd653;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #bdd653;
    font-size: 2.5rem;
    position: relative;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #112739;
}

.step-description {
    color: #666;
    line-height: 1.6;
}

/* Offer Section */
.landing-offer {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
}

.offer-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.offer-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.offer-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.offer-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.offer-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.offer-feature i {
    color: #bdd653;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.offer-urgency {
    margin-bottom: 2rem;
}

.urgency-text {
    background: rgba(255, 107, 107, 0.9);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Secondary CTA Section */
.landing-secondary-cta {
    background: #f8f9fa;
    text-align: center;
}

.secondary-cta-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.cta-stat {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #bdd653;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-weight: 600;
}

/* FAQ Section */
.landing-faq {
    background: white;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #112739;
    flex: 1;
}

.faq-question i {
    color: #666;
    transition: transform 0.3s ease;
}

.faq-question i.rotated {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.show {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Final Push Section */
.landing-final-push {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
}

.final-push-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.final-push-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.final-push-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.final-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.final-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.final-benefit i {
    color: #bdd653;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.guarantee-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem auto;
    max-width: 400px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.guarantee-badge i {
    font-size: 3rem;
    color: #bdd653;
    flex-shrink: 0;
}

.guarantee-text h4 {
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 600;
}

.guarantee-text p {
    margin: 0;
    opacity: 0.9;
}

.final-cta {
    margin-top: 2rem;
}

.btn-final {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
    margin-bottom: 1rem;
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Contact Section */
.landing-contact {
    background: #f8f9fa;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.landing-contact-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #bdd653;
    box-shadow: 0 0 0 3px rgba(189, 214, 83, 0.1);
}

/* Button Styles */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #bdd653, #a3c93a);
    color: #273039;
    box-shadow: 0 4px 15px rgba(189, 214, 83, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #a8c242, #8eb32f);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(189, 214, 83, 0.4);
    color: #273039;
    text-decoration: none;
}

.btn-outline-primary {
    background: transparent;
    color: #112739;
    border: 2px solid #112739;
}

.btn-outline-primary:hover {
    background: #112739;
    color: white;
    text-decoration: none;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .landing-hero-title {
        font-size: 2.5rem;
    }
    
    .landing-hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .offer-title,
    .final-push-title {
        font-size: 2rem;
    }
    
    .benefits-grid,
    .testimonials-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .trust-logos {
        gap: 1rem;
    }
    
    .guarantee-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-badge i {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 3rem 0;
    }
    
    .landing-hero-content {
        padding: 1rem;
    }
    
    .landing-contact-form {
        padding: 2rem;
    }
    
    .offer-features,
    .final-benefits {
        grid-template-columns: 1fr;
    }
    
    .secondary-cta-stats {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Background and Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 39, 57, 0.7);
    z-index: 1;
}

.bg-light {
    background-color: #f8f9fa !important;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-danger {
    color: #dc3545 !important;
}

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

.d-lg-none {
    display: none;
}

@media (max-width: 991.98px) {
    .d-lg-none {
        display: block;
    }
}

/* Custom Form Styling for Gravity Forms */
.gform_wrapper .gfield_label {
    font-weight: 600;
    color: #112739;
    margin-bottom: 0.5rem;
}

.gform_wrapper .ginput_container input,
.gform_wrapper .ginput_container textarea,
.gform_wrapper .ginput_container select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1rem;
    font-size: 1rem;
    width: 100%;
    transition: border-color 0.3s ease;
}

.gform_wrapper .ginput_container input:focus,
.gform_wrapper .ginput_container textarea:focus,
.gform_wrapper .ginput_container select:focus {
    outline: none;
    border-color: #bdd653;
    box-shadow: 0 0 0 3px rgba(189, 214, 83, 0.1);
}

.gform_wrapper .gform_button {
    background: linear-gradient(135deg, #bdd653, #a3c93a);
    color: #273039;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(189, 214, 83, 0.3);
}

.gform_wrapper .gform_button:hover {
    background: linear-gradient(135deg, #a8c242, #8eb32f);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(189, 214, 83, 0.4);
}
