/**
 * Theme Name:     Astra Child
 * Author:         Brainstorm Force
 * Template:       astra
 * Text Domain:	   astra-child
 * Description:    The Astra WordPress theme is lightning-fast and highly customizable. It has over 1 million downloads and the only theme in the world with 5,700+ five-star reviews! It’s ideal for professional web designers, solopreneurs, small businesses, eCommerce, membership sites and any type of website. It offers special features and templates so it works perfectly with all page builders like Spectra, Elementor, Beaver Builder, etc. Fast performance, clean code, mobile-first design and schema markup are all built-in, making the theme exceptionally SEO-friendly. It’s fully compatible with WooCommerce, SureCart and other eCommerce plugins and comes with lots of store-friendly features and templates. Astra also provides expert support for free users. A dedicated team of fully trained WordPress experts are on hand to help with every aspect of the theme. Try the live demo of Astra: https://zipwp.org/themes/astra/
 */
/* Base Styles */
:root {
    --primary-color: #4361ee;
    --secondary-color: #F79F22;
    --accent-color: #444343;
    --text-color: #252A3D;
    --light-text: #666;
    --bg-color: #fff; 
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --success-color: #57ba9f;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

/* Header */
.header {
    background-color: var(--bg-color);
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
}

.main-nav a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-nav a:hover:after,
.main-nav a.active:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f5f7ff 0%, #e8f0ff 100%);
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.hero h2 {
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.hero h2:after {
    display: none;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    margin-right: 20px;
    margin-bottom: 15px;
}

.hero-features .feature i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-right: 10px;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    margin-left: 40px;
    position: relative;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: var(--card-shadow);
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
}

.cta-button:hover {
    background-color: #F79F22;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 158, 0, 0.4);
}

/* Values Section */
.values {
    background-color: var(--bg-color);
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    flex: 1;
    min-width: 300px;
    max-width: 350px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.card h3 {
    margin-bottom: 15px;
}

.card ul {
    margin-top: 15px;
}

.card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.card ul li:before {
    content: '•';
    color: var(--secondary-color);
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Differentials Section */
.differentials {
    background-color: var(--light-bg);
}

.differentials .card {
    text-align: center;
    min-width: 250px;
    max-width: 270px;
}

.differentials .card-icon {
    margin: 0 auto 20px;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--bg-color);
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
}

.step {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    position: relative;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step h3 {
    margin-top: 10px;
}

.step-features {
    margin: 20px 0;
}

.step-features .feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.step-features .feature i {
    color: var(--success-color);
    margin-right: 10px;
}

.step img {
    border-radius: 8px;
    margin-top: 20px;
}

.secondary-cta {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.secondary-cta:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Economy Section */
.economy {
    background-color: var(--light-bg);
}

.comparison-table {
    overflow-x: auto;
    margin-bottom: 50px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

table th, table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

table tr:last-child td {
    border-bottom: none;
}

table td:nth-child(2), table td:nth-child(4) {
    color: var(--success-color);
    font-weight: 600;
}

.why-love {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--card-shadow);
}

.why-love h3 {
    text-align: center;
    margin-bottom: 25px;
}

.love-reasons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.reason {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    flex: 1;
    min-width: 300px;
}

.reason i {
    color: var(--success-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Use Cases Section */
.use-cases {
    background-color: var(--bg-color);
}

.cases-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.case {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    flex: 1;
    min-width: 250px;
    max-width: 270px;
    text-align: center;
}

.case:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.case-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.case-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-bg);
    padding: 60px 0;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-content {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    position: relative;
}

.testimonial-content i {
    color: var(--primary-color);
    font-size: 2rem;
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    padding-left: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-author p {
    font-weight: 600;
    margin-bottom: 0;
}

/* Features Feedback Section */
.features-feedback {
    background-color: var(--bg-color);
}

.feedback-table table td:first-child {
    font-weight: 600;
    color: var(--primary-color);
}

.feedback-table table td:last-child {
    font-style: italic;
}

/* Pricing Section */
.pricing {
    background-color: var(--light-bg);
}

.plans-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.plan {
    background-color: white;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    position: relative;
}

.plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.plan.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.plan.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan h3 {
    margin-bottom: 20px;
}

.price {
    margin-bottom: 30px;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    position: relative;
    top: 10px;
}

.price .amount {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color);
}

.price .period {
    font-size: 1.5rem;
    font-weight: 600;
}

.plan .features {
    margin-bottom: 30px;
}

.plan .features li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.plan .features li:before {
    content: '✓';
    color: var(--success-color);
    position: absolute;
    left: 0;
}

.plan-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.plan-cta:hover {
    background-color: var(--accent-color);
    color: white;
}

.demo-cta {
    text-align: center;
}

.calendar-cta {
    display: inline-flex;
    align-items: center;
    background-color: white;
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
}

.calendar-cta i {
    margin-right: 10px;
}

.calendar-cta:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    color: white;
}

.final-cta h2:after {
    background: white;
}

.final-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.final-features .feature {
    display: flex;
    align-items: center;
}

.final-features .feature i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.final-cta .cta-button {
    background-color: white;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.final-cta .cta-button:hover {
    background-color: var(--secondary-color);
    color: white;
}

.contact {
    font-size: 1.1rem;
}

.contact a {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #2b2d42;
    color: #edf2f4;
    padding: 60px 0 30px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 40px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #edf2f4;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-column a:hover {
    opacity: 1;
    color: white;
}

.footer-social {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 10px;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 50px;
    }
    
    .hero-image {
        margin-left: 0;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .card, .case, .plan {
        min-width: 100%;
    }
    
    .plan.featured {
        transform: none;
    }
    
    .plan.featured:hover {
        transform: translateY(-10px);
    }
    
    .footer-links {
        flex-direction: column;
    }
    
    .footer-column {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .cta-button, .plan-cta {
        width: 100%;
        text-align: center;
    }
    
    .step {
        min-width: 100%;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card, .step, .plan, .testimonial-content {
    animation: fadeIn 0.6s ease-out forwards;
}

.card:nth-child(2), .step:nth-child(2), .plan:nth-child(2) {
    animation-delay: 0.2s;
}

.card:nth-child(3), .step:nth-child(3), .plan:nth-child(3) {
    animation-delay: 0.4s;
}

.card:nth-child(4), .step:nth-child(4) {
    animation-delay: 0.6s;
}
