:root {
    /* --- Love/Romantic Theme Palette --- */
    --primary-color: #c21a27;      /* Main Deep Red */
    --primary-light: #e63946;      /* Lighter Red */
    --accent-color: #ffd1d4;       /* Soft Pink Accent */
    
    --bg-body: #fffafa;            /* Very light warm white */
    --white: #ffffff;
    
    /* Text Colors */
    --text-main: #4a0a10;          /* Dark Burgundy Text */
    --text-muted: #7c2d35;         /* Muted Red-Brown */
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #c21a27 0%, #e63946 100%);
    --gradient-btn: linear-gradient(to right, #c21a27, #d90429);
    --gradient-soft: linear-gradient(to bottom, #ffffff, #fff0f1);
    
    /* UI Elements */
    --shadow-soft: 0 10px 30px rgba(194, 26, 39, 0.1);
    --shadow-hover: 0 15px 40px rgba(194, 26, 39, 0.2);
    --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Hind Siliguri', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
}

a { text-decoration: none; transition: 0.3s; color: inherit; }
ul { list-style: none; }

/* --- 1. Header (Compact & Glassy) --- */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(194, 26, 39, 0.1);
    padding: 10px 5%;
    position: sticky; top: 0; z-index: 1000;
    display: flex; justify-content: space-between; align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.logo-container { display: flex; align-items: center; gap: 8px; }
.logo-icon { color: var(--primary-color); font-size: 1.5rem; animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.1); } 100% { transform: scale(1); } }

