/* Modern Landing Page Styles */

/* CSS Variables for Modern Colors */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --warning-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --dark-gradient: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-light: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* ========================================
   HYBRID COLOR SYSTEM EXAMPLES
   ======================================== */

/* Example 1: Card with Theme Background + Modern Gradient Border */
.hybrid-card {
    background: var(--site-box-bg-2);
    color: var(--site-font-color);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hybrid-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.hybrid-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--site-btn-highlight-bg);
}

.hybrid-card h3 {
    color: var(--site-headings-color);
    margin-bottom: 1rem;
}

.hybrid-card p {
    color: var(--site-font-color);
    line-height: 1.6;
}

/* Example 2: Button with Theme Colors + Modern Effects */
.hybrid-btn {
    background: var(--site-btn-bg);
    color: var(--site-btn-font-color);
    border: 2px solid var(--site-btn-font-border-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hybrid-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    transition: left 0.5s;
    z-index: 1;
}

.hybrid-btn:hover::before {
    left: 0;
}

.hybrid-btn:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.hybrid-btn span {
    position: relative;
    z-index: 2;
}

/* Example 3: Icon with Theme Color + Modern Gradient Background */
.hybrid-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hybrid-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--site-btn-highlight-bg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hybrid-icon:hover::before {
    opacity: 0.2;
}

.hybrid-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-medium);
}

.hybrid-icon i {
    position: relative;
    z-index: 2;
}

/* Example 4: Section with Theme Background + Modern Gradient Overlay */
.hybrid-section {
    background: var(--site-box-bg);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hybrid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0.05;
}

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

.hybrid-section h2 {
    color: var(--site-headings-color);
    text-align: center;
    margin-bottom: 2rem;
}

