﻿/* OneTracker Custom Styles */

/* Brand Colors */
:root {
    --primary-color: #922C88;
    --primary-color-light: #922c8840;
    --secondary-color: #F97316;
    --success-color: #22C55E;
    --success-color-light: #22c55e26;
    --text-dark: #111827;
    --text-muted: #6B7280;
    --bg-light: #F9FAFB;
    --border-radius: 12px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Typography */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.display-4 {
    font-size: 2.75rem;
    font-weight: 700;
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
}

/* Custom Bootstrap Overrides */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: var(--border-radius);
    padding: 12px 24px;
    font-weight: 500;
    transition: var(--transition);
}

    .btn-primary:hover {
        text-decoration: none;
        background-color: #262626;
        border-color: #262626;
        transform: translateY(-1px);
        box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3);
    }

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: var(--border-radius);
    padding: 12px 24px;
    font-weight: 500;
    transition: var(--transition);
}

    .btn-outline-primary:hover {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        transform: translateY(-1px);
    }

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-success {
    color: var(--success-color) !important;
}

.bg-success {
    background-color: var(--success-color) !important;
}

.bg-success-light {
    background: var(--success-color-light);
}

.bg-primary-light {
    background: var(--primary-color-light);
}
/* Navigation */
.navbar {
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition);
}

    .nav-link:hover {
        color: var(--primary-color) !important;
    }

