
.section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

/* Category Card */
.category-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    margin-bottom: 20px;
}

.category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-card span {
    display: block;
    padding: 10px;
    font-size: 16px;
}

/* Product Card */
.product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

.product-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.product-title {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

.product-price {
    font-size: 16px;
    color: #28a745;
}

/* Product Detail */
.product-detail img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Cart Table */
.table thead {
    background-color: #f8f9fa;
}

.table tbody tr td {
    vertical-align: middle;
}

/* Footer */
footer {
    background-color: #343a40;
    color: #fff;
    padding: 20px;
}


.category-card-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    background: #f8f9fa;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-circle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-name {
    display: block;
    margin-top: 10px;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
}

.blog-card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 15px;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #212529;
}

.blog-introduction {
    color: #6c757d;
}

.blog-footer {
    padding: 15px;
    border-top: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Base Theme Colors */
:root {
    --primary-color: #FFFFFF; /* White */
    --background-color: transparent; /* Transparent background */
    --accent-color: #000000; /* Black as accent */
    --secondary-color: #cccccc; /* Gray for subtle elements */
    --hover-color: #66666626; /* Dark gray for hover effects */
}

/* Global Styles */
body {
    background-color: var(--background-color);
    color: var(--accent-color);
}

/* Heading Styles Reflecting Logo Sharpness */
h1, h2, h3, h4, h5, h6 {
    color: var(--accent-color);
    font-family: 'Rubik', sans-serif;
    text-transform: uppercase;
}

/* Button Styles */
.btn-primary {
    background-color: var(--accent-color); /* Black */
    border-color: var(--accent-color); /* Black */
    color: var(--primary-color); /* White */
    border-radius: 0; /* Sharp edges for logo style */
    font-weight: bold;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--hover-color); /* Dark gray */
    border-color: var(--accent-color); /* Black */
    color: var(--primary-color);
}

/* Category Card */
.category-card {
    background-color: var(--background-color);
    border: 2px solid var(--accent-color); /* Sharp black border */
    text-align: center;
    border-radius: 50%; /* Circle shape */
    padding: 20px;
    transition: all 0.3s ease;
}