.logo-text {
    font-size: 1.6rem; font-weight: 800;
    background: var(--gradient-btn); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.desktop-nav { display: flex; gap: 20px; }
.desktop-nav a {
    font-size: 0.95rem; font-weight: 600; color: var(--text-muted);
    padding: 5px 12px; border-radius: 20px;
}
.desktop-nav a:hover { background: var(--accent-color); color: var(--primary-color); }

.login-btn {
    background: var(--primary-color); color: white !important;
    padding: 6px 20px; border-radius: 50px; font-size: 0.9rem; font-weight: 600;
    box-shadow: 0 4px 10px rgba(194, 26, 39, 0.3);
}
.login-btn:hover { background: #a0121e; transform: translateY(-2px); }

.mobile-menu-icon { display: none; color: var(--primary-color); font-size: 1.4rem; cursor: pointer; }

/* Mobile Drawer */
.mobile-drawer {
    position: fixed; top: 0; left: -280px; width: 260px; height: 100vh;
    background: white; z-index: 1002; transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px; box-shadow: 5px 0 25px rgba(0,0,0,0.1);
}
.mobile-drawer.active { left: 0; }
.mobile-drawer ul li { border-bottom: 1px solid #ffebeb; margin-bottom: 10px; }
.mobile-drawer ul li a { display: block; padding: 10px; font-weight: 600; color: var(--text-main); }
.overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(74, 10, 16, 0.6); z-index: 1001; display: none; backdrop-filter: blur(2px);
}
.overlay.active { display: block; }

/* --- 2. Hero Section (Compact Gradient) --- */
.hero {
    background: var(--gradient-hero);
    padding: 60px 20px 100px 20px; /* Bottom padding creates space for search */
    text-align: center;
    border-radius: 0 0 50% 50% / 30px; /* Modern curve */
    position: relative; overflow: hidden;
}
.hero::before, .hero::after {
    content: ''; position: absolute; border-radius: 50%;
    background: rgba(255,255,255,0.1); filter: blur(40px);
}
.hero::before { width: 300px; height: 300px; top: -100px; left: -50px; }
.hero::after { width: 200px; height: 200px; bottom: 20px; right: -20px; }

.hero-content { position: relative; z-index: 2; }
.hero h1 {
    font-size: 2.8rem; color: white; margin-bottom: 10px;
    font-weight: 800; line-height: 1.2;
}
.hero h1 span { color: #ffe3e3; }
.hero p { color: #ffebec; font-size: 1.1rem; margin-bottom: 25px; }

.quote-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 15px 25px; border-radius: var(--radius);
    color: white; font-size: 0.95rem; max-width: 650px; margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* --- 3. Search Section (Floating) --- */
.search-wrapper { margin-top: -70px; padding: 0 15px; position: relative; z-index: 10; }
.search-card {
    background: white; border-radius: 16px; padding: 25px;
    box-shadow: var(--shadow-soft); max-width: 1000px; margin: 0 auto;
    border: 1px solid #fff0f1;
}
.search-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px; align-items: end;
}
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text-muted); margin-bottom: 6px; }
.form-control {
    width: 100%; padding: 12px; border: 1px solid #ffebeb;
    border-radius: 8px; font-size: 0.95rem; background: #fffafa; outline: none;
    color: var(--text-main); font-family: inherit;
}
.form-control:focus { border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(194, 26, 39, 0.1); }

.search-submit {
    background: var(--primary-color); color: white; border: none;
    padding: 12px; border-radius: 8px; font-weight: 600; cursor: pointer;
    width: 100%; transition: 0.3s; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.search-submit:hover { background: #a0121e; box-shadow: 0 5px 15px rgba(194, 26, 39, 0.3); }

/* Advanced Filter Toggle */
.filter-toggle-btn {
    width: 100%; background: transparent; border: none;
    color: var(--primary-color); font-weight: 600; cursor: pointer;
    margin-top: 15px; padding-top: 10px; border-top: 1px dashed #ffebeb;
    display: flex; align-items: center; justify-content: center; gap: 5px;
}
.advanced-filters { display: none; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin-top: 15px; }
.advanced-filters.active { display: grid; animation: slideDown 0.3s ease; }
@keyframes slideDown { from{opacity:0; transform:translateY(-10px);} to{opacity:1; transform:translateY(0);} }


/* --- Common Section Styles --- */
section { padding: 50px 20px; }
.section-title { text-align: center; font-size: 2rem; color: var(--text-main); margin-bottom: 5px; font-weight: 700; }
.section-title span { color: var(--primary-color); }
.section-subtitle { text-align: center; color: var(--text-muted); margin-bottom: 40px; font-size: 1rem; }

/* --- 4. Slider (Profiles & Reviews) --- */
.slider-container { position: relative; max-width: 1200px; margin: 0 auto; padding: 0 10px; }
.slider-wrapper {
    display: flex; gap: 20px; overflow-x: auto;
    scroll-behavior: smooth; padding-bottom: 20px; scrollbar-width: none;
}
.slider-wrapper::-webkit-scrollbar { display: none; }

.profile-card {
    flex: 0 0 260px; /* Fixed Width */
    background: white; border-radius: var(--radius);
    overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #fff0f1; transition: 0.3s;
}
.profile-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }

.card-image-box { height: 220px; position: relative; background: #ffebeb; }
.card-image-box img { width: 100%; height: 100%; object-fit: cover; }
.view-badge {
    position: absolute; top: 10px; right: 10px;
    background: rgba(0,0,0,0.6); color: white;
    padding: 3px 10px; border-radius: 20px; font-size: 0.75rem;
}

.card-content { padding: 15px; text-align: center; }
.card-content h3 { font-size: 1.2rem; color: var(--text-main); margin-bottom: 10px; }
.bio-info { font-size: 0.85rem; color: #666; margin-bottom: 4px; display: flex; align-items: center; gap: 6px; justify-content: center; }
.bio-info i { color: var(--primary-color); width: 15px; }

.view-profile-btn {
    display: block; width: 100%; padding: 10px; margin-top: 15px;
    background: white; border: 1px solid var(--primary-color);
    color: var(--primary-color); border-radius: 6px; font-weight: 600;
}
.view-profile-btn:hover { background: var(--primary-color); color: white; }

.slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 40px; height: 40px; border-radius: 50%;
    background: white; border: none; color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); cursor: pointer; z-index: 5;
    transition: 0.3s;
}
.slider-btn:hover { background: var(--primary-color); color: white; }
.slider-btn.prev { left: -10px; }
.slider-btn.next { right: -10px; }

/* --- 5. CTA Section --- */
.cta-section { background: var(--gradient-soft); text-align: center; border-radius: 20px; margin: 20px; }
.cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 30px; }

.btn-gradient-large {
    background: var(--gradient-btn); color: white; padding: 14px 35px;
    border-radius: 50px; font-weight: 700; display: flex; align-items: center; gap: 10px;
    box-shadow: 0 8px 20px rgba(194, 26, 39, 0.25);
}
.btn-gradient-large:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(194, 26, 39, 0.35); }

