/* assets/css/style.css */

:root {
    --primary-pink: #e82562;
    --primary-pink-hover: #d91b5c;
    --dark-maroon: #4a0e2e;
    --heading-maroon: #541738;
    --soft-pink-bg: #fff5f7;
    --badge-pink-bg: #fde8ef;
    --border-pink: #fbcfe8;
    --text-muted: #6b7280;
    --text-dark: #1f2937;
    --font-heading: 'Noto Sans Sinhala', 'Playfair Display', Georgia, serif;
    --font-body: 'Noto Sans Sinhala', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, .font-serif {
    font-family: var(--font-heading);
}

.text-pink {
    color: var(--primary-pink) !important;
}

.text-maroon {
    color: var(--dark-maroon) !important;
}

.bg-soft-pink {
    background-color: var(--soft-pink-bg) !important;
}

/* Custom Buttons */
.btn-pink {
    background-color: var(--primary-pink);
    color: #ffffff;
    border: 1px solid var(--primary-pink);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-pink:hover {
    background-color: var(--primary-pink-hover);
    color: #ffffff;
    border-color: var(--primary-pink-hover);
    box-shadow: 0 4px 12px rgba(232, 37, 98, 0.25);
}

.btn-outline-pink {
    background-color: transparent;
    color: var(--primary-pink);
    border: 1px solid var(--primary-pink);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-pink:hover {
    background-color: var(--primary-pink);
    color: #ffffff;
}

/* Header & Navbar */
.main-navbar {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-maroon);
    line-height: 1.1;
    display: block;
}

.brand-subtitle {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
    display: block;
}

.navbar-nav .nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: #374151;
    padding: 0.5rem 0.85rem !important;
    transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-pink);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(180deg, #fffafa 0%, #fff0f3 100%);
    padding-top: 2rem;
    padding-bottom: 3.5rem;
    overflow: hidden;
}

.badge-trust {
    background-color: var(--badge-pink-bg);
    color: var(--primary-pink);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid rgba(232, 37, 98, 0.15);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--heading-maroon);
    line-height: 1.25;
}

.hero-title-italic {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-pink);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.6;
}

.hero-image-wrapper {
    position: relative;
    text-align: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
}

/* Filter Search Card */
.search-filter-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    padding: 1.5rem 1.8rem;
    margin-top: -2rem;
    position: relative;
    z-index: 10;
    border: 1px solid #f3f4f6;
}

.search-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-maroon);
    font-family: var(--font-heading);
}

.search-filter-card label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 0.3rem;
}

.search-filter-card .form-select {
    border-color: #e5e7eb;
    font-size: 0.825rem;
    color: #374151;
    border-radius: 8px;
    padding: 0.45rem 0.75rem;
}

.search-filter-card .form-select:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 0.2rem rgba(232, 37, 98, 0.15);
}

/* Feature Cards Row */
.feature-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.2rem 1rem;
    border: 1px solid #f3f4f6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.feature-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: var(--badge-pink-bg);
    color: var(--primary-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.2rem;
}

.feature-desc {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0;
    line-height: 1.4;
}

/* How It Works Section */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-maroon);
    text-align: center;
    position: relative;
}

.heart-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.25rem;
    margin-bottom: 2rem;
    color: var(--primary-pink);
    font-size: 0.8rem;
}

.step-card {
    text-align: center;
    position: relative;
    padding: 0 0.5rem;
}

.step-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #fdf2f6;
    border: 2px solid var(--border-pink);
    color: var(--primary-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 0.85rem auto;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon-circle {
    background-color: var(--primary-pink);
    color: #ffffff;
    border-color: var(--primary-pink);
}

.step-num-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.3rem;
}

.step-desc {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.35;
    margin-bottom: 0;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 1.1rem;
}

/* Match Carousel Section */
.match-section {
    background-color: #fafafa;
    padding: 3rem 0;
}

.check-list {
    list-style: none;
    padding-left: 0;
}

.check-list li {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-list li i {
    color: var(--primary-pink);
    background-color: var(--badge-pink-bg);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}

.profile-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    position: relative;
    transition: transform 0.2s ease;
}

.profile-card:hover {
    transform: translateY(-4px);
}

.profile-img-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.profile-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-match {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: var(--primary-pink);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
}

.profile-card-body {
    padding: 0.85rem 1rem;
}

.profile-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.2rem;
}

.profile-info {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.15rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.badge-verified-sm {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.65rem;
    color: var(--primary-pink);
    border: 1px solid var(--border-pink);
    background-color: #fff1f2;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    margin-top: 0.3rem;
}

/* Nav Carousel Buttons */
.carousel-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transition: all 0.2s ease;
}

.carousel-btn:hover {
    background: var(--primary-pink);
    color: #ffffff;
    border-color: var(--primary-pink);
}

/* Promotion Banners */
.promo-banner {
    background: linear-gradient(135deg, #fff0f3 0%, #fce7f3 100%);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(232, 37, 98, 0.1);
    height: 100%;
}

.promo-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-maroon);
    font-family: var(--font-heading);
}

.promo-desc {
    font-size: 0.8rem;
    color: #4b5563;
    line-height: 1.4;
}

.promo-img {
    max-height: 140px;
    object-fit: contain;
}

/* Pricing Section */
.pricing-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 1.5rem 1.2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 2px solid #f59e0b;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.12);
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 15px;
    background-color: var(--primary-pink);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.package-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-maroon);
    font-family: var(--font-heading);
    margin-bottom: 0.75rem;
}

.package-features {
    list-style: none;
    padding-left: 0;
    font-size: 0.8rem;
    color: #4b5563;
    margin-bottom: 1.2rem;
}

.package-features li {
    margin-bottom: 0.4rem;
}

.package-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: #111827;
    margin-top: auto;
    margin-bottom: 1rem;
}

/* Bottom CTA Banner */
.bottom-cta-banner {
    background: linear-gradient(135deg, #fff0f3 0%, #fde8ef 100%);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-maroon);
    font-family: var(--font-heading);
    margin-bottom: 0.4rem;
}

.cta-subtitle {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

/* Media Queries */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-section {
        padding-top: 1.5rem;
    }
    .search-filter-card {
        margin-top: 1rem;
    }
}