.category-card img {
    width: 100%;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.category-card:hover img {
    opacity: 1;
}

 

.carousel-caption h5, .carousel-caption p {
    color: var(--accent-color);
    font-family: 'Rubik', sans-serif;
}

/* Blog Card */
.blog-card {
    background-color: var(--background-color);
    color: var(--primary-color);
    border: 1px solid var(--accent-color);
    transition: all 0.3s ease;
}

.blog-card:hover {
    background-color: var(--hover-color);
}

/* Link Styles */
a {
    color: var(--accent-color);
    text-decoration: none;
}

a:hover {
    color: var(--accent-color);
}

/* Footer */
footer {
    background-color: var(--accent-color); /* Black footer */
    color: var(--primary-color); /* White text */
    padding: 20px;
}

     /* Color Variables */
     :root {
        --primary: #FF4A4A; /* Gym Engine red */
        --primary-dark: #E63A3A; /* Darker red for hover */
        --secondary: #1A2526; /* Dark shade from logo */
        --dark: #1A2526;
        --light: #F5F7FA; /* Light gray for backgrounds */
        --gray: #64748B; /* Gray for secondary text */
        --light-gray: #E2E8F0; /* Light gray for borders */
        --white: #FFFFFF;
        --success: #10B981; /* Green for success icons */
    }

    /* Base Styles */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Rubik', sans-serif;
        color: var(--dark);
        line-height: 1.6;
        background-color: var(--light);
        direction: rtl; /* Support Arabic RTL */
        text-align: right;
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: 'Rubik', sans-serif;
        font-weight: 700;
        line-height: 1.2;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    ul {
        list-style: none;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    /* Buttons */
    .primary-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-family: 'Rubik', sans-serif;
        font-size: 0.925rem;
        font-weight: 600;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        background: var(--primary);
        color: var(--white);
    }

    .primary-btn i {
        margin-left: 0.5rem;
    }

    .primary-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        background: var(--primary-dark);
    }

    .secondary-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-family: 'Rubik', sans-serif;
        font-size: 0.925rem;
        font-weight: 600;
        text-decoration: none;
        border: 1px solid var(--primary);
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        background: transparent;
        color: var(--primary);
    }

    .secondary-btn i {
        margin-left: 0.5rem;
    }

    .secondary-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        background: var(--primary);
        color: var(--white);
    }

    .header-smaller {
        height: 80px;
    }

    #header {
        position: relative;
    }

    .logo img {
        max-height: 70px;
    }

    .nav-menu {
        flex-grow: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        display: flex;
        gap: 20px;
        margin: 0;
        padding: 0;
    }


    .nav-links li a:hover {
        color: var(--primary);
    }

    .header-cta .btn-danger {
        background-color: var(--primary);
        border: none;
        padding: 0.5rem 1rem;
        font-size: 0.925rem;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .header-cta .btn-danger:hover {
        background-color: var(--primary-dark);
        transform: translateY(-2px);
    }

    .hamburger {
        display: none;
        font-size: 1.5rem;
        color: var(--dark);
        cursor: pointer;
    }

    /* Section Header */
    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-header h2 {
        font-size: 2.25rem;
        margin-bottom: 15px;
        color: var(--dark);
    }

    .section-header p {
        font-size: 1rem;
        color: var(--gray);
        max-width: 700px;
        margin: 0 auto;
    }

    .section-tag {
        display: inline-block;
        background-color: rgba(255, 74, 74, 0.1);
        color: var(--primary);
        padding: 6px 12px;
        border-radius: 8px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 15px;
    }

    /* Hero Section */
    .modern-hero {
        padding: 120px 0 80px;
        background: linear-gradient(135deg, #ffffff 0%, #ef3d2c21 100%);
        color: var(--dark);
        position: relative;
        overflow: hidden;
    }

    .modern-hero::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('{{ asset("img/hero-pattern.png") }}') no-repeat center/cover;
        opacity: 0.1;
        pointer-events: none;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
        color: var(--gray);
    }

    .hero-cta {
        display: flex;
        gap: 15px;
        margin-bottom: 40px;
    }

    .hero-stats {
        display: flex;
        gap: 30px;
    }

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

    .stat-item h3 {
        font-size: 1.75rem;
        margin-bottom: 5px;
        color: var(--primary);
    }

    .stat-item p {
        font-size: 0.9rem;
        color: var(--gray);
    }

    .hero-image img {
        border-radius: 8px;
    }

    /* Clients Section */
    .clients-section {
        padding: 40px 0;
        background-color: var(--white);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .clients-section p {
        text-align: center;
        color: var(--gray);
        margin-bottom: 30px;
        font-size: 1.5rem;
    }

    .client-logos {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .client-logos img {
        height: 60px;
        opacity: 0.7;
        transition: opacity 0.3s ease;
        filter: blur(16px);
    }

    .client-logos img:hover {
        opacity: 1;
    }

    /* Features Section */
    .features-section {
        padding: 60px 0;
        background-color: var(--white);
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .feature-card {
        background-color: var(--light);
        border-radius: 8px;
        padding: 25px;
        transition: all 0.3s ease;
        border: 1px solid var(--light-gray);
        position: relative;
        overflow: hidden;
    }

    .feature-card::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 74, 74, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-color: var(--primary);
    }

    .feature-card:hover::after {
        opacity: 1;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        margin-bottom: 15px;
    }

    /* Unique colors for feature icons */
    .feature-card:nth-child(1) .feature-icon { background-color: rgba(255, 74, 74, 0.1); color: #FF4A4A; }
    .feature-card:nth-child(2) .feature-icon { background-color: rgba(59, 130, 246, 0.1); color: #3B82F6; }
    .feature-card:nth-child(3) .feature-icon { background-color: rgba(16, 185, 129, 0.1); color: #10B981; }
    .feature-card:nth-child(4) .feature-icon { background-color: rgba(245, 158, 11, 0.1); color: #F59E0B; }
    .feature-card:nth-child(5) .feature-icon { background-color: rgba(168, 85, 247, 0.1); color: #A855F7; }
    .feature-card:nth-child(6) .feature-icon { background-color: rgba(20, 184, 166, 0.1); color: #14B8A6; }

    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
        color: var(--dark);
    }

    .feature-card p {
        color: var(--gray);
        margin-bottom: 15px;
        font-size: 0.875rem;
    }

    .feature-link {
        color: var(--primary);
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 5px;
        transition: color 0.3s ease;
        font-size: 0.875rem;
    }

    .feature-link:hover {
        color: var(--primary-dark);
    }

    /* Demo Section */
    .demo-section {
        padding: 60px 0;
        background-color: var(--light);
    }

    .demo-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }

    .demo-content h2 {
        font-size: 2rem;
        margin-bottom: 15px;
        color: var(--dark);
    }

    .demo-content p {
        color: var(--gray);
        margin-bottom: 25px;
        font-size: 0.95rem;
    }

    .demo-form .form-group {
        margin-bottom: 15px;
    }

    .demo-form input {
        width: 100%;
        padding: 0.65rem 1rem;
        border-radius: 8px;
        border: 1px solid var(--light-gray);
        font-family: inherit;
        transition: all 0.3s ease;
        font-size: 0.875rem;
        color: var(--dark);
        background: var(--white);
    }

    .demo-form input:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 5px rgba(255, 74, 74, 0.3);
    }

    .demo-form input::placeholder {
        color: var(--gray);
    }

    .demo-image img {
        border-radius: 8px;
    }

    /* Mobile Section */
    .mobile-section {
        padding: 60px 0;
        background-color: var(--white);
    }

    .mobile-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }

    .mobile-content h2 {
        font-size: 2rem;
        margin-bottom: 15px;
        color: var(--dark);
    }

    .mobile-content p {
        color: var(--gray);
        margin-bottom: 25px;
        font-size: 0.95rem;
    }

    .mobile-features {
        margin-bottom: 25px;
    }

    .mobile-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
        font-size: 0.875rem;
        color: var(--dark);
    }

    .mobile-features i {
        color: var(--primary);
    }

    .app-buttons {
        display: flex;
        gap: 15px;
    }

    .app-btn img {
        height: 45px;
        border-radius: 8px;
        transition: transform 0.3s ease;
    }

    .app-btn:hover img {
        transform: translateY(-3px);
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 60px 0;
        background-color: var(--light);
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .testimonial-card {
        background-color: var(--white);
        border-radius: 8px;
        padding: 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
    }

    .testimonial-rating {
        color: #F59E0B;
        margin-bottom: 15px;
    }

    .testimonial-text {
        font-style: italic;
        margin-bottom: 15px;
        color: var(--gray);
        font-size: 0.875rem;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .testimonial-author img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
        border: 1px solid var(--light-gray);
    }

    .testimonial-author h4 {
        margin-bottom: 5px;
        font-size: 0.95rem;
        color: var(--dark);
    }

    .testimonial-author p {
        color: var(--gray);
        font-size: 0.85rem;
    }

    /* Pricing Section */
    .pricing-section {
        padding: 60px 0;
        background-color: var(--white);
    }

    .pricing-toggle {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
    }

    .switch {
        position: relative;
        display: inline-block;
        width: 50px;
        height: 28px;
    }

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--light-gray);
        transition: .4s;
    }

    .slider:before {
        position: absolute;
        content: "";
        height: 22px;
        width: 22px;
        left: 3px;
        bottom: 3px;
        background-color: var(--white);
        transition: .4s;
    }

    input:checked + .slider {
        background-color: var(--primary);
    }

    input:checked + .slider:before {
        transform: translateX(22px);
    }

    .slider.round {
        border-radius: 28px;
    }

    .slider.round:before {
        border-radius: 50%;
    }

    .discount {
        color: var(--primary);
        font-weight: 600;
        font-size: 0.85rem;
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .pricing-card {
        background-color: var(--light);
        border-radius: 8px;
        padding: 25px;
        transition: all 0.3s ease;
        position: relative;
        border: 1px solid var(--light-gray);
    }

    .pricing-card.featured {
        border: 2px solid var(--primary);
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .popular-badge {
        position: absolute;
        top: -10px;
        right: 15px;
        background-color: var(--primary);
        color: var(--white);
        padding: 5px 12px;
        border-radius: 8px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .pricing-header {
        text-align: center;
        margin-bottom: 20px;
    }

    .pricing-header h3 {
        font-size: 1.25rem;
        margin-bottom: 8px;
        color: var(--dark);
    }

    .pricing-header p {
        color: var(--gray);
        margin-bottom: 10px;
        font-size: 0.875rem;
    }

    .price {
        margin-bottom: 15px;
    }

    .amount {
        font-size: 2rem;
        font-weight: 700;
        color: var(--primary);
    }

    .period {
        font-size: 0.9rem;
        color: var(--gray);
    }

    .pricing-features ul {
        margin-bottom: 20px;
    }

    .pricing-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
        font-size: 0.875rem;
        color: var(--dark);
    }

    .pricing-features i {
        font-size: 0.9rem;
    }

    .fa-check {
        color: var(--success);
    }

    .fa-times {
        color: var(--light-gray);
    }

    .pricing-footer {
        text-align: center;
    }

    /* FAQ Section */
    .faq-section {
        padding: 60px 0;
        background-color: var(--light);
    }

    .faq-grid {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-card {
        background-color: var(--white);
        border-radius: 8px;
        margin-bottom: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        overflow: hidden;
    }

    .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
    }

    .faq-question h3 {
        font-size: 1rem;
        color: var(--dark);
    }

    .faq-question i {
        color: var(--primary);
        transition: transform 0.3s ease;
    }

    .faq-answer {
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .faq-answer p {
        color: var(--gray);
        padding-bottom: 15px;
        font-size: 0.875rem;
    }

    .faq-card.active .faq-question i {
        transform: rotate(180deg);
    }

    .faq-card.active .faq-answer {
        max-height: 200px;
    }

    /* Final CTA Section */
    .final-cta {
        padding: 60px 0;
        background: linear-gradient(135deg, #ffffff 0%, #ffeaea 100%);
        color: #c30c0c;
        text-align: center;
    }

    .final-cta h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .final-cta p {
        font-size: 1rem;
        margin-bottom: 25px;
        opacity: 0.9;
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    /* Contact Section */
    .contact-section {
        padding: 60px 0;
        background-color: var(--white);
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .contact-info h2 {
        font-size: 2rem;
        margin-bottom: 15px;
        color: var(--dark);
    }

    .contact-info p {
        color: var(--gray);
        margin-bottom: 25px;
        font-size: 0.95rem;
    }

    .contact-methods {
        margin-top: 30px;
    }

    .contact-method {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
    }

    .method-icon {
        width: 45px;
        height: 45px;
        background-color: rgba(255, 74, 74, 0.1);
        color: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
    }

    .method-details h4 {
        margin-bottom: 5px;
        font-size: 0.95rem;
        color: var(--dark);
    }

    .method-details a {
        color: var(--gray);
        transition: color 0.3s ease;
        font-size: 0.875rem;
    }

    .method-details a:hover {
        color: var(--primary);
    }

    .contact-form {
        background-color: var(--light);
        border-radius: 8px;
        padding: 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: var(--gray);
        font-size: 0.875rem;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 0.65rem 1rem;
        border-radius: 8px;
        border: 1px solid var(--light-gray);
        font-family: inherit;
        transition: all 0.3s ease;
        font-size: 0.875rem;
        color: var(--dark);
        background: var(--white);
    }

    .form-group textarea {
        resize: vertical;
        min-height: 100px;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 5px rgba(255, 74, 74, 0.3);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: var(--gray);
    }

    /* Footer */
    .main-footer {
        background-color: var(--secondary);
        color: var(--white);
        padding: 50px 0 0;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-about p {
        opacity: 0.8;
        margin: 15px 0 20px;
        font-size: 0.875rem;
    }

    .social-links {
        display: flex;
        gap: 15px;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .social-links a:hover {
        background-color: var(--primary);
        transform: translateY(-3px);
    }

    .footer-links h3 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer-links ul li {
        margin-bottom: 8px;
    }

    .footer-links a {
        opacity: 0.8;
        transition: opacity 0.3s ease;
        font-size: 0.875rem;
    }

    .footer-links a:hover {
        opacity: 1;
        color: var(--primary);
    }

    .footer-newsletter h3 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer-newsletter p {
        opacity: 0.8;
        margin-bottom: 15px;
        font-size: 0.875rem;
    }

    .newsletter-form {
        display: flex;
    }

    .newsletter-form input {
        flex: 1;
        padding: 0.65rem 1rem;
        border-radius: 8px 0 0 8px;
        border: none;
        font-family: inherit;
        font-size: 0.875rem;
        color: var(--dark);
        background: var(--white);
    }

    .newsletter-form input::placeholder {
        color: var(--gray);
    }

    .newsletter-form button {
        width: 45px;
        background-color: var(--primary);
        color: var(--white);
        border: none;
        border-radius: 0 8px 8px 0;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .newsletter-form button:hover {
        background-color: var(--primary-dark);
    }

    .footer-bottom {
        padding: 15px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-bottom p {
        opacity: 0.8;
        font-size: 0.85rem;
    }

    .legal-links {
        display: flex;
        gap: 15px;
    }

    .legal-links a {
        opacity: 0.8;
        font-size: 0.85rem;
        transition: opacity 0.3s ease;
    }

    .legal-links a:hover {
        opacity: 1;
    }

    /* Responsive Styles */
    @media (max-width: 992px) {
        .hero-grid,
        .demo-grid,
        .mobile-grid,
        .contact-grid {
            grid-template-columns: 1fr;
        }

        .hero-content,
        .demo-content,
        .mobile-content,
        .contact-info {
            text-align: center;
        }

        .hero-cta,
        .cta-buttons,
        .app-buttons {
            justify-content: center;
        }

        .hero-stats,
        .contact-method {
            justify-content: center;
        }

        .hero-image,
        .demo-image,
        .mobile-image {
            order: -1;
        }
    }

    @media (max-width: 768px) {
        
    .nav-links li a {
        color: var(--dark);
        font-weight: 500;
        font-size: 1rem;
        transition: color 0.3s ease;
    }
        /* Header Responsive */
        .hamburger {
            display: block;
        }

        .nav-links {
            display: none;
            position: absolute;
            top: 70px;
            right: 0;
            width: 100%;
            background-color: var(--white);
            flex-direction: column;
            align-items: center;
            padding: 20px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .nav-links.active {
            display: flex;
        }

        .nav-links li {
            margin: 10px 0;
        }

        .nav-links li a {
            font-size: 1.1rem;
        }

        .header-cta {
            margin-left: 0;
        }

        .header-cta .btn-danger {
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
        }

        /* Hero Section */
        .modern-hero {
            padding: 100px 0 60px;
        }

        .hero-content h1 {
            font-size: 1.75rem;
        }

        .hero-subtitle {
            font-size: 1rem;
        }

        .stat-item h3 {
            font-size: 1.5rem;
        }

        /* Clients Section */
        .clients-section p {
            font-size: 1.25rem;
            margin-bottom: 20px;
        }

        .client-logos img {
            height: 50px;
        }

        /* Section Headers */
        .section-header h2 {
            font-size: 1.5rem;
        }

        .section-header p {
            font-size: 0.9rem;
        }

        /* Features Section */
        .features-section {
            padding: 40px 0;
        }

        .feature-icon {
            width: 45px;
            height: 45px;
            font-size: 1.1rem;
        }

        .feature-card h3 {
            font-size: 1rem;
        }

        .feature-card p {
            font-size: 0.85rem;
        }

        /* Demo Section */
        .demo-section {
            padding: 40px 0;
        }

        .demo-content h2 {
            font-size: 1.5rem;
        }

        .demo-content p {
            font-size: 0.9rem;
        }

        /* Mobile Section */
        .mobile-section {
            padding: 40px 0;
        }

        .mobile-content h2 {
            font-size: 1.5rem;
        }

        .mobile-content p {
            font-size: 0.9rem;
        }

        .app-btn img {
            height: 40px;
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 40px 0;
        }

        .testimonial-card {
            padding: 20px;
        }

        .testimonial-text {
            font-size: 0.85rem;
        }

        .testimonial-author img {
            width: 45px;
            height: 45px;
        }

        .testimonial-author h4 {
            font-size: 0.9rem;
        }

        /* Pricing Section */
        .pricing-section {
            padding: 40px 0;
        }

        .pricing-toggle {
            gap: 10px;
        }

        .pricing-card {
            padding: 20px;
        }

        .pricing-header h3 {
            font-size: 1.1rem;
        }

        .amount {
            font-size: 1.75rem;
        }

        /* FAQ Section */
        .faq-section {
            padding: 40px 0;
        }

        .faq-question h3 {
            font-size: 0.95rem;
        }

        .faq-answer p {
            font-size: 0.85rem;
        }

        /* Final CTA */
        .final-cta {
            padding: 40px 0;
        }

        .final-cta h2 {
            font-size: 1.5rem;
        }

        .final-cta p {
            font-size: 0.9rem;
        }

        /* Contact Section */
        .contact-section {
            padding: 40px 0;
        }

        .contact-info h2 {
            font-size: 1.5rem;
        }

        .contact-method {
            flex-direction: column;
            text-align: center;
        }

        .method-icon {
            margin-bottom: 10px;
        }

        /* Footer */
        .main-footer {
            padding: 40px 0 0;
        }

        .footer-grid {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .social-links,
        .legal-links {
            justify-content: center;
        }

        .newsletter-form {
            flex-direction: column;
        }

        .newsletter-form input {
            border-radius: 8px;
            margin-bottom: 10px;
        }

        .newsletter-form button {
            border-radius: 8px;
            width: 100%;
            padding: 10px;
        }
    }

    @media (max-width: 576px) {
        .container {
            padding: 0 10px;
        }

        /* Header */
        .header-smaller {
            height: 70px;
    margin: 0px !important;
    left: 0 !important;
    right: 0;
    width: 100%;
        }

        .logo img {
            max-height: 40px;
        }

        .nav-links {
            top: 60px;
            display: none !important;
        }

        .header-cta .btn-danger {
            padding: 0.4rem 0.8rem;
            font-size: 0.85rem;
        }

        /* Hero Section */
        .modern-hero {
            padding: 80px 0 40px;
        }

        .hero-grid {
            gap: 20px;
        }

        .hero-content h1 {
            font-size: 1.5rem;
        }

        .hero-subtitle {
            font-size: 0.9rem;
        }

        .hero-cta,
        .cta-buttons {
            flex-direction: column;
            gap: 10px;
        }

        .primary-btn,
        .secondary-btn {
            width: 100%;
            text-align: center;
            font-size: 0.875rem;
            padding: 0.65rem 1rem;
        }

        .hero-stats {
            gap: 20px;
        }

        .stat-item h3 {
            font-size: 1.25rem;
        }

        .stat-item p {
            font-size: 0.85rem;
        }

        /* Clients Section */
        .clients-section p {
            font-size: 1rem;
        }

        .client-logos {
            gap: 15px;
        }

        .client-logos img {
            height: 40px;
        }

        /* Features Section */
        .features-grid {
            gap: 20px;
        }

        .feature-card {
            padding: 20px;
        }

        /* Demo Section */
        .demo-grid {
            gap: 20px;
        }

        /* Mobile Section */
        .app-buttons {
            flex-direction: column;
            align-items: center;
        }

        /* Pricing Section */
        .pricing-toggle {
            flex-direction: column;
            gap: 8px;
        }

        .pricing-grid {
            gap: 20px;
        }

        /* Footer */
        .footer-grid {
            gap: 20px;
        }
    }

    