/* Landing Page Specific CSS */
:root {
    --primary: #6f42c1; /* Purple */
    --primary-light: #f3e8ff;
    --primary-hover: #59359a;
    --secondary: #198754; /* Green */
    --secondary-light: #d1e7dd;
    --secondary-hover: #146c43;
    --text-dark: #2d3748;
    --text-muted: #718096;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.text-primary-custom { color: var(--primary) !important; }
.text-secondary-custom { color: var(--secondary) !important; }
.bg-primary-custom { background-color: var(--primary) !important; }
.bg-secondary-custom { background-color: var(--secondary) !important; }
.bg-light-purple { background-color: var(--primary-light) !important; }

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary);
    color: white;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
}
.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
}

.btn-secondary-custom {
    background-color: var(--secondary);
    color: white;
    border: 2px solid var(--secondary);
    transition: all 0.3s ease;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
}
.btn-secondary-custom:hover {
    background-color: var(--secondary-hover);
    border-color: var(--secondary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.3);
}

.btn-outline-primary-custom {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
}
.btn-outline-primary-custom:hover {
    background-color: var(--primary);
    color: white;
}

/* Navbar */
.navbar-custom {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.navbar-custom .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 5px;
    position: relative;
}
.navbar-custom .nav-link:hover {
    color: var(--primary);
}
.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}
.navbar-custom .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #f3e8ff 0%, #ffffff 100%);
    overflow: hidden;
}
.hero-shape {
    position: absolute;
    right: -10%;
    top: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(111,66,193,0.1) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.hero-title span {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-image-placeholder {
    width: 100%;
    height: 450px;
    background: var(--primary-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.floating-element {
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Smart Search */
.smart-search-wrapper {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}
.search-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.02);
}

/* Cards & Icons */
.icon-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
    height: 100%;
}
.icon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
}
.icon-wrapper.purple { background: var(--primary-light); color: var(--primary); }
.icon-wrapper.green { background: var(--secondary-light); color: var(--secondary); }

/* Provider Cards */
.provider-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}
.provider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.provider-image {
    height: 200px;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
}
.provider-card-body {
    padding: 20px;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    margin: 15px;
}
.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e2e8f0;
    margin-right: 15px;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #59359a 100%);
    border-radius: 30px;
    padding: 60px 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Footer */
.footer-area {
    background: #111827;
    color: #9ca3af;
    padding: 80px 0 30px;
}
.footer-area h5 {
    color: white;
    margin-bottom: 20px;
}
.footer-area a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-area a:hover {
    color: var(--secondary);
}
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 10px;
    transition: all 0.3s;
}
.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--secondary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(25, 135, 84, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}
.floating-contact:hover {
    transform: scale(1.1);
    color: white;
}
