/* Custom CSS for the ₹99 Consultancy Landing Page */

.consultancy-page {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background-color: #fafafa;
}

/* Typography & Globals */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a1a;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color, #f52008);
    margin: 15px auto 0;
    border-radius: 2px;
}

.btn-primary-large {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-color, #f52008);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(245, 32, 8, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-primary-large:hover {
    background: #d41a06;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(245, 32, 8, 0.5);
    color: #fff;
}

/* Hero Section */
.consultancy-hero {
    padding: 130px 0 60px;
    background: linear-gradient(135deg, #ffffff 0%, #f4f7f6 100%);
    overflow: hidden;
}
.consultancy-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.hero-content {
    flex: 1;
    max-width: 700px;
}
.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(245, 32, 8, 0.1);
    color: var(--primary-color, #f52008);
    font-weight: 700;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111;
}
.subtitle {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}
.hero-price-wrapper {
    margin-bottom: 30px;
}
.hero-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
}
.hero-price .new-price {
    font-size: 3.8rem;
    color: #111;
    font-weight: 800;
    line-height: 1;
}
.price-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}
.hero-price .old-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 600;
}
.save-badge {
    background: #eafbee;
    color: #2b8a3e;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}
.price-note {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}
.price-note i {
    color: #2b8a3e;
}
.hero-image {
    flex: 1;
    position: relative;
    max-width: 500px;
}
.image-wrapper {
    position: relative;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.image-wrapper img {
    width: 100%;
    border-radius: 20px;
    display: block;
}
.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #333;
}
.floating-badge i {
    color: #FFD700;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: #fff;
}
.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    padding: 20px 0;
}
.benefits-track {
    display: inline-flex;
    gap: 30px;
    animation: scroll-left 30s linear infinite;
    padding-left: 30px;
}
.benefits-track:hover {
    animation-play-state: paused;
}
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}
.benefit-card {
    width: 320px;
    flex-shrink: 0;
    padding: 40px 30px;
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    white-space: normal;
}
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: transparent;
}
.icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(245, 32, 8, 0.08);
    color: var(--primary-color, #f52008);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}
.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}
.benefit-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #fafafa;
}
.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #eaeaea;
    z-index: 1;
}
.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}
.step-number {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 2px solid var(--primary-color, #f52008);
    color: var(--primary-color, #f52008);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.step h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 700;
}
.step p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background: #fff;
}
.testimonials-track {
    display: inline-flex;
    gap: 30px;
    animation: scroll-left 30s linear infinite;
    padding-left: 30px;
}
.testimonials-track:hover {
    animation-play-state: paused;
}
.testimonial-card {
    width: 350px;
    flex-shrink: 0;
    white-space: normal;
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 40px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}
.testimonial-card .stars {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.testimonial-card .review {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 25px;
}
.testimonial-card .client-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
}
.testimonial-card .client-info span {
    font-size: 0.9rem;
    color: #888;
}

/* CTA Section */
.cta-section {
    padding: 120px 0 60px;
    background-color: #f8f9fa;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    border-top: 1px solid #eaeaea;
    position: relative;
}
#new-footer {
    margin-top: 0 !important;
}
.cta-box {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    text-align: center;
    color: #111;
    max-width: 800px;
    margin: 0 auto;
}
.cta-box h2 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
    color: #111;
    line-height: 1.1;
}
.cta-box p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 45px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.cta-box .btn-primary-large {
    background: #111;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.cta-box .btn-primary-large:hover {
    background: #000;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.btn-pulsate {
    /* Removed pulsate animation for minimal look */
}
.guarantee-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
    color: #888;
    font-size: 0.95rem;
    font-weight: 500;
}
.guarantee-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-content h1 { font-size: 3rem; }
    .cta-box h2 { font-size: 3rem; }
}

@media (max-width: 992px) {
    .consultancy-hero .container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-price {
        justify-content: center;
    }
    .process-steps {
        flex-direction: column;
        gap: 50px;
    }
    .process-steps::before {
        display: none;
    }
    .cta-section {
        padding: 80px 0 60px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.4rem; }
    .hero-content h1 span {
        white-space: normal !important;
    }
    .cta-box h2 {
        font-size: 2.5rem;
    }
    .guarantee-badges {
        flex-wrap: wrap;
        gap: 15px;
    }
    .benefits-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .consultancy-hero {
        padding: 100px 0 40px;
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .subtitle {
        font-size: 0.9rem;
    }
    .badge {
        font-size: 0.75rem;
        padding: 4px 12px;
        margin-bottom: 15px;
    }
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    .step h3 {
        font-size: 1.2rem;
    }
    .benefit-card h3 {
        font-size: 1.1rem;
    }
    .cta-box {
        padding: 0 15px;
    }
    .cta-box h2 {
        font-size: 2.2rem;
    }
    .cta-box p {
        font-size: 1.1rem;
    }
    .guarantee-badges {
        flex-direction: column;
        gap: 10px;
    }
    .cta-section {
        padding: 60px 0 40px;
    }
    .benefit-card, .testimonial-card {
        width: 280px;
        padding: 30px 20px;
    }
}

@media (max-width: 360px) {
    /* For Galaxy Fold & extremely small screens */
    .hero-content h1 {
        font-size: 1.5rem;
    }
    .section-title {
        font-size: 1.4rem;
    }
    .hero-price .price {
        font-size: 2.5rem;
    }
    .cta-box h2 {
        font-size: 1.8rem;
    }
    .btn-primary-large {
        padding: 14px 25px;
        font-size: 1rem;
    }
    .benefit-card, .testimonial-card {
        width: 250px;
    }
}
