/* ===================================
   IMPROVED HOMEPAGE STYLES
   =================================== */

/* Hero Section Enhanced */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: #d9534f;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    display: block;
    font-size: 14px;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Hero Buttons */
.hero-buttons {
    margin: 40px 0 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.btn-outline:hover {
    background: #fff;
    color: #d9534f;
}

/* Trust Indicators */
.hero-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.trust-badge i {
    font-size: 18px;
    color: #28a745;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-down {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    background: #fff;
    color: #d9534f;
    transform: translateY(5px);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: #fff;
}

.feature-box {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #d9534f;
    background: #fff;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d9534f 0%, #c9302c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: #fff;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: rotate(360deg) scale(1.1);
}

.feature-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.feature-box p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Success Stories Section */
.success-stories-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.transformation-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.transformation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.transformation-images {
    position: relative;
    height: 300px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: #333;
}

.transformation-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.transformation-images::before {
    content: 'VS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #d9534f;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.transformation-info {
    padding: 25px;
}

.transformation-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: #d9534f;
    margin-bottom: 10px;
}

.transformation-info p {
    font-size: 15px;
    color: #666;
    font-style: italic;
    margin-bottom: 10px;
}

.member-name {
    font-size: 14px;
    color: #999;
    font-weight: 600;
}

/* CTA Section Enhanced */
.cta-section {
    padding: 100px 0;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.cta-content h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.percent {
    font-size: 52px;
    color: #ffc107;
    font-weight: 800;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.cta-subtext {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Countdown Timer */
.cta-timer {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.timer-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.timer-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #ffc107;
    line-height: 1;
}

.timer-label {
    display: block;
    font-size: 14px;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta i {
    margin-right: 10px;
}

.cta-guarantee {
    margin-top: 20px;
    font-size: 15px;
    opacity: 0.9;
}

.cta-guarantee i {
    color: #28a745;
    margin-right: 5px;
}

/* Blog Cards Enhanced */
.blog-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-img-link {
    position: relative;
    display: block;
    overflow: hidden;
}

.blog-img-link img {
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-link img {
    transform: scale(1.1);
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(217, 83, 79, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-overlay {
    opacity: 1;
}

.read-more {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #999;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-text h3 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-text h3 a {
    color: #333;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-text h3 a {
    color: #d9534f;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .stat-number {
        font-size: 32px;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    .cta-content h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 15px;
    }

    .cta-timer {
        gap: 15px;
    }

    .timer-item {
        padding: 15px 20px;
    }

    .timer-number {
        font-size: 36px;
    }

    .transformation-images {
        height: 250px;
    }
}