/* Index Page Specific Styles */
.hero-section {
    background: var(--teal-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('../images/bg-pattern.svg');
    background-size: cover;
    opacity: 0.05;
}

.hero-image {
    max-width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.stats-card {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.market-indicator {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 6px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.market-indicator.up {
    background-color: var(--success);
}

.market-indicator.down {
    background-color: var(--danger);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
}

.testimonial-card {
    border-radius: 10px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-gold {
    background-color: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.btn-gold:hover {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
    color: #fff;
}

.partner-logo {
    height: 80px;
    width: auto;
    margin: 20px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.pricing-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    padding: 2rem;
}

.pricing-popular {
    border: 2px solid var(--gold);
}

.pricing-popular .pricing-header {
    background: linear-gradient(120deg, var(--primary-dark), var(--primary-color));
    color: white;
}

/* Testimonials Section Styles */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/dots-pattern.svg');
    background-size: 20px;
    opacity: 0.05;
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    color: #555;
    position: relative;
    padding: 0 5px;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-family: Georgia, serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--teal-light);
}

.testimonial-text::after {
    content: '"';
}

@media (max-width: 992px) {
    .testimonial-card {
        margin-bottom: 30px;
    }
} 