/* Manie-like Style - Custom CSS */

:root {
    --primary-color: #5b42f3;
    /* Manie Purple/Blueish */
    --secondary-color: #00ddeb;
    /* Cyan/Teal Gradient End */
    --accent-color: #ff00d4;
    /* Pinkish Accent */
    --bg-light: #fdfdfd;
    --text-dark: #2a2a2a;
    --card-shadow: 0 10px 40px -10px rgba(0, 64, 128, 0.1);
}

body {
    background-color: var(--bg-light);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
}

/* Provider Logos - Square & Clean */
.provider-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    /* Ensures logo fits within square without distortion */
    object-position: center;
    background: white;
    padding: 5px;
    border-radius: 12px;
    /* Rounded corners for the container */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* Subtle lift */
}

/* Gradient Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    /* Clean white/light blue bg */
    color: var(--text-dark);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

/* Abstract shapes */
.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    filter: blur(80px);
    /* Liquid effect */
    opacity: 0.15;
    border-radius: 50%;
    z-index: 0;
}

.hero h1 {
    font-weight: 800;
    letter-spacing: -1px;
    background: -webkit-linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Rounded Cards */
.card-custom {
    border: none;
    border-radius: 20px;
    background: white;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px -15px rgba(0, 64, 128, 0.2);
}

/* Buttons (Pills) */
.btn {
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-color) 0%, #4a2bdf 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(91, 66, 243, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(90deg, #4a2bdf 0%, var(--primary-color) 100%);
    box-shadow: 0 6px 20px rgba(91, 66, 243, 0.4);
    transform: scale(1.02);
}

.btn-warning {
    background: #FFD700;
    color: #333;
    border: none;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
}

/* Tab Pills */
.nav-pills .nav-link {
    color: var(--text-dark);
    border-radius: 30px;
    padding: 10px 25px;
}

.nav-pills .nav-link.active {
    background-color: var(--primary-color);
    color: white;
}

/* Result Cards */
.result-card {
    border-radius: 16px;
    border: 1px solid #eee;
    overflow: hidden;
}

.result-card .card-body {
    padding: 1.5rem;
}

.price-tag {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}