/* Main Navigation */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: linear-gradient(90deg, #22c55e, #a855f7); /* Green to Fuchsia gradient */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-brand img {
    height: 40px;
    width: auto;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff; /* White text for branding */
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: #ffffff; /* White text for better contrast */
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    padding: 8px 16px;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.nav-link:hover {
    background: #ffffff; /* White background on hover */
    color: #22c55e; /* Green text on hover */
    border-color: #ffffff; /* White border on hover */
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-outline {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 0.9rem;
    text-align: center;
    display: inline-block;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.btn-outline:hover {
    background: #ffffff; /* White background on hover */
    color: #22c55e; /* Green text on hover */
    border-color: transparent; /* Transparent border on hover */
}

.btn-primary {
    background: linear-gradient(90deg, #22c55e, #a855f7); /* Green to Fuchsia gradient */
    color: #ffffff;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    text-align: center;
    display: inline-block;
    transition: background 0.3s, color 0.3s;
}

.btn-primary:hover {
    background: #ffffff; /* White background on hover */
    color: #22c55e; /* Green text on hover */
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Download the app - hero */
.hero-app-downloads {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-app-downloads-label {
    font-size: 0.9rem;
    color: #4a4a4a;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.hero-app-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn-app-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid #22c55e;
    color: #22c55e;
    background: #fff;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-app-download:hover {
    background: #22c55e;
    color: #fff;
    border-color: #22c55e;
}

.btn-app-download .material-icons {
    font-size: 1.25rem;
}

.hero-image {
    width: 100%;
    height: auto;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.features-section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #f0f7ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon .material-icons {
    font-size: 2rem;
    color: #007bff;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #4a4a4a;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.pricing-section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid #007bff;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.price span {
    font-size: 1rem;
    color: #4a4a4a;
}

.pricing-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    color: #4a4a4a;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* About Section */
.about-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.stat-item {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #4a4a4a;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background-color: #007bff;
    color: #ffffff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.25rem;
}

/* Contact Tools Section */
.contact-tools-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.tools-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tool-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
}

.tool-icon {
    width: 60px;
    height: 60px;
    background-color: #e3f2fd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.tool-icon .material-icons {
    font-size: 2rem;
    color: #007bff;
}

.tool-card h3 {
    margin-bottom: 1rem;
}

.tool-card p {
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

/* Footer */
.main-footer {
    background-color: #1f2937; /* Dark gray background */
    color: white; /* White text for contrast */
    padding: 60px 0 30px;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.brand-description {
    color: #9ca3af; /* Light gray for description text */
    line-height: 1.6;
}

.footer-links-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-column h4 {
    color: white; /* White headings for better contrast */
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #9ca3af; /* Light gray for links */
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: white; /* White on hover for better visibility */
}

.footer-bottom {
    border-top: 1px solid #374151; /* Subtle border for separation */
    padding-top: 30px;
    text-align: center;
    color: #9ca3af; /* Light gray for bottom text */
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-links-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-links-section {
        grid-template-columns: 1fr;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #4B39EF;
    color: white;
}

.btn-primary:hover {
    background: #3A2BD6;
}

.btn-outline {
    border: 1px solid #E0E3E7;
    color: #57636C;
}

.btn-outline:hover {
    background: #F1F4F8;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .about-stats {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 600px) {
  .main-nav, .footer-content, .auth-container, .profile-section {
    padding: 10px;
    font-size: 1rem;
  }
  .nav-links, .footer-column {
    flex-direction: column;
    align-items: flex-start;
  }
  .profile-picture, .logo {
    width: 48px;
    height: 48px;
  }
  /* Add more mobile-specific styles as needed */
}