/* Global Styles */
body {
    background: #f8f9fa;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(240, 242, 245, 0.5) 0%, transparent 50%);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    padding: 80px 0;
    margin-top: -20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

/* Cards */
.custom-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    background: white;
}

.custom-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.2);
}

.custom-card-header {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 18px 20px;
    border-bottom: none;
}

.custom-card .card-body {
    padding: 20px;
}

.custom-card h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.custom-card h6 {
    font-size: 1rem;
}

/* Search Card */
.search-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    margin-top: -40px;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(79, 172, 254, 0.1);
}

/* Badges */
.custom-badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.match-badge {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: bold;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(250, 112, 154, 0.3);
    font-size: 0.8rem;
}

.match-badge.high {
    background: linear-gradient(135deg, #0ba360 0%, #3cba92 100%);
    box-shadow: 0 4px 15px rgba(11, 163, 96, 0.3);
}

.match-badge.medium {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    box-shadow: 0 4px 15px rgba(250, 112, 154, 0.3);
}

.match-badge.low {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

/* Buttons */
.custom-btn {
    border-radius: 20px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: none;
}

.custom-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.3);
}

.custom-btn-primary {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border: none;
    color: white;
}

.custom-btn-outline {
    border: 2px solid #4facfe;
    color: #4facfe;
    background: white;
}

.custom-btn-outline:hover {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    border-color: transparent;
}

/* Form Inputs */
.custom-input, .custom-select {
    border-radius: 12px;
    border: 2px solid #e3f2fd;
    padding: 14px 18px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.custom-input:focus, .custom-select:focus {
    border-color: #4facfe;
    box-shadow: 0 0 0 0.2rem rgba(79, 172, 254, 0.15);
    background: white;
}

/* Logo */
.custom-logo {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid #e0e0e0;
}

/* Section Title */
.section-title {
    color: white;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.section-title h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Pricing Card */
.pricing-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    background: white;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.pricing-card.featured {
    border: 3px solid #ffc107;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.pricing-header {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.pricing-card.featured .pricing-header {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.pricing-badge {
    background: #ffc107;
    color: #000;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 3rem;
    font-weight: bold;
    margin: 20px 0;
}

.pricing-price small {
    font-size: 1rem;
    opacity: 0.8;
}

.pricing-features {
    padding: 30px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.pricing-features i {
    color: #28a745;
    margin-left: 10px;
    font-size: 1.1rem;
}

.pricing-button {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .section-title h1 {
        font-size: 2rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    .search-card {
        padding: 20px;
        margin-top: -30px;
    }
}