.btn-outline-large {
    background: white; color: var(--primary-color); padding: 14px 35px;
    border: 2px solid var(--primary-color); border-radius: 50px;
    font-weight: 700; display: flex; align-items: center; gap: 10px;
}
.btn-outline-large:hover { background: #fff0f1; }

/* --- 6. Stats Section --- */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; max-width: 1100px; margin: 0 auto; }
.stat-card {
    background: white; padding: 30px 20px; border-radius: 15px;
    text-align: center; box-shadow: var(--shadow-soft); border: 1px solid #fff5f6;
    transition: 0.3s;
}
.stat-card:hover { transform: translateY(-5px); }
.stat-icon {
    width: 60px; height: 60px; background: #fff0f1; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 15px;
    color: var(--primary-color); font-size: 1.5rem;
}
.stat-number { font-size: 2rem; font-weight: 800; color: var(--primary-color); margin-top: 5px; }

/* --- 7. Process Section --- */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; max-width: 1100px; margin: 0 auto; }
.process-card {
    background: white; padding: 30px 20px; border-radius: 15px;
    text-align: center; border: 1px solid #ffebeb; position: relative;
    overflow: hidden;
}
.process-icon-box {
    font-size: 2.5rem; color: var(--primary-color); margin-bottom: 15px;
}
.process-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--text-main); }
.process-card p { font-size: 0.9rem; color: #777; }

/* --- 8. Review Section --- */
.review-section { background: #fff5f6; }
.review-card {
    flex: 0 0 320px; background: white; padding: 30px; border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03); display: flex; flex-direction: column;
}
.review-text { font-style: italic; color: #555; margin-bottom: 20px; flex-grow: 1; font-size: 0.95rem; }
.reviewer-footer { border-top: 1px solid #eee; padding-top: 15px; margin-top: auto; }
.reviewer-footer h4 { color: var(--primary-color); font-size: 1.1rem; }
.reviewer-footer p { font-size: 0.85rem; color: #888; }

/* --- Footer --- */
footer {
    background: #4a0a10; /* Dark Burgundy */
    color: #ffd1d4; padding: 40px 20px; text-align: center;
}
.footer-links { margin-bottom: 20px; }
.footer-links a { color: white; margin: 0 15px; font-size: 0.9rem; opacity: 0.8; }
.footer-links a:hover { opacity: 1; color: var(--primary-light); }
.social-icons a {
    width: 40px; height: 40px; background: rgba(255,255,255,0.1);
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%; margin: 0 8px; color: white; transition: 0.3s;
}
.social-icons a:hover { background: var(--primary-color); }

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .mobile-menu-icon { display: block; }
    
    .hero h1 { font-size: 2.2rem; }
    .search-wrapper { margin-top: -50px; }
    .search-grid { grid-template-columns: 1fr; }
    .search-submit { grid-column: auto; }
    
    .slider-btn { display: none; } /* Hide buttons on mobile, swipe is better */
    .profile-card { flex: 0 0 85%; } /* Show 1 card fully */
    .review-card { flex: 0 0 90%; }
    
    .cta-buttons { flex-direction: column; width: 100%; }
    .btn-gradient-large, .btn-outline-large { width: 100%; justify-content: center; }
}
.active-link-menu {
   
   background-color: var(--accent-color);
    color: var(--primary-color);
}