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

body {
    font-family: 'DM Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9fafb;
}

/* Color Variables */
:root {
    --primary-navy: #020659;
    --primary-teal: #14b8a6;
    --accent-green: #22c55e;
    --light-gray: #f9fafb;
    --dark-gray: #374151;
    --white: #ffffff;
    --text-light: #6b7280;
}

/* Navigation */
.navbar {
    background-color: var(--primary-navy) !important;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--white) !important;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    color: var(--primary-teal);
    font-size: 1.8rem;
}

.logo-text {
    color: var(--white);
    font-weight: 600;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-teal) !important;
}

.dropdown-menu {
    background-color: var(--primary-navy);
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.dropdown-item {
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: rgba(20, 184, 166, 0.1);
    color: var(--primary-teal) !important;
}

.btn-primary {
    background-color: var(--primary-teal);
    border-color: var(--primary-teal);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-teal);
    border-color: var(--primary-teal);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-teal);
    border-color: var(--primary-teal);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1e3a8a 100%);
    color: #198754;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.intro-text {
    background: rgba(20, 184, 166, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-teal);
    margin-top: 1.5rem;
}

.hero-cta {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 12px;
}

.hero-visual {
    position: relative;
    padding: 2rem;
}

.search-demo {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.search-box {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.search-box i {
    color: var(--primary-teal);
    margin-right: 1rem;
}

.search-box input {
    border: none;
    background: none;
    flex: 1;
    font-size: 1rem;
    color: var(--dark-gray);
}

.results-preview {
    space-y: 1rem;
}

.result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.result-item i {
    color: var(--primary-teal);
    margin-right: 1rem;
}

.conversion-rate {
    background: var(--accent-green);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.floating-cards {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.floating-cards .card {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.social-card {
    background: #0077b5;
    color: var(--white);
}

.analytics-card {
    background: var(--primary-teal);
    color: var(--white);
    flex-direction: column;
    font-size: 0.75rem;
}

.conversion-card {
    background: var(--accent-green);
    color: var(--white);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating-cards .card:nth-child(2) {
    animation-delay: 1s;
}

.floating-cards .card:nth-child(3) {
    animation-delay: 2s;
}

.hero-logos {
    background: rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
    margin-top: 4rem;
}

.logos-scroll {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.logo-item {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 2px;
}

/* Stats Section */
.stats-section {
    background: var(--primary-navy);
    color: var(--white);
    padding: 4rem 0;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Section Styles */
.section-badge {
    display: inline-block;
    background: var(--primary-teal);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Problem Section */
.problem-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

/* Solution Section */
.solution-section {
    padding: 6rem 0;
    background: var(--white);
}

.solution-visual img {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.features-list {
    padding-left: 2rem;
}

.feature-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--light-gray);
    cursor: pointer;
}

.feature-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin: 0;
}

.feature-header i {
    color: var(--primary-teal);
    transition: transform 0.3s ease;
}

.feature-content {
    padding: 1.5rem;
    background: var(--white);
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--primary-teal);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 1.5rem;
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.process-step img {
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: var(--white);
}

.pricing-card {
    background: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--primary-teal);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-teal);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--accent-green);
    margin-right: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

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

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-gray);
}

.testimonial-author strong {
    color: var(--primary-navy);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--white);
}

.contact-form-container {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 0.2rem rgba(20, 184, 166, 0.25);
}

.thank-you-message {
    text-align: center;
    padding: 3rem;
}

.thank-you-message i {
    font-size: 4rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.thank-you-message h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--primary-navy);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

.footer h5 {
    color: var(--primary-teal);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.footer-contact h6 {
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.footer-contact a {
    color: var(--primary-teal);
    text-decoration: none;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .floating-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .price {
        font-size: 2rem;
    }
}

/* Terms and Privacy Pages */
.terms-section,
.privacy-section {
    padding: 120px 0 80px;
    background: var(--white);
}

.terms-content,
.privacy-content {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.terms-content h1,
.privacy-content h1 {
    color: var(--primary-navy);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-teal);
}

.terms-content h2,
.privacy-content h2 {
    color: var(--primary-navy);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.terms-content h3,
.privacy-content h3 {
    color: var(--primary-teal);
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.terms-content ul,
.privacy-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.terms-content li,
.privacy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-teal);
    margin-top: 1rem;
}

.contact-info a {
    color: var(--primary-teal);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}
