﻿/* Chrome Extension Page Styles */
:root {
    --chrome-primary: #1DA462;
    --chrome-secondary: #34A853;
    --chrome-light: #E8F5E9;
    --chrome-dark: #0D5A38;
}

/* Hero Section */
.chrome-hero {
    background: linear-gradient(135deg, rgba(13, 90, 56, 0.9) 0%, rgba(29, 164, 98, 0.85) 100%), no-repeat center center;
    background-size: cover;
    padding: 7rem 0 10rem;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: -76px;
}

    .chrome-hero .container {
        position: relative;
        z-index: 2;
    }

.chrome-badge {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 0.875rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1rem;
    backdrop-filter: blur(5px);
}

    .chrome-badge i {
        color: white;
    }

.chrome-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.chrome-hero p {
    font-size: 1.25rem;
    max-width: 650px;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.feature-badge {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-right: 0.75rem;
    margin-bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(5px);
}

    .feature-badge i {
        color: white;
        margin-right: 0.5rem;
    }

.chrome-hero-image {
    position: relative;
    margin-top: 2rem;
}

    .chrome-hero-image img {
        border-radius: 10px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
        transition: all 0.5s ease;
    }

    .chrome-hero-image:hover img {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

.chrome-hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

/* What Is Section */
.what-is-chrome {
    padding: 5rem 0;
}

.section-heading {
    margin-bottom: 3rem;
}

    .section-heading .subtitle {
        color: var(--chrome-primary);
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 0.75rem;
        display: block;
    }

    .section-heading h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .section-heading p {
        color: var(--text-secondary);
        font-size: 1.125rem;
    }

.what-is-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

    .what-is-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

.highlight-text {
    color: var(--chrome-primary);
    font-weight: 700;
}

.check-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

    .check-list li {
        padding-left: 2rem;
        position: relative;
        margin-bottom: 0.75rem;
    }

        .check-list li:before {
            content: "\F26C";
            font-family: "bootstrap-icons";
            position: absolute;
            left: 0;
            top: 0.2rem;
            color: var(--chrome-primary);
            font-weight: bold;
        }

/* Metrics Card */
.metrics-card {
    background: linear-gradient(135deg, var(--chrome-primary) 0%, var(--chrome-secondary) 100%);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(29, 164, 98, 0.2);
}

    .metrics-card h3 {
        color: white;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 1rem;
        margin-bottom: 2rem;
    }

.metric-item {
    text-align: center;
    padding: 0.5rem;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Benefits Section */
.benefits-section {
    background-color: var(--light-bg);
    padding: 5rem 0;
}

.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

.benefit-icon {
    width: 80px;
    height: 80px;
    background-color: var(--chrome-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background-color: var(--chrome-primary);
}

.benefit-icon i {
    font-size: 2.25rem;
    color: var(--chrome-primary);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon i {
    color: white;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    .pricing-card.popular {
        border: 2px solid var(--chrome-primary);
        transform: scale(1.03);
    }

        .pricing-card.popular:hover {
            transform: scale(1.03) translateY(-10px);
        }

.pricing-badge {
    position: absolute;
    top: 1.5rem;
    right: -30px;
    background: var(--chrome-primary);
    color: white;
    padding: 0.5rem 2rem;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--chrome-light);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--chrome-primary);
}

.pricing-price {
    text-align: center;
    padding: 2rem 1rem;
}

    .pricing-price .currency {
        font-size: 1.5rem;
        font-weight: 500;
        vertical-align: top;
        line-height: 1;
        margin-right: 0.25rem;
    }

    .pricing-price .amount {
        font-size: 3.5rem;
        font-weight: 700;
        line-height: 1;
    }

.pricing-features {
    padding: 0 1.5rem 2rem;
}

    .pricing-features ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .pricing-features li {
        padding: 0.75rem 0;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
    }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features li i {
            margin-right: 0.75rem;
        }

    .pricing-features .bi-check-circle-fill {
        color: var(--chrome-primary);
    }

    .pricing-features .bi-x-circle-fill {
        color: #dc3545;
    }

.pricing-card.disabled {
    opacity: 0.7;
}

    .pricing-card.disabled .pricing-badge {
        background-color: #6c757d;
    }

.pricing-action {
    padding: 0 1.5rem 2rem;
    text-align: center;
}

.chrome-btn {
    background-color: var(--chrome-primary);
    border-color: var(--chrome-primary);
    color: white;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .chrome-btn:hover {
        background-color: var(--chrome-dark);
        border-color: var(--chrome-dark);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(29, 164, 98, 0.3);
    }

.chrome-btn-outline {
    background-color: transparent;
    border: 2px solid var(--chrome-primary);
    color: var(--chrome-primary);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .chrome-btn-outline:hover {
        background-color: var(--chrome-primary);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(29, 164, 98, 0.3);
    }

/* Examples Section */
.examples-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.example-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

    .example-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.example-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--chrome-light);
    margin-right: 1rem;
    flex-shrink: 0;
}

    .example-icon i {
        font-size: 1.75rem;
        color: var(--chrome-primary);
    }

.example-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.example-link {
    display: inline-flex;
    align-items: center;
    color: var(--chrome-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .example-link:hover {
        color: var(--chrome-dark);
    }

    .example-link i {
        margin-left: 0.5rem;
        font-size: 0.875rem;
    }

.chrome-store-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 0.5rem;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%231DA462' d='M256 144.03a112 112 0 1 0 0 224 112 112 0 1 0 0-224zm0 192a80 80 0 1 1 0-160 80 80 0 1 1 0 160z'/%3E%3Cpath fill='%234285F4' d='M256 416a160.47 160.47 0 0 0 144.57-91.11l-89.35-152.06a32.09 32.09 0 0 0-55.22 0l-89.35 152.06A160.47 160.47 0 0 0 256 416z'/%3E%3Cpath fill='%23EA4335' d='M256 416a160.47 160.47 0 0 0 144.57-91.11l-89.35-152.06a32.09 32.09 0 0 0-55.22 0l-89.35 152.06A160.47 160.47 0 0 0 256 416z'/%3E%3Cpath fill='%23FBBC05' d='M256 416a160.47 160.47 0 0 0 144.57-91.11l-89.35-152.06a32.09 32.09 0 0 0-55.22 0l-89.35 152.06A160.47 160.47 0 0 0 256 416z'/%3E%3Cpath fill='%2334A853' d='M256 416a160.47 160.47 0 0 0 144.57-91.11l-89.35-152.06a32.09 32.09 0 0 0-55.22 0l-89.35 152.06A160.47 160.47 0 0 0 256 416z'/%3E%3C/svg%3E");
}

.link-list {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

    .link-list .list-group-item {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
        border-left: none;
        border-right: none;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

        .link-list .list-group-item:first-child {
            border-top: none;
        }

        .link-list .list-group-item:last-child {
            border-bottom: none;
        }

.link-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    margin-right: 0.5rem;
}

/* Screenshots Section */
.screenshots-section {
    padding: 5rem 0;
}

.screenshot-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .screenshot-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

.screenshot-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.screenshot-caption {
    background: white;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.process-timeline {
    position: relative;
}

    .process-timeline:before {
        content: '';
        position: absolute;
        top: 0;
        left: 24px;
        height: 100%;
        width: 2px;
        background-color: var(--chrome-primary);
    }

.process-step {
    position: relative;
    padding-left: 60px;
    margin-bottom: 3rem;
}

    .process-step:last-child {
        margin-bottom: 0;
    }

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: var(--chrome-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 2;
}

.process-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.process-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--chrome-primary);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }

.testimonial-content {
    position: relative;
    padding-top: 1rem;
}

    .testimonial-content:before {
        content: '\F52F';
        font-family: 'bootstrap-icons';
        position: absolute;
        top: 0;
        left: 0;
        font-size: 2rem;
        color: var(--chrome-primary);
        opacity: 0.2;
    }

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

    .author-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.author-name {
    font-weight: 700;
    margin-bottom: 0;
}

.author-position {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.accordion-chrome .accordion-item {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.accordion-chrome .accordion-button {
    padding: 1.5rem;
    font-weight: 600;
    background-color: white;
    box-shadow: none;
}

    .accordion-chrome .accordion-button:not(.collapsed) {
        color: var(--chrome-primary);
        background-color: white;
    }

    .accordion-chrome .accordion-button:focus {
        box-shadow: none;
        border: none;
    }

    .accordion-chrome .accordion-button::after {
        background-color: rgba(29, 164, 98, 0.1);
        border-radius: 50%;
        width: 28px;
        height: 28px;
        background-position: center;
        background-size: 14px;
    }

.accordion-chrome .accordion-body {
    padding: 0 1.5rem 1.5rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info {
    background: linear-gradient(135deg, var(--chrome-primary) 0%, var(--chrome-secondary) 100%);
    color: white;
    padding: 3rem;
}

.contact-form {
    background: white;
    padding: 3rem;
}

    .contact-info h3,
    .contact-form h3 {
        font-size: 1.75rem;
        font-weight: 700;
        margin-bottom: 2rem;
    }

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-icon {
    background-color: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

    .contact-icon i {
        color: white;
        font-size: 1.25rem;
    }

.contact-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-text p,
.contact-text a {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

    .contact-text a:hover {
        color: white;
        text-decoration: none;
    }

.social-links {
    margin-top: 2rem;
}

    .social-links a {
        background-color: rgba(255, 255, 255, 0.2);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 0.75rem;
        color: white;
        transition: all 0.3s ease;
    }

        .social-links a:hover {
            background-color: white;
            color: var(--chrome-primary);
            transform: translateY(-3px);
        }

.form-chrome .form-control {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

    .form-chrome .form-control:focus {
        box-shadow: 0 0 0 3px rgba(29, 164, 98, 0.2);
        border-color: var(--chrome-primary);
    }

.form-chrome label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--chrome-primary) 0%, var(--chrome-secondary) 100%);
    color: white;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

    .cta-content h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
    }

.cta-buttons {
    margin-top: 2rem;
}

.cta-white-btn {
    background-color: white;
    color: var(--chrome-primary);
    border: 2px solid white;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

    .cta-white-btn:hover {
        background-color: transparent;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

.cta-outline-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

    .cta-outline-btn:hover {
        background-color: white;
        color: var(--chrome-primary);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

/* Responsive Styles */
@@media (max-width: 991.98px) {
    .chrome-hero {
        padding: 6rem 0 8rem;
    }

        .chrome-hero h1 {
            font-size: 2.5rem;
        }

    .pricing-card.popular {
        transform: scale(1);
    }

        .pricing-card.popular:hover {
            transform: translateY(-10px);
        }

    .contact-info,
    .contact-form {
        padding: 2rem;
    }
}

@@media (max-width: 767.98px) {
    .chrome-hero {
        padding: 5rem 0 7rem;
        margin-top: -76px;
    }

        .chrome-hero h1 {
            font-size: 2rem;
        }

        .chrome-hero p {
            font-size: 1.1rem;
        }

    .what-is-card,
    .metrics-card {
        padding: 1.5rem;
    }

    .section-heading h2 {
        font-size: 2rem;
    }

    .benefit-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
    }

        .benefit-icon i {
            font-size: 1.75rem;
        }

    .process-step {
        padding-left: 50px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .process-timeline:before {
        left: 19px;
    }
}
/* Client Cards */
.client-card {
    position: relative;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

    .client-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

.client-logo {
    max-height: 70%;
    max-width: 80%;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-card:hover .client-logo {
    filter: grayscale(0);
    opacity: 1;
}

.client-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.client-card:hover .client-hover {
    opacity: 1;
}
