/* Modern Index Page Styles */

/* ============================================
   MODERN HERO SECTION
   ============================================ */
.hero-area-modern {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1d29 0%, #2d3142 50%, #1e2329 100%);
}

.hero-area-modern .container {
    position: relative;
    z-index: 3;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../../images/business-success.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 29, 41, 0.75) 0%, rgba(45, 49, 66, 0.70) 50%, rgba(30, 35, 41, 0.75) 100%);
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
    z-index: 2;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.4;
    z-index: 2;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: visible;
    z-index: 2;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.4) 0%, rgba(37, 99, 235, 0.4) 100%);
    top: 5%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4) 0%, rgba(37, 99, 235, 0.4) 100%);
    bottom: 10%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.4) 0%, rgba(59, 130, 246, 0.4) 100%);
    top: 45%;
    right: 25%;
    animation-delay: 10s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-content-modern {
    position: relative;
    z-index: 3;
    color: white;
    animation: fadeInUp 0.8s ease-out;
}

.hero-content-modern.text-center {
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Image Styles */
.hero-image-wrapper {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-align: center;
}

.hero-business-image {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-business-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
}

.hero-main-image {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    transition: transform 0.3s ease;
}

.hero-business-image:hover .hero-main-image {
    transform: scale(1.05);
}

.hero-image-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.15) 0%, rgba(37, 99, 235, 0.15) 100%);
    border-radius: 24px;
    pointer-events: none;
    z-index: 1;
}

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

/* Generic section photography */
.section-photo {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.3);
}

.section-photo--tall {
    max-height: 500px;
    min-height: 400px;
}

.section-photo--large {
    max-height: 600px;
    min-height: 500px;
}

.section-photo--medium {
    max-height: 450px;
    min-height: 350px;
}

.section-image-wrapper {
    margin: 2rem 0;
    text-align: center;
}

.section-image-wrapper img {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-image-wrapper img:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.3);
}

/* Review avatars */
.reviews-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.35);
    margin-right: 1rem;
    border: 3px solid rgba(102, 126, 234, 0.2);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.badge-text {
    color: rgba(255, 255, 255, 0.9);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-form {
    margin-bottom: 2.5rem;
}

.hero-input-wrapper {
    display: flex;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-input-wrapper:focus-within {
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

.hero-input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    outline: none;
}

.hero-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    border: none;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.6);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    color: white;
    text-decoration: none;
}

.hero-cta {
    margin-top: 2rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.hero-features.justify-content-center {
    justify-content: center;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
}

/* Stats Card */
.hero-stats-card {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    margin-top: 2rem;
}

.stats-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.stats-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 20px;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.indicator-dot {
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
}

.indicator-text {
    color: white;
}

.stats-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: white;
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 12px;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stats-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stats-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4b5563;
    font-size: 0.9rem;
}

.stats-feature i {
    color: #2563eb;
    font-size: 1rem;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    height: 120px;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Responsive Design for Hero */
@media (max-width: 992px) {
    .hero-area-modern {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .hero-content-modern {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-stats-card {
        margin-top: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-input-wrapper {
        flex-direction: column;
        border-radius: 16px;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-illustration {
        max-width: 500px;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-stats-card {
        padding: 1.5rem;
    }
    
    .hero-illustration {
        max-width: 400px;
    }
}

/* Review Section */
.review-heading {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin: 6rem auto 3rem;
    text-align: center;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comment-box {
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 2.5rem;
    font-weight: 500;
    font-size: 1.1rem;
    min-height: 250px;
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.comment-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: #2563eb;
}

.comment-box p {
    margin: 0;
    line-height: 1.7;
    color: #333;
}

/* Hero Section Enhancements */
.hero-area-3 {
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content .sec-desc {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 2rem;
}

/* Market Price Section */
.marketprice-area {
    padding: 5rem 0;
}

.marketprice-area .card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: none;
}

/* CTA Section */
.cta-area {
    padding: 5rem 0;
}

.cta-area h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.3;
}

.cta-area .media-list .card {
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.cta-area .media-list .card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

/* App Features Section */
.app-features-area {
    padding: 5rem 0;
}

.app-features-area .sec-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
}

.app-features-content .media {
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.app-features-content .media:hover {
    background: #f8f9fa;
    transform: translateX(8px);
}

.app-features-content .icon-element {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 12px;
}

.app-features-content .icon-element svg {
    filter: brightness(0) invert(1);
}

/* Feature Cards */
.feature-area .card {
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-area .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
    border-color: #2563eb;
}

.feature-area .icon-element {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    font-size: 1.75rem;
}

/* Funfact Section */
.funfact-area {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.counter-item {
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.counter-item:hover {
    transform: scale(1.05);
}

.counter-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.counter-title {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* How It Works Section */
.how-it-works-area {
    padding: 5rem 0;
}

.info-box {
    padding: 2rem;
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-8px);
}

.info-box svg {
    fill: #2563eb;
    transition: all 0.3s ease;
}

.info-box:hover svg {
    fill: #1d4ed8;
    transform: scale(1.1);
}

/* Final CTA Section */
.cta-area.bg-gray {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
    color: white;
}

.cta-area.bg-gray .sec-title,
.cta-area.bg-gray .sec-desc {
    color: white;
}

.cta-area.bg-gray .btn-primary {
    background: white;
    color: #2563eb;
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-area.bg-gray .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .review-heading {
        margin: 4rem auto 2rem;
    }
    
    .comment-box {
        padding: 1.5rem;
        min-height: 200px;
        margin-bottom: 1.5rem;
    }
    
    .app-features-content .media {
        padding: 1rem;
    }
    
    .counter-item {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Modern Button Styles */
.btn-primary {
    border-radius: 50px;
    padding: 0.875rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

/* Improved Typography */
.sec-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
}

.card-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-desc {
    line-height: 1.7;
    color: #666;
}

/* DeepSeek Section Enhancements */
.content ul {
    list-style: none;
    padding: 0;
}

.content ul li.media {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.content ul li.media:hover {
    background: #f8f9fa;
}

.content ul li.media .icon-element {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 10px;
    padding: 10px;
}

.content ul li.media .icon-element svg {
    filter: brightness(0) invert(1);
}

/* Section Spacing */
section {
    position: relative;
}

.section--padding {
    padding: 5rem 0;
}

/* Improved Form Styles */
.form--control {
    border-radius: 50px;
    padding: 0.875rem 1.5rem;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.form--control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