.hybrid-section p {
    color: var(--site-font-color);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Example 5: Navigation with Theme Colors + Modern Hover Effects */
.hybrid-nav {
    background: var(--main-menu-bg);
    border-bottom: 1px solid var(--site-box-border-color);
    padding: 1rem 0;
}

.hybrid-nav .nav-link {
    color: var(--main-menu-font-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hybrid-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 25px;
}

.hybrid-nav .nav-link:hover::before {
    opacity: 0.1;
}

.hybrid-nav .nav-link:hover {
    color: var(--main-menu-font-highlight-color);
    transform: translateY(-2px);
}

.hybrid-nav .nav-link.active {
    background: var(--site-btn-highlight-bg);
    color: var(--site-btn-font-highlight-color);
}

/* Example 6: Form Elements with Theme Colors + Modern Styling */
.hybrid-form-group {
    margin-bottom: 1.5rem;
}

.hybrid-form-group label {
    color: var(--site-headings-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.hybrid-form-control {
    background: var(--site-box-bg-2);
    border: 2px solid var(--site-box-border-color);
    color: var(--site-font-color);
    padding: 12px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 100%;
}

.hybrid-form-control:focus {
    outline: none;
    border-color: var(--site-btn-highlight-bg);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: white;
}

.hybrid-form-control::placeholder {
    color: var(--site-font-color);
    opacity: 0.6;
}

/* Example 7: Alert/Notification with Theme Colors + Modern Design */
.hybrid-alert {
    background: var(--site-box-bg-2);
    border-left: 4px solid var(--site-btn-highlight-bg);
    color: var(--site-font-color);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.hybrid-alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0.02;
}

.hybrid-alert.success {
    border-left-color: #28a745;
}

.hybrid-alert.success::before {
    background: var(--success-gradient);
}

.hybrid-alert.warning {
    border-left-color: #ffc107;
}

.hybrid-alert.warning::before {
    background: var(--warning-gradient);
}

.hybrid-alert.error {
    border-left-color: #dc3545;
}

.hybrid-alert.error::before {
    background: var(--secondary-gradient);
}

/* Example 8: Progress Bar with Theme Colors + Modern Gradient */
.hybrid-progress {
    background: var(--site-box-bg);
    border-radius: 25px;
    height: 8px;
    overflow: hidden;
    margin: 1rem 0;
}

.hybrid-progress-bar {
    background: var(--primary-gradient);
    height: 100%;
    border-radius: 25px;
    transition: width 0.6s ease;
    position: relative;
    overflow: hidden;
}

.hybrid-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Example 9: Badge/Tag with Theme Colors + Modern Effects */
.hybrid-badge {
    background: var(--site-btn-bg);
    color: var(--site-btn-font-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid var(--site-btn-font-border-color);
}

.hybrid-badge:hover {
    background: var(--site-btn-highlight-bg);
    color: var(--site-btn-font-highlight-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow-light);
}

.hybrid-badge.primary {
    background: var(--primary-gradient);
    color: white;
    border: none;
}

.hybrid-badge.secondary {
    background: var(--secondary-gradient);
    color: white;
    border: none;
}

/* Example 10: Modal with Theme Colors + Modern Styling */
.hybrid-modal .modal-content {
    background: var(--site-box-bg-2);
    border: none;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    overflow: hidden;
}

.hybrid-modal .modal-header {
    background: var(--primary-gradient);
    color: white;
    border-bottom: none;
    padding: 1.5rem;
}

.hybrid-modal .modal-title {
    color: white;
    font-weight: 600;
}

.hybrid-modal .modal-body {
    padding: 2rem;
    color: var(--site-font-color);
}

.hybrid-modal .modal-footer {
    background: var(--site-box-bg);
    border-top: 1px solid var(--site-box-border-color);
    padding: 1rem 2rem;
}

.hybrid-modal .btn {
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hybrid-modal .btn-primary {
    background: var(--site-btn-highlight-bg);
    border-color: var(--site-btn-highlight-bg);
    color: var(--site-btn-font-highlight-color);
}

.hybrid-modal .btn-primary:hover {
    background: var(--primary-gradient);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.hybrid-modal .btn-secondary {
    background: var(--site-btn-bg);
    border-color: var(--site-btn-font-border-color);
    color: var(--site-btn-font-color);
}

.hybrid-modal .btn-secondary:hover {
    background: var(--site-box-border-color);
    transform: translateY(-2px);
}

/* ========================================
   EXISTING STYLES (KEEPING FOR REFERENCE)
   ======================================== */

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section Styles */
.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: slideInFromTop 1s ease-out;
}

.gradient-text {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s infinite;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    animation: pulse 2s infinite;
}

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

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.btn-primary {
    background: var(--primary-gradient);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Guide Section Styles */
.section-make-account-alpha {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.section-make-account-alpha::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

/* How It Works Section */
.section-how-it-works {
    padding: 60px 0;
    background: white;
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.section-how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0.02;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.step-card:hover .step-icon {
    transform: scale(1.1);
}

.step-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step-icon i {
    font-size: 2rem;
    color: white;
    z-index: 2;
}

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

.step-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: var(--primary-gradient);
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.step-arrow {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    z-index: 10;
}

.step-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

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

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--secondary-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: rotate(360deg);
}

.feature-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0.05;
}

.cta-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

/* Background Elements */
.bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-gradient);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

/* Packages Section */
.section-packages {
    padding: 80px 0;
    background: white;
    position: relative;
}

.package-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.package-card:hover::before {
    opacity: 0.05;
}

.package-card.featured {
    border-color: #667eea;
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.package-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--secondary-gradient);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.package-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--primary-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.package-card:hover .package-icon {
    transform: scale(1.1) rotate(5deg);
}

.package-icon i {
    font-size: 1.5rem;
    color: white;
}

.package-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.package-price .currency {
    font-size: 1.5rem;
    color: #667eea;
    font-weight: 600;
}

.package-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
}

.package-price .period {
    font-size: 1rem;
    color: #666;
}

.package-features {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #666;
    transition: color 0.3s ease;
}

.package-features li:hover {
    color: #333;
}

.package-features i {
    color: #4CAF50;
    font-size: 0.9rem;
}

.package-footer .btn {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.packages-cta {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
}

.packages-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.packages-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.btn-outline-primary {
    border: 2px solid #667eea;
    color: #667eea;
    background: transparent;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Testimonials Section */
.section-testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 20px 20px 0 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-card.student::before {
    background: var(--success-gradient);
}

.testimonial-card.recruiter::before {
    background: var(--warning-gradient);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #667eea;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #333;
}

.testimonial-title {
    font-size: 0.9rem;
    color: #667eea;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 0.8rem;
    animation: pulse 2s infinite;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.testimonial-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #666;
    background: #f8f9fa;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.testimonial-stats .stat:hover {
    background: var(--primary-gradient);
    color: white;
}

.testimonial-stats .stat i {
    color: #667eea;
}

.testimonial-stats .stat:hover i {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .step-card {
        margin-bottom: 2rem;
    }
    
    .step-arrow {
        display: none;
    }
    
    .package-card.featured {
        transform: none;
        margin-bottom: 2rem;
    }
    
    .testimonial-stats {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-how-it-works {
        margin: 20px 0;
        padding: 40px 0;
    }
    
    .step-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .step-card,
    .package-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .cta-section,
    .packages-cta {
        padding: 2rem 1.5rem;
    }
    
    .section-how-it-works {
        padding: 30px 0;
        margin: 15px 0;
    }
    
    .features-grid {
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
}