/* Hero Section */
.hero-section {
    min-height: 60vh;
    /* background: linear-gradient(135deg, #F9FAFB 0%, #E5F3F2 100%); */
    position: relative;
    overflow: hidden;
    background: url('../images/banner-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIwIDIwQzIwIDMxLjA0NTcgMTEuMDQ1NyA0MCAyMCA0MFYyMFoiIGZpbGw9IiMxNEI4QTYiIGZpbGwtb3BhY2l0eT0iMC4wNSIvPgo8L3N2Zz4K') repeat;
        opacity: 0.1;
        z-index: 0;
    }

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.dashboard-mockup {
    max-width: 400px;
    margin: 0 auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.min-vh-75 {
    min-height: 75vh;
}

/* Feature Cards */
.feature-card {
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pain Point Cards */
.pain-point-card {
    padding: 2rem;
    border-radius: var(--border-radius);
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

    .pain-point-card:hover {
        box-shadow: var(--box-shadow);
    }

/* Audience Badges */
.audience-badge {
    transition: var(--transition);
    border-radius: var(--border-radius);
}

    .audience-badge:hover {
        background-color: #f9ebf8;
        transform: translateY(-2px);
    }

/* Testimonials */
.testimonial-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stars i {
    margin: 0 2px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    color: var(--primary-color);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-size: 24px;
}

/* Forms */
.form-control {
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    padding: 12px 16px;
    transition: var(--transition);
}

    .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.2rem rgba(20, 184, 166, 0.25);
    }
/* Animations */
.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo Placeholders */
.logo-placeholder {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e4e4e7;
}

    .logo-placeholder img {
        max-width: 40px;
    }

/* Progress Bar */
.progress {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 6px;
}

.progress-bar {
    background-color: var(--primary-color);
    border-radius: 6px;
}

/* Stat Cards */
.stat-card {
    transition: var(--transition);
}

    .stat-card:hover {
        transform: scale(1.02);
    }

/* Footer */
footer a:hover {
    color: var(--primary-color) !important;
    transition: var(--transition);
}

.social-links a {
    transition: var(--transition);
}

    .social-links a:hover {
        color: var(--primary-color) !important;
        transform: translateY(-2px);
    }
/*-- Custom Style --*/
.navbar-brand img {
    max-width: 240px;
}

.contact-method .icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.social-media-card .social-link,
.support-card .support-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-card .support-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.solution {
    position: relative;
}

    .solution .fa-arrow-right {
        position: absolute;
        left: -35px;
        top: 50%;
        transform: translateY(-50%);
    }

.freetrial-form .form-wrap {
    padding: 30px;
    border: 1px solid #e4e4e7;
}

.value-card .value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method {
    height: 100%;
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
}

.footer-contact .f-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 100%;
    margin-right: 10px;
    min-width: 50px;
    justify-content: center;
}

.footer-contact a, .footer-contact address {
    color: #ffffff;
    text-decoration: none;
    margin: 0;
}

.footer-contact .f-icon i {
    color: #922c88;
}

.btn-outline-danger {
    border-radius: 0.25rem;
}

.timeline .timeline-marker {
    min-width: 12px;
}

.navbar .navbar-toggler {
    box-shadow: none;
}
.pricing-card {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

    .pricing-card:hover {
        border-color: var(--primary-color);
        box-shadow: 0 10px 30px rgba(146, 44, 136, 0.1);
        transform: translateY(-5px);
    }

    .pricing-card.featured {
        border-color: var(--primary-color);
        box-shadow: 0 10px 30px rgba(146, 44, 136, 0.15);
    }

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.features-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.feature-check {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.table-custom {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

    .table-custom th {
        background-color: var(--primary-color);
        color: white;
        border: none;
        padding: 20px;
        font-weight: 600;
    }

    .table-custom td {
        padding: 15px 20px;
        border-color: #e9ecef;
        vertical-align: middle;
    }

    .table-custom tr:nth-child(even) {
        background-color: var(--bg-light);
    }

.popular-badge {
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}
#comparison .fa-circle-check {
    color: var(--primary-color);
}
/* Responsive Design */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.2rem;
    }

    .hero-section {
        text-align: center;
        padding: 3rem 0;
    }

    .dashboard-mockup {
        margin-top: 2rem;
        max-width: 300px;
    }

    .feature-card {
        margin-bottom: 1rem;
    }

    .btn-lg {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .navbar-brand img {
        max-width: 180px;
    }
}

@media (max-width: 576px) {
    .display-4 {
        font-size: 1.8rem;
    }

    .lead {
        font-size: 1rem;
    }

    .pain-point-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --text-dark: #F3F4F6;
        --text-muted: #9CA3AF;
        --bg-light: #1F2937;
    }
}

@media (max-width: 991px) {
    .hero-image, .features-hero-image {
        margin-top: 30px;
    }
}

ol, ul {
    list-style: none;
}

a {
    color: #60b0e2;
    text-decoration: none;
    display: inline-block;
}

   /* a:hover {
        text-decoration: underline;
    }*/

.site-map-section {
    padding: 60px 0;
}

.sitemap-list, .sitemap-list ul {
    margin: 0;
    padding: 0;
}

    .sitemap-list li {
        margin: 0;
        padding: 0;
    }

        .sitemap-list li li {
            display: inline-block;
        }

    .sitemap-list a {
        display: inline-block;
        padding: 10px 30px;
        margin: 0 10px 15px 0;
        border-radius: 30px;
        background-color: #fff;
        box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
        color: #60b0e2 !important;
    }

        .sitemap-list a:hover {
            color: #fff !important;
            background-color: #922C88;
            text-decoration: none;
        }

    .sitemap-list strong {
        display: block;
        font-size: 21px;
        padding: 15px 0 13px 0;
    }

.page-not-found {
    padding-top: 60px;
    margin-bottom: 25px;
}

    .page-not-found h2 {
        text-align: center;
    }

    .page-not-found .title-text {
        margin: 0px auto 60px;
    }
.vs-pages {
    color: var(--bs-secondary-color) !important;
}
    .vs-pages h1, .vs-pages h2, .vs-pages h3, .vs-pages h4, .vs-pages h5,.vs-pages h6,
    .terms-pages h1, .terms-pages h2, .terms-pages h3, .terms-pages h4, .terms-pages h5, .terms-pages h6 {
        margin-bottom: 16px;
        color: rgba(var(--bs-dark-rgb));
    }
.vs-pages table {
    text-align: center;
    width: 100%;
}
    .vs-pages table th, .vs-pages table td {
        padding: 10px;
    }
    .vs-pages .faq-sec {
        margin-top: 30px;
    }
    .vs-pages .faq-sec ul {
        margin-top: 10px;
        list-style: disc;
    }
    .vs-pages table h3 {
        font-size: 22px;
        margin: 0;
    }
    .vs-pages .bannerimg, .vs-pages img {
        margin: 0 auto;
        display: block;
        max-width: 100%;
        height: auto;
        border-radius: 16px;
    }
.terms-pages {
    padding: 40px 0;
}

.terms-pages {
    color: var(--bs-secondary-color) !important;
}
    .terms-pages a {
        color: var(--primary-color);
    }
.vs-pages .card-custom {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
    .vs-pages .intro-section .card-custom:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
.vs-pages .table-custom {
    border-radius: 12px;
    overflow: hidden;
}

    .vs-pages .table-custom thead {
        background: var(--primary-color);
        color: white;
    }

    .vs-pages .table-custom tbody tr:hover {
        background-color: rgba(99, 102, 241, 0.05);
    }

.vs-pages .badge-success {
    background-color: #10b981;
}

.vs-pages .badge-danger {
    background-color: #ef4444;
}

.vs-pages .text-primary-custom {
    color: var(--primary-color) !important;
}

.vs-pages .bg-light-custom {
    background-color: var(--bg-light);
}
.vs-pages .list-checkmark li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.vs-pages .list-checkmark li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}
.vs-pages .highlight-box {
    background: #f9ebf8;
    padding: 40px;
    border-radius: 16px;
    margin: 40px 0 0;
}
.vs-pages .features-section ul {
    list-style: disc;
}
.terms-pages ul li {
    list-style: disc;
}
@media (min-width: 1200px) {
    .terms-pages h2 {
        font-size: 28px;
    }

    .terms-pages h3 {
        font-size: 22px;
    }
}
.terms-pages strong {
    color: rgba(var(--bs-dark-rgb));
}
@media (max-width: 767px) {
    .vs-pages .highlight-box {
        padding: 20px;
    }
}