/* Base Styles */
/* :root {
    --primary: #00a859;
    --primary-dark: #008548;
    --primary-light: #4cd28a;
    --primary-soft: rgba(0, 168, 89, 0.1);
    --secondary: #ffc107;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --gray: #6c757d;
    --success: #28a745;
    --danger: #dc3545;
    --white: #ffffff;
    --black: #000000;
} */

/* Base Styles */
:root {
    --primary: #804eaf;
    --primary-dark: #7f4996;
    --primary-light: #a856cb;
    --primary-soft: rgba(0, 86, 179, 0.1);
    --secondary: #ffc107;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --gray: #6c757d;
    --success: #28a745;
    --danger: #dc3545;
    --white: #ffffff;
    --black: #000000;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.btn {
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary-soft {
    background-color: var(--primary-soft);
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 6rem;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/subtle-white-feathers.png');
    opacity: 0.1;
}

.hero-image-container {
    position: relative;
}

.floating-card {
    bottom: 2rem;
    right: -1rem;
    max-width: 250px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.bg-primary-soft {
    background-color: var(--primary-soft);
}

/* Client Logos */
.client-logo {
    padding: 1rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
}

/* Features */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Services */
.check-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* Testimonials */
.testimonial-card {
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-rating {
    color: var(--secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 3px solid var(--primary-soft);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pricing */
.pricing-card {
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background-color: var(--secondary);
    color: var(--dark);
    font-weight: 600;
    padding: 0.25rem 2rem;
    transform: rotate(45deg);
    font-size: 0.75rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-value {
    margin: 1rem 0;
}

.pricing-value .currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    margin-right: 0.25rem;
}

.pricing-value .amount {
    font-size: 2.5rem;
    font-weight: 700;
}

.pricing-value .period {
    font-size: 1rem;
    color: var(--gray);
}

.pricing-features {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.pricing-features ul li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.pricing-features ul li i {
    color: var(--primary);
    margin-right: 0.75rem;
    font-size: 0.875rem;
}

.pricing-action {
    margin-top: auto;
}

.pro {
    border-top: 5px solid var(--primary);
}

/* About */
.about-image-container {
    position: relative;
}

.about-pattern {
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: var(--primary-soft);
    border-radius: 1rem;
    bottom: -2rem;
    left: -2rem;
    z-index: -1;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 0;
}

/* CTA */
.cta-section {
    background-color: var(--light);
}

.cta-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 1rem;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.cta-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/subtle-white-feathers.png');
    opacity: 0.1;
}

/* Contact */
.contact-info {
    background-color: var(--primary);
    color: var(--white);
    border-radius: 0.5rem 0 0 0.5rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--white);
    color: var(--primary);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(0, 168, 89, 0.25);
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--white);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    text-decoration: none;
}

.social-icon-footer {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-icon-footer:hover {
    background-color: var(--primary);
    color: var(--white);
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Back to Top */
#backToTop {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Animations */
.animate__fadeIn {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero {
        padding-top: 5rem;
    }

    .cta-card {
        padding: 2rem;
    }

    .contact-info {
        border-radius: 0.5rem 0.5rem 0 0;
    }
}

@media (max-width: 767.98px) {
    .hero {
        text-align: center;
    }

    .pricing-card {
        margin-bottom: 2rem;
    }
}
