/* ============================================
   Disha Matrimony - Modern Theme
   Colors: Pink #e1137b / Orange #ff6600 / Navy #101130
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --pink: #e1137b;
  --orange: #ff6600;
  --navy: #101130;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: #444; line-height: 1.7; overflow-x: hidden; background: #fff; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.gradient-text { background: linear-gradient(135deg, #e1137b, #ff6600); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* --- Scroll Animations --- */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }
.scale-in { opacity: 0; transform: scale(0.9); transition: opacity 0.6s ease, transform 0.6s ease; }
.scale-in.visible { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: 0.1s; } .delay-2 { transition-delay: 0.2s; } .delay-3 { transition-delay: 0.3s; } .delay-4 { transition-delay: 0.4s; } .delay-5 { transition-delay: 0.5s; }

/* --- Preloader --- */
.preloader { position: fixed; inset: 0; z-index: 99999; background: linear-gradient(135deg, #f70068, #441066); display: flex; align-items: center; justify-content: center; transition: opacity 0.5s ease, visibility 0.5s ease; }
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-ring { width: 60px; height: 60px; border: 4px solid rgba(255,255,255,0.2); border-top-color: #fff; border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ HEADER ============ */
.main-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: #fff; border-bottom: 1px solid #eee; transition: all 0.3s ease; }
.main-header.scrolled { background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; max-width: 1200px; margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 45px; background: #fff; padding: 4px 8px; border-radius: 8px; }
.logo-text { font-size: 22px; font-weight: 700; color: #101130; letter-spacing: 0.5px; }
.logo-text span { color: #e1137b; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: #555; font-size: 15px; font-weight: 500; position: relative; padding: 5px 0; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, #e1137b, #ff6600); transition: width 0.3s ease; }
.nav-links a:hover { color: #e1137b; }
.nav-links a:hover::after { width: 100%; }
.nav-auth { display: none; }
.header-btns { display: flex; align-items: center; gap: 12px; }
.btn-login { padding: 9px 24px; border: 2px solid #ddd; border-radius: 30px; color: #333; font-size: 14px; font-weight: 600; background: transparent; cursor: pointer; transition: all 0.3s ease; }
.btn-login:hover { border-color: #e1137b; color: #e1137b; background: rgba(225,19,123,0.04); }
.btn-signup { padding: 10px 26px; border: none; border-radius: 30px; background: linear-gradient(135deg, #e1137b, #ff6600); color: #fff; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(225,19,123,0.3); }
.btn-signup:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(225,19,123,0.45); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 5px; }
.menu-toggle span { display: block; width: 26px; height: 2.5px; background: #333; margin: 6px 0; border-radius: 2px; transition: all 0.3s ease; }

/* ============ HERO ============ */
.hero { position: relative; background: #101130; }
.hero-img { display: block; width: 100%; height: auto; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(16,17,48,0.6) 0%, rgba(16,17,48,0.15) 100%); z-index: 1; }
.hero-deco-1 { position: absolute; top: 15%; right: 10%; width: 200px; height: 200px; border-radius: 50%; background: rgba(225,19,123,0.08); animation: float 6s ease-in-out infinite; }
.hero-deco-2 { position: absolute; bottom: 20%; left: 5%; width: 150px; height: 150px; border-radius: 50%; background: rgba(255,102,0,0.06); animation: float 8s ease-in-out infinite reverse; }
.hero-deco-3 { position: absolute; top: 40%; left: 20%; width: 80px; height: 80px; border: 2px solid rgba(225,19,123,0.15); border-radius: 50%; animation: float 7s ease-in-out infinite 1s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
.hero-dots { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 30px 30px; }
.hero-content { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; z-index: 2; padding-left: 40px; }
.hero-content p { margin-left: 0; margin-right: auto; max-width: 520px; }
.hero-btns { justify-content: flex-start; }
.hero-badge { margin-left: 0; margin-right: 0; }
.hero-text-left { max-width: 560px; }
.hero-grid { display: flex; flex-direction: column; align-items: flex-start; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(225,19,123,0.15); border: 1px solid rgba(225,19,123,0.3); border-radius: 30px; padding: 8px 20px; margin-bottom: 24px; color: #f77dba; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.hero h1 { font-size: 52px; font-weight: 800; line-height: 1.15; color: #fff; margin-bottom: 20px; }
.hero p { font-size: 17px; color: rgba(255,255,255,0.7); margin-bottom: 35px; max-width: 500px; line-height: 1.8; }
.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-hero-primary { padding: 14px 36px; border: none; border-radius: 30px; background: linear-gradient(135deg, #e1137b, #d11070); color: #fff; font-size: 16px; font-weight: 600; cursor: pointer; box-shadow: 0 8px 30px rgba(225,19,123,0.4); transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 10px; }
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(225,19,123,0.5); }
.btn-hero-secondary { padding: 14px 36px; border: 2px solid rgba(255,255,255,0.25); border-radius: 30px; background: rgba(255,255,255,0.05); color: #fff; font-size: 16px; font-weight: 600; cursor: pointer; backdrop-filter: blur(5px); transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 10px; }
.btn-hero-secondary:hover { border-color: #ff6600; background: rgba(255,102,0,0.1); }

/* Search Card */
.hero-search-card { background: rgba(255,255,255,0.07); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; padding: 40px 35px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.search-card-title { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.search-card-subtitle { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 28px; }
.search-field { margin-bottom: 18px; }
.search-field label { display: block; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.search-field select, .search-field input { width: 100%; padding: 14px 18px; border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; background: rgba(255,255,255,0.06); color: #fff; font-size: 15px; font-family: 'Poppins', sans-serif; outline: none; transition: border-color 0.3s ease; appearance: none; -webkit-appearance: none; }
.search-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.search-field select option { background: #1e1f46; color: #fff; }
.search-field select:focus, .search-field input:focus { border-color: #e1137b; }
.search-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-search { width: 100%; padding: 16px; border: none; border-radius: 14px; background: linear-gradient(135deg, #e1137b, #ff6600); color: #fff; font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 6px; box-shadow: 0 8px 25px rgba(225,19,123,0.35); }
.btn-search:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(225,19,123,0.5); }

/* ============ STATS ============ */
.stats-section { padding: 80px 0; background: linear-gradient(135deg, #101130 0%, #1a1050 100%); position: relative; overflow: hidden; }
.stats-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 25px 25px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; z-index: 1; }
.stat-item { text-align: center; padding: 30px 20px; border-radius: 20px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); transition: all 0.3s ease; }
.stat-item:hover { background: rgba(225,19,123,0.08); border-color: rgba(225,19,123,0.2); transform: translateY(-5px); }
.stat-icon { width: 60px; height: 60px; border-radius: 16px; background: linear-gradient(135deg, rgba(225,19,123,0.2), rgba(255,102,0,0.1)); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 24px; color: #e1137b; }
.stat-number { font-size: 42px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 6px; }
.stat-number .gradient-text { background: linear-gradient(135deg, #e1137b, #ff6600); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.5); font-weight: 500; }

/* ============ ABOUT ============ */
.about-section { padding: 100px 0; background: #f8f5ff; position: relative; overflow: hidden; }
.about-section::before { content: ''; position: absolute; top: -200px; right: -200px; width: 500px; height: 500px; border-radius: 50%; background: rgba(225,19,123,0.03); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.section-badge { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, rgba(225,19,123,0.1), rgba(255,102,0,0.05)); border: 1px solid rgba(225,19,123,0.15); border-radius: 30px; padding: 6px 18px; margin-bottom: 16px; color: #e1137b; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.section-title { font-size: 38px; font-weight: 800; color: #1e1f36; line-height: 1.2; margin-bottom: 20px; }
.about-text { font-size: 16px; color: #666; margin-bottom: 30px; line-height: 1.8; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 35px; }
.about-feature { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: #fff; border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.04); transition: all 0.3s ease; }
.about-feature:hover { transform: translateX(5px); box-shadow: 0 4px 15px rgba(225,19,123,0.1); }
.about-feature i { width: 32px; height: 32px; border-radius: 8px; background: linear-gradient(135deg, #e1137b, #ff6600); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.about-feature span { font-size: 14px; font-weight: 600; color: #1e1f36; }
.btn-primary { padding: 14px 36px; border: none; border-radius: 30px; background: linear-gradient(135deg, #e1137b, #d11070); color: #fff; font-size: 15px; font-weight: 600; cursor: pointer; box-shadow: 0 8px 25px rgba(225,19,123,0.3); transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 10px; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(225,19,123,0.45); }
.about-image { position: relative; }
.about-image-main { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.about-image-main img { width: 100%; height: 450px; object-fit: cover; }
.about-image-badge { position: absolute; bottom: -20px; left: -20px; background: #fff; border-radius: 16px; padding: 16px 24px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 12px; }
.about-image-badge .badge-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, #e1137b, #ff6600); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; }
.about-image-badge .badge-text strong { display: block; font-size: 18px; color: #1e1f36; }
.about-image-badge .badge-text span { font-size: 12px; color: #999; }

/* ============ FEATURES ============ */
.features-section { padding: 100px 0; background: #fff; }
.features-header { text-align: center; margin-bottom: 60px; }
.features-header .section-title { margin-bottom: 12px; }
.features-header p { font-size: 16px; color: #888; max-width: 600px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.feature-card { text-align: center; padding: 40px 20px; border-radius: 20px; background: #fff; border: 1px solid #f0edf5; transition: all 0.4s ease; cursor: default; position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, #e1137b, #ff6600); transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left; }
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(225,19,123,0.12); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { width: 72px; height: 72px; border-radius: 20px; background: linear-gradient(135deg, rgba(225,19,123,0.08), rgba(255,102,0,0.05)); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 28px; color: #e1137b; transition: all 0.4s ease; }
.feature-card:hover .feature-icon { background: linear-gradient(135deg, #e1137b, #ff6600); color: #fff; transform: scale(1.05); }
.feature-card h4 { font-size: 17px; font-weight: 700; color: #1e1f36; margin-bottom: 10px; }
.feature-card p { font-size: 13px; color: #888; line-height: 1.7; }

/* ============ PROFILES ============ */
.profiles-section { padding: 100px 0; background: linear-gradient(135deg, #101130, #1a1050); position: relative; overflow: hidden; }
.profiles-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 25px 25px; }
.profiles-header { text-align: center; margin-bottom: 50px; position: relative; z-index: 1; }
.profiles-header .section-badge { background: rgba(225,19,123,0.15); border-color: rgba(225,19,123,0.3); color: #f77dba; }
.profiles-header .section-title { color: #fff; }
.profiles-tabs { display: flex; justify-content: center; gap: 12px; margin-top: 24px; }
.profile-tab { padding: 10px 28px; border-radius: 30px; border: 2px solid rgba(255,255,255,0.15); background: transparent; color: rgba(255,255,255,0.6); font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; font-family: 'Poppins', sans-serif; }
.profile-tab.active, .profile-tab:hover { background: linear-gradient(135deg, #e1137b, #ff6600); border-color: transparent; color: #fff; box-shadow: 0 4px 20px rgba(225,19,123,0.4); }
.profiles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 1; }
.profile-card { border-radius: 20px; overflow: hidden; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); transition: all 0.4s ease; }
.profile-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); border-color: rgba(225,19,123,0.3); }
.profile-photo { position: relative; height: 280px; overflow: hidden; }
.profile-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.5s ease; }
.profile-card:hover .profile-photo img { transform: scale(1.08); }
.profile-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,17,48,0.9) 0%, transparent 60%); }
.profile-id { position: absolute; top: 14px; left: 14px; background: rgba(225,19,123,0.9); backdrop-filter: blur(5px); padding: 5px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; color: #fff; }
.profile-info { padding: 20px; }
.profile-name { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.profile-details { display: flex; gap: 16px; margin-bottom: 14px; flex-wrap: wrap; }
.profile-detail { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.5); }
.profile-detail i { color: #e1137b; font-size: 12px; }
.profile-actions { display: flex; gap: 8px; }
.profile-action { flex: 1; padding: 10px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.6); font-size: 12px; font-weight: 600; text-align: center; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; gap: 6px; }
.profile-action:hover { background: rgba(225,19,123,0.15); border-color: rgba(225,19,123,0.3); color: #e1137b; }
.profile-action i { font-size: 14px; }

/* ============ TESTIMONIALS ============ */
.testimonials-section { padding: 100px 0; background: #f8f5ff; }
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-header p { font-size: 16px; color: #888; max-width: 600px; margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card { background: #fff; border-radius: 20px; padding: 35px 30px; position: relative; border: 1px solid #f0edf5; transition: all 0.3s ease; }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(225,19,123,0.08); }
.testimonial-quote { font-size: 56px; line-height: 1; color: #e1137b; opacity: 0.15; font-family: Georgia, serif; position: absolute; top: 20px; right: 25px; }
.testimonial-text { font-size: 15px; color: #666; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, #e1137b, #ff6600); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; font-weight: 700; }
.testimonial-name { font-size: 15px; font-weight: 700; color: #1e1f36; }
.testimonial-role { font-size: 12px; color: #999; }
.testimonial-stars { color: #ff6600; font-size: 13px; margin-top: 3px; }

/* ============ APP SECTION ============ */
.app-section { padding: 100px 0; background: linear-gradient(135deg, #101130 0%, #2a1050 100%); position: relative; overflow: hidden; }
.app-section::before { content: ''; position: absolute; top: -100px; left: -100px; width: 400px; height: 400px; border-radius: 50%; background: rgba(225,19,123,0.05); }
.app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.app-content .section-badge { background: rgba(225,19,123,0.15); border-color: rgba(225,19,123,0.3); color: #f77dba; }
.app-content .section-title { color: #fff; margin-bottom: 20px; }
.app-content p { font-size: 16px; color: rgba(255,255,255,0.6); margin-bottom: 35px; line-height: 1.8; }
.app-btns { display: flex; gap: 16px; }
.btn-app { display: inline-flex; align-items: center; gap: 12px; padding: 14px 28px; border-radius: 14px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); color: #fff; transition: all 0.3s ease; }
.btn-app:hover { background: rgba(225,19,123,0.15); border-color: rgba(225,19,123,0.3); transform: translateY(-3px); }
.btn-app i { font-size: 28px; }
.btn-app-text small { font-size: 10px; color: rgba(255,255,255,0.5); display: block; text-transform: uppercase; letter-spacing: 0.5px; }
.btn-app-text strong { font-size: 16px; font-weight: 700; }
.app-image { text-align: right; position: relative; }
.app-mockup { max-height: 500px; filter: drop-shadow(0 20px 60px rgba(225,19,123,0.2)); }
.app-float-card { position: absolute; background: rgba(255,255,255,0.1); backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 14px 20px; display: flex; align-items: center; gap: 12px; animation: float 4s ease-in-out infinite; }
.app-float-card.card-1 { top: 20%; left: -10px; }
.app-float-card.card-2 { bottom: 25%; left: 10px; animation-delay: 1.5s; }
.app-float-card .float-icon { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, #e1137b, #ff6600); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; }
.app-float-card .float-text { color: #fff; font-size: 12px; font-weight: 600; }
.app-float-card .float-text span { display: block; font-size: 10px; color: rgba(255,255,255,0.5); font-weight: 400; }

/* ============ FOOTER ============ */
.main-footer { padding: 60px 0 0; background: #0a0b20; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo img { height: 40px; background: #fff; padding: 4px 8px; border-radius: 8px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 16px; transition: all 0.3s ease; }
.footer-social a:hover { background: linear-gradient(135deg, #e1137b, #ff6600); border-color: transparent; color: #fff; transform: translateY(-3px); }
.footer-col h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: linear-gradient(90deg, #e1137b, #ff6600); border-radius: 1px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.4); transition: all 0.3s ease; }
.footer-col ul li a:hover { color: #e1137b; padding-left: 5px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-bottom span { color: #e1137b; font-weight: 600; }

/* --- Scroll to Top --- */
.scroll-top { position: fixed; bottom: 30px; right: 30px; width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg, #e1137b, #ff6600); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 18px; box-shadow: 0 6px 20px rgba(225,19,123,0.4); opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s ease; z-index: 999; }
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(225,19,123,0.5); }

/* ============ RESPONSIVE ============ */

/* --- Tablet / Small Desktop (≤1024px) --- */
@media (max-width: 1024px) {
  .hero h1 { font-size: 40px; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .profiles-grid { grid-template-columns: repeat(2, 1fr); }
  .app-grid { grid-template-columns: 1fr; text-align: center; }
  .app-content p { margin-left: auto; margin-right: auto; }
  .app-btns { justify-content: center; }
  .app-image { text-align: center; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Mobile (≤768px) --- */
@media (max-width: 768px) {

  /* -- Navigation -- */
  .nav-links, .header-btns { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0 20px;
    gap: 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    z-index: 100;
  }
  .nav-links.active a {
    display: block;
    color: #333;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
  }
  .nav-links.active a:last-child { border-bottom: none; }
  .nav-links.active .nav-auth a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    border: none;
    border-radius: 30px;
    text-align: center;
    font-size: 15px;
  }
  .nav-links.active .nav-auth a::after { display: none; }
  .nav-links.active .nav-auth .btn-signup {
    background: linear-gradient(135deg, #e1137b, #ff6600);
    color: #fff;
    box-shadow: 0 4px 15px rgba(225,19,123,0.3);
  }
  .nav-links.active .nav-auth .btn-login {
    border: 2px solid #ddd;
    background: transparent;
    color: #333;
  }
  .nav-auth {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 18px 0 24px;
    border-top: 1px solid #f0f0f0;
    margin-top: 8px;
  }
  .menu-toggle { display: block; }

  /* -- Hero: redesigned for mobile, not scaled desktop -- */
  .hero { min-height: 85vh; overflow: hidden; }
  .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% 20%;
  }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(16,17,48,0.75) 0%, rgba(16,17,48,0.55) 50%, rgba(16,17,48,0.7) 100%);
  }
  .hero-content {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px 40px;
  }
  .hero-text-left { max-width: 100%; }
  .hero-badge {
    margin: 0 auto 20px;
    font-size: 12px;
    padding: 8px 18px;
    gap: 6px;
    letter-spacing: 1.2px;
  }
  .hero h1 {
    font-size: clamp(28px, 7vw, 36px);
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .hero p {
    font-size: 15px;
    line-height: 1.7;
    max-width: 420px;
    margin: 0 auto 30px;
    text-align: center;
    color: rgba(255,255,255,0.8);
  }
  .hero-btns {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .btn-hero-primary, .btn-hero-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    min-height: 50px;
    padding: 14px 28px;
    font-size: 16px;
  }
  .hero-deco-1, .hero-deco-2, .hero-deco-3, .hero-dots { display: none; }

  /* -- Stats -- */
  .stats-section { padding: 50px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .stat-item { padding: 22px 14px; border-radius: 16px; }
  .stat-icon { width: 48px; height: 48px; font-size: 20px; margin-bottom: 12px; border-radius: 14px; }
  .stat-number { font-size: 32px; }
  .stat-label { font-size: 13px; }

  /* -- About -- */
  .about-section { padding: 60px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .section-title { font-size: 28px; }
  .about-image { order: -1; }
  .about-image-main img { height: 280px; }
  .about-image-badge { bottom: -10px; left: 10px; padding: 12px 18px; }

  /* -- Features -- */
  .features-section { padding: 60px 0; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .feature-card { padding: 28px 16px; }

  /* -- Profiles -- */
  .profiles-section { padding: 60px 0; }
  .profiles-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  /* -- Testimonials -- */
  .testimonials-section { padding: 60px 0; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

  /* -- App Section -- */
  .app-section { padding: 60px 0; }
  .app-float-card { display: none; }

  /* -- Footer -- */
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }

  /* -- Shared Inner Pages -- */
  .page-banner { padding: 100px 0 35px; }
  .page-banner h1 { font-size: 26px; }
  .breadcrumb-list { gap: 5px; }
  .breadcrumb-list li { font-size: 13px; }
  .content-card { padding: 28px 24px; overflow-wrap: break-word; word-wrap: break-word; }
  .content-card h2 { display: block; word-break: normal; overflow-wrap: break-word; }
  .content-card .text, .content-card p { word-break: normal; white-space: normal; overflow-wrap: break-word; word-wrap: break-word; }
  .about-content-image img { width: 100%; height: auto; }
  .about-content-grid { gap: 24px; }
  .form-card { padding: 28px 20px; }
  .form-card h2 { font-size: 22px; }
  .contact-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; gap: 16px; }
  .about-content-grid { grid-template-columns: 1fr; }
  .about-content-grid .about-content-image { order: -1; }
  .about-content-image { text-align: center; }
  .pg-btn { min-width: 36px; height: 36px; font-size: 13px; padding: 0 10px; }
}

/* --- Small Mobile (≤480px) --- */
@media (max-width: 480px) {

  /* -- Header -- */
  .header-inner { padding: 10px 16px; }
  .logo img { height: 38px; }

  /* -- Hero: purpose-built for mobile -- */
  .hero { min-height: 88vh; }
  .hero-img { object-position: 68% 15%; }
  .hero-content { padding: 80px 20px 36px; }
  .hero-badge {
    font-size: 11px;
    padding: 7px 16px;
    margin-bottom: 18px;
    letter-spacing: 1px;
  }
  .hero h1 {
    font-size: clamp(26px, 8vw, 32px);
    line-height: 1.2;
    margin-bottom: 14px;
  }
  .hero p {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 28px;
    color: rgba(255,255,255,0.75);
  }
  .btn-hero-primary, .btn-hero-secondary {
    max-width: 280px;
    min-height: 50px;
    padding: 15px 24px;
    font-size: 15px;
    font-weight: 600;
  }

  /* -- Stats -- */
  .stats-section { padding: 40px 0; }
  .stats-grid { gap: 10px; }
  .stat-item { padding: 18px 12px; }
  .stat-number { font-size: 26px; }
  .stat-icon { width: 42px; height: 42px; font-size: 18px; }

  /* -- Typography -- */
  .section-title { font-size: 24px; }
  .section-badge { font-size: 11px; padding: 5px 14px; }

  /* -- Section Spacing -- */
  .about-section, .features-section, .profiles-section,
  .testimonials-section, .app-section { padding: 50px 0; }

  /* -- Grids -- */
  .features-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .profiles-header .profiles-tabs { flex-direction: column; align-items: center; }
  .profile-tab { padding: 10px 20px; font-size: 13px; }
  .app-btns { flex-direction: column; align-items: center; }
  .search-row { grid-template-columns: 1fr; }

  /* -- Inner Pages -- */
  .page-banner { padding: 90px 0 30px; }
  .page-banner h1 { font-size: 22px; }
  .breadcrumb-list li { font-size: 12px; }
  .content-section { padding: 40px 0 60px; }
  .form-section { padding: 80px 0 60px; }
  .form-card { padding: 24px 16px; }
  .form-card h2 { font-size: 20px; }
  .content-card { padding: 22px 20px; overflow-wrap: break-word; word-wrap: break-word; }
  .content-card h2 { font-size: 20px; word-break: normal; overflow-wrap: break-word; line-height: 1.3; }
  .about-content-image img { width: 100%; height: auto; }
  .plan-card { padding: 30px 20px; }
  .plan-price { font-size: 30px; }
  .contact-info-card, .contact-form-card { padding: 20px; }
  .story-card img { height: 180px; }
}

/* --- Tiny Mobile (≤360px) --- */
@media (max-width: 360px) {
  .hero { min-height: 80vh; }
  .hero-content { padding: 70px 16px 28px; }
  .hero h1 { font-size: 24px; }
  .hero p { font-size: 13px; line-height: 1.6; margin-bottom: 24px; }
  .hero-badge { font-size: 10px; padding: 6px 12px; }
  .btn-hero-primary, .btn-hero-secondary { max-width: 260px; padding: 13px 20px; font-size: 14px; }
  .logo img { height: 32px; }
  .stats-grid { gap: 8px; }
  .stat-number { font-size: 22px; }
  .stat-item { padding: 16px 10px; }
  .stat-icon { width: 38px; height: 38px; font-size: 16px; }
  .section-title { font-size: 22px; }
  .feature-card h4 { font-size: 15px; }
  .feature-card p { font-size: 12px; }
  .page-banner h1 { font-size: 20px; }
  .breadcrumb-list { gap: 4px; }
  .breadcrumb-list li { font-size: 11px; }
  .content-card { padding: 18px 16px; }
  .content-card h2 { font-size: 18px; word-break: normal; overflow-wrap: break-word; }
  .content-card .text, .content-card p { font-size: 14px; word-break: normal; overflow-wrap: break-word; }
  .about-content-image img { width: 100%; height: auto; }
}

/* === Shared Page Styles === */
.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a1a4e 50%, var(--pink) 100%);
  padding: 120px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.page-banner h1 { color: #fff; font-size: 36px; font-weight: 700; margin-bottom: 12px; position: relative; z-index: 1; }
.breadcrumb-nav { position: relative; z-index: 1; }
.breadcrumb-list {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
}
.breadcrumb-list li a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumb-list li a:hover { color: #fff; text-decoration: underline; }
.breadcrumb-list li[aria-current="page"] {
  color: rgba(255,255,255,0.65);
  font-weight: 400;
}
.breadcrumb-sep {
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  user-select: none;
  line-height: 1;
}
.content-section {
  padding: 60px 0 80px;
  background: #f8f9fa;
}
.content-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  overflow-wrap: break-word;
  word-wrap: break-word;
  overflow-x: hidden;
}
.content-card h2 {
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--pink);
  display: inline-block;
}
.about-content-grid {
  display: grid;
  gap: 40px;
  align-items: start;
}
@media (min-width: 769px) {
  .about-content-grid { grid-template-columns: 1fr 1fr; }
}
.about-content-grid > * {
  min-width: 0;
  min-height: 0;
}
.about-content-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.content-card .text,
.content-card p {
  color: #555;
  line-height: 1.8;
  font-size: 16px;
}
.content-card table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.content-card table th,
.content-card table td {
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  text-align: left;
}
.content-card table th {
  background: var(--pink);
  color: #fff;
}
.content-card table tr:nth-child(even) {
  background: #f8f9fa;
}

/* === Forms (Login, Signup, Contact, Forgot Password) === */
.form-section {
  padding: 100px 0 80px;
  background: #f8f9fa;
}
.form-card {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.form-card h2 {
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 8px;
  text-align: center;
}
.form-card .subtitle {
  color: #888;
  text-align: center;
  margin-bottom: 30px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 14px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  transition: border-color 0.3s;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pink);
}
.form-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.3s, transform 0.2s;
}
.form-btn:hover { background: #c41068; transform: translateY(-2px); }
.form-link {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: #888;
}
.form-link a { color: var(--pink); font-weight: 600; text-decoration: none; }
.form-link a:hover { text-decoration: underline; }
.error-msg {
  background: #fff0f0;
  color: #d32f2f;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 14px;
  border-left: 4px solid #d32f2f;
}
.success-msg {
  background: #f0fff0;
  color: #2e7d32;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 14px;
  border-left: 4px solid #2e7d32;
}

/* === FAQ Accordion === */
.faq-list { margin-top: 30px; }
.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  overflow: hidden;
}
.faq-q {
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.faq-q:hover { background: #f8f9fa; }
.faq-q::after { content: '+'; font-size: 22px; color: var(--pink); transition: transform 0.3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a-inner {
  padding: 0 24px 18px;
  color: #555;
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 500px; }

/* === Success Stories Grid === */
.stories-grid {
  display: grid;
  gap: 24px;
  padding: 40px 0 80px;
}
@media (min-width: 769px) {
  .stories-grid { grid-template-columns: repeat(3, 1fr); }
}
.story-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}
.story-card:hover { transform: translateY(-6px); }
.story-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
}
.story-info {
  padding: 20px;
}
.story-info h4 {
  color: var(--navy);
  font-size: 17px;
  margin-bottom: 6px;
}
.story-info .date {
  color: var(--pink);
  font-size: 13px;
  font-weight: 600;
}
.story-info .btn-read {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 20px;
  background: var(--pink);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.3s;
}
.story-info .btn-read:hover { background: #c41068; }
.no-results {
  text-align: center;
  padding: 60px 0;
  color: #888;
  font-size: 18px;
}

/* === Pagination === */
.pagination-wrap {
  display: flex;
  justify-content: center;
  padding: 10px 0 40px;
}
.pagination {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.pg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  background: #fff;
  color: #555;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}
.pg-btn:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(225,19,123,0.04);
}
.pg-btn.active {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  border-color: transparent;
  color: #fff;
  cursor: default;
  box-shadow: 0 4px 15px rgba(225,19,123,0.3);
}
.pg-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  color: #aaa;
  font-size: 16px;
  letter-spacing: 2px;
}

/* === Pricing / Membership === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 50px 0 80px;
}
.plan-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.3s;
  position: relative;
}
.plan-card:hover { transform: translateY(-6px); }
.plan-card.featured {
  border: 3px solid var(--pink);
}
.plan-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: #fff;
  padding: 4px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
.plan-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.plan-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--pink);
  margin: 16px 0;
}
.plan-price span { font-size: 16px; color: #888; font-weight: 400; }
.plan-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}
.plan-features li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #555;
  font-size: 14px;
}
.plan-features li::before {
  content: '\2713';
  color: var(--orange);
  font-weight: 700;
  margin-right: 10px;
}

/* === Contact Form Section === */
.contact-grid {
  display: grid;
  gap: 40px;
  padding: 60px 0 80px;
}
@media (min-width: 769px) {
  .contact-grid { grid-template-columns: 1fr 1.5fr; }
}
.contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 768px) {
  .contact-fields { grid-template-columns: 1fr; }
}
.contact-info-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.contact-info-card h3 {
  color: var(--navy);
  margin-bottom: 16px;
  font-size: 20px;
}
.contact-info-card p {
  color: #555;
  line-height: 1.7;
}
.contact-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.map-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  margin-top: 20px;
}
.map-frame iframe {
  width: 100%;
  height: 350px;
  border: none;
}
