/* Variable Definitions from variables.css */
:root {
    --primary-color: #6f42c1;
    --primary-hover: #5a32a3;
    --secondary-color: #4a90e2;
    --secondary-hover: #357abd;
    --text-color: #333333;
    --text-muted: #666666;
    --background-color: #f8f9fa;
    --white-color: #ffffff;
    --error-color: #ef4444;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --font-family-base: 'Poppins', sans-serif;
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* --- Trust Banner --- */
.trust-banner {
    background: #fff;
    padding: 1.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 2rem;
}

.trust-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4b5563;
    font-weight: 500;
    font-size: 0.95rem;
    transition: transform 0.3s ease;
    cursor: default;
}

.trust-item:hover {
    transform: translateY(-2px);
    color: var(--primary-color);
}

.trust-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
}



/* --- Reviews Section --- */
.reviews {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-family: 'Luckiest Guy', cursive;
    color: var(--primary-color);
}

.reviews .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
    /* Ensure swiper doesn't overflow */
}

.reviews-swiper {
    width: 100%;
    padding-bottom: 50px;
}

.review-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    width: 100%;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background-color: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #888;
    flex-shrink: 0;
}

.review-meta {
    text-align: left;
}

.review-stars {
    color: #f59e0b;
    margin-bottom: 5px;
    font-size: 1rem;
}

.review-comment {
    font-style: italic;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: left;
}

.review-date {
    font-size: 0.8rem;
    color: #999;
    margin-top: 0;
}

.reviews-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-color) !important;
}

/* --- Customer Support --- */
.customer-support {
    background-color: #f0f4f8;
    padding: 60px 0;
    text-align: center;
}

.customer-support h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Luckiest Guy', cursive;
}

.customer-support p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

/* Shared CTA Button Style for Support */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    border: none;
}


.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}


/* Responsive Magic Section - DELETED */
/* Fix SweetAlert z-index to be above the modal (z-index 3000) */
.swal2-container {
    z-index: 10000 !important;
}