/* =========================================
   MODERN VARIABLES & RESET
========================================= */
:root {
    --primary-gradient: linear-gradient(135deg, #FF416C 0%, #FF4B2B 100%);
    --primary-red: #FF4B2B;
    --dark-red: #E0271D;
    --text-main: #0F172A;
    --text-muted: #64748B;
    --bg-light: #F8FAFC;
    --white: #ffffff;
    --shadow-sm: 0 4px 10px rgba(0,0,0,0.03);
    --shadow-md: 0 10px 25px rgba(255, 75, 43, 0.12);
    --shadow-lg: 0 20px 40px rgba(255, 75, 43, 0.25);
    --radius-lg: 20px;
}

html, body { max-width: 100vw; overflow-x: hidden; }

* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Poppins', sans-serif; scroll-behavior: smooth;
}

body { background-color: var(--white); color: var(--text-main); line-height: 1.6; }
a { text-decoration: none; }
button { font-family: 'Poppins', sans-serif; cursor: pointer; }
.text-center { text-align: center; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-red { color: var(--primary-red); }
.text-gradient { background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
img { max-width: 100%; height: auto; }

/* =========================================
   GLASSMORPHISM NAVBAR
========================================= */
.navbar {
    height: 85px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex; align-items: center; position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-icon { height: 40px; object-fit: contain; }
.brand-text { font-size: 26px; font-weight: 800; background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: flex; align-items: flex-start; line-height: 1; }
.brand-text span { color: var(--text-main); -webkit-text-fill-color: var(--text-main); }
.tm { font-size: 10px; font-weight: 700; color: var(--text-muted); -webkit-text-fill-color: var(--text-muted); margin-left: 2px; margin-top: -2px; }

.nav-links { display: flex; gap: 35px; list-style: none; align-items: center; margin: 0 auto; }
.nav-links li a { color: var(--text-main); font-weight: 500; font-size: 15px; transition: 0.3s; position: relative; }
.nav-links li a:hover, .nav-links li a.active { color: var(--primary-red); }
.nav-links li a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--primary-gradient); transition: width 0.3s ease; }
.nav-links li a:hover::after, .nav-links li a.active::after { width: 100%; }
.mobile-menu-btn { display: none; font-size: 24px; color: var(--text-main); cursor: pointer; }

/* =========================================
   MODERN BUTTONS
========================================= */
.nav-actions { display: flex; gap: 12px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px; border-radius: 12px; font-weight: 600; font-size: 15px; transition: all 0.3s ease; border: none; }
.btn-outline { color: var(--primary-red); border: 2px solid #fee2e2; background: transparent; }
.btn-outline:hover { background: #fee2e2; transform: translateY(-2px); border-color: var(--primary-red); }
.btn-solid { background: var(--primary-gradient); color: var(--white); box-shadow: var(--shadow-md); }
.btn-solid:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-large { padding: 16px 36px; font-size: 17px; border-radius: 14px; }
.glow-effect { animation: pulseGlow 2s infinite; }
@keyframes pulseGlow { 0% { box-shadow: 0 0 0 0 rgba(255, 65, 108, 0.4); } 70% { box-shadow: 0 0 0 15px rgba(255, 65, 108, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 65, 108, 0); } }

/* =========================================
   HERO SECTION 
========================================= */
.hero { padding: 80px 0 100px 0; background: var(--bg-light); position: relative; overflow: hidden; }
.hero-bg-shapes { position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: var(--primary-gradient); opacity: 0.05; border-radius: 50%; filter: blur(60px); z-index: 0; }
.hero-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 50px; position: relative; z-index: 1; }
.hero-content { flex: 1.2; }
.badge { display: inline-block; background: white; color: var(--primary-red); padding: 8px 18px; border-radius: 50px; font-size: 14px; font-weight: 600; margin-bottom: 25px; box-shadow: var(--shadow-sm); border: 1px solid rgba(255, 65, 108, 0.1); }
.hero-content h1 { font-size: 52px; font-weight: 800; line-height: 1.15; margin-bottom: 20px; letter-spacing: -1px; }
.hero-content p { font-size: 17px; color: var(--text-muted); margin-bottom: 40px; max-width: 550px; line-height: 1.7; }
.trusted-text { margin-top: 20px; font-size: 14px; color: var(--text-muted); font-weight: 500; }

.hero-visual { flex: 1; position: relative; display: flex; justify-content: center; }
.app-mockup { width: 100%; max-width: 300px; border-radius: 24px; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); z-index: 2; animation: float 6s ease-in-out infinite; border: 4px solid white; }
.floating-circle { position: absolute; width: 350px; height: 350px; background: var(--primary-gradient); border-radius: 50%; z-index: 1; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.15; filter: blur(2px); animation: pulseFloat 8s infinite alternate; }

@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }
@keyframes pulseFloat { 0% { transform: translate(-50%, -50%) scale(1); } 100% { transform: translate(-50%, -50%) scale(1.05); } }

/* =========================================
   FEATURES SECTION
========================================= */
.features { padding: 90px 0; background-color: var(--white); }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 36px; font-weight: 800; margin-bottom: 15px; color: var(--text-main); letter-spacing: -0.5px; }
.section-title p { color: var(--text-muted); font-size: 17px; max-width: 600px; margin: 0 auto; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.feature-card { background: var(--bg-light); padding: 40px 30px; border-radius: var(--radius-lg); text-align: center; border: 1px solid rgba(0,0,0,0.03); transition: all 0.4s ease; display: flex; flex-direction: column; }
.feature-card:hover { transform: translateY(-10px); background: white; box-shadow: 0 20px 40px rgba(0,0,0,0.06); border-color: rgba(255, 65, 108, 0.1); }
.icon-box { width: 70px; height: 70px; background: white; color: var(--primary-red); font-size: 28px; display: flex; align-items: center; justify-content: center; border-radius: 20px; margin: 0 auto 20px auto; box-shadow: var(--shadow-sm); transition: 0.4s; }
.feature-card:hover .icon-box { background: var(--primary-gradient); color: white; transform: rotateY(180deg); }
.feature-card h3 { font-size: 22px; margin-bottom: 15px; color: var(--text-main); font-weight: 700; }
.feature-card p { color: var(--text-muted); margin-bottom: 25px; flex-grow: 1; font-size: 15px; }
.btn-read-more { background: transparent; color: var(--primary-red); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: none; padding: 10px; margin-top: auto; }
.btn-read-more:hover { color: var(--dark-red); gap: 12px; }

/* =========================================
   VISUAL BENEFITS
========================================= */
.visual-benefits { padding: 90px 0; background-color: var(--bg-light); }
.feature-row { display: flex; align-items: center; justify-content: space-between; gap: 60px; margin-bottom: 80px; background: white; padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.02); transition: 0.3s; }
.feature-row:hover { box-shadow: var(--shadow-md); transform: scale(1.01); }
.feature-row.reverse { flex-direction: row-reverse; }
.feature-image { flex: 1; display: flex; justify-content: center; }
.feature-image img { width: 100%; max-width: 400px; border-radius: 16px; transition: 0.5s; }
.feature-row:hover .feature-image img { transform: translateY(-5px); }
.feature-details { flex: 1.2; }
.feature-details h3 { font-size: 30px; color: var(--text-main); margin-bottom: 15px; font-weight: 800; line-height: 1.3; }
.text-en { font-size: 16px; color: #475569; margin-bottom: 15px; }
.text-hi { font-size: 16px; color: var(--text-muted); margin-bottom: 25px; border-top: 1px dashed #CBD5E1; padding-top: 15px; }
.check-list { list-style: none; padding: 0; }
.check-list li { font-size: 16px; color: var(--text-main); margin-bottom: 12px; display: flex; align-items: center; gap: 12px; font-weight: 600; }
.check-list li i { color: #10B981; font-size: 20px; }

/* =========================================
   APP DOWNLOAD (UPDATED - NO QR)
========================================= */
.app-download { padding: 80px 0 0 0; background: var(--primary-gradient); margin-top: 60px; position: relative; overflow: hidden; color: white; border-radius: 40px 40px 0 0; }
.app-download-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.app-down-content { flex: 1.2; padding-bottom: 80px; }
.app-down-content h2 { font-size: 42px; font-weight: 800; line-height: 1.2; margin-bottom: 20px; color: white; }
.app-down-content .text-gradient { color: #FFE4E6; -webkit-text-fill-color: #FFE4E6; background: none; }
.app-down-content p { font-size: 18px; color: rgba(255,255,255,0.9); margin-bottom: 35px; max-width: 600px; }

.down-action-area { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; }
.playstore-btn img { height: 60px; transition: 0.3s; border-radius: 8px; box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.playstore-btn img:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 15px 25px rgba(0,0,0,0.3); }

.login-prompt-area p { font-size: 16px; color: rgba(255,255,255,0.9); }
.login-prompt-area a { color: white; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; transition: 0.3s; }
.login-prompt-area a:hover { color: #FFE4E6; }

.app-down-visual { flex: 1; display: flex; justify-content: center; align-items: flex-end; }
.hand-phone-img { width: 100%; max-width: 350px; margin-bottom: -5px; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.4)); transition: 0.5s ease-in-out; }
.app-download:hover .hand-phone-img { transform: translateY(-10px); }

/* =========================================
   MEGA FOOTER 
========================================= */
.mega-footer { background-color: #0F172A; color: #94A3B8; padding: 70px 0 30px 0; font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-bottom: 50px; border-bottom: 1px solid #334155; padding-bottom: 50px; }
.footer-col h4 { color: white; font-size: 18px; margin-bottom: 20px; font-weight: 700; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 14px; }
.footer-col ul li a { color: #94A3B8; transition: 0.3s; }
.footer-col ul li a:hover { color: white; padding-left: 5px; }
.contact-info p { margin-bottom: 18px; color: #94A3B8; }
.contact-info strong { color: white; }
.text-green { color: #25D366; }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-brand-logo h2 { color: white; font-size: 28px; font-weight: 800; line-height: 1; }
.footer-brand-logo h2 span { color: #FF416C; }
.footer-brand-logo p { font-size: 13px; color: #64748B; margin-top: 5px; }

.social-links { display: flex; gap: 15px; }
.social-links a { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; background-color: #1E293B; color: white; border-radius: 50%; transition: 0.3s; font-size: 18px; }
.social-links a:hover { background: var(--primary-gradient); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(255, 65, 108, 0.3); }

/* =========================================
   CUSTOMER REVIEWS & MODALS
========================================= */
.testimonials { padding: 90px 0; background-color: white; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 35px; }
.review-card { background: var(--bg-light); padding: 35px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.02); transition: 0.4s; display: flex; flex-direction: column; }
.review-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); background: white; }
.stars { color: #F59E0B; font-size: 18px; margin-bottom: 18px; }
.review-text { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 30px; font-style: italic; flex-grow: 1; }
.reviewer { display: flex; align-items: center; gap: 15px; border-top: 1px solid #E2E8F0; padding-top: 20px; }
.r-avatar { width: 50px; height: 50px; background: var(--primary-gradient); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 700; box-shadow: 0 4px 10px rgba(255, 65, 108, 0.3); }
.r-info h4 { font-size: 17px; color: var(--text-main); margin-bottom: 2px; font-weight: 700; }
.r-info span { font-size: 14px; color: var(--text-muted); }

.custom-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.8); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; z-index: 2000; opacity: 0; visibility: hidden; transition: 0.3s; }
.custom-modal.active { opacity: 1; visibility: visible; }
.modal-content { background: white; width: 90%; max-width: 500px; padding: 40px; border-radius: 24px; position: relative; transform: translateY(40px) scale(0.95); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); max-height: 90vh; overflow-y: auto; box-shadow: 0 25px 50px rgba(0,0,0,0.25); }
.custom-modal.active .modal-content { transform: translateY(0) scale(1); }
.close-btn { position: absolute; top: 20px; right: 20px; background: var(--bg-light); border: none; width: 36px; height: 36px; border-radius: 50%; color: var(--text-main); cursor: pointer; transition: 0.3s; font-size: 16px; }
.close-btn:hover { background: #fee2e2; color: var(--dark-red); transform: rotate(90deg); }
.modal-icon { font-size: 45px; background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 20px; text-align: center; display: block; }
.modal-content h2 { text-align: center; font-size: 26px; margin-bottom: 15px; color: var(--text-main); font-weight: 800; }
.modal-body p { font-size: 16px; color: var(--text-muted); margin-bottom: 15px; line-height: 1.7; text-align: center; }

.pricing-cards { display: flex; gap: 20px; margin-top: 20px; }
.price-card { flex: 1; border: 2px solid #F1F5F9; border-radius: 16px; padding: 25px 15px; text-align: center; background: white; position: relative; transition: 0.3s; }
.highlight-card { border-color: #FF416C; background: #FFF1F2; transform: scale(1.05); z-index: 1; box-shadow: var(--shadow-md); }
.badge-best { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary-gradient); color: white; padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; box-shadow: 0 4px 10px rgba(255,65,108,0.3); }
.price-card h4 { font-size: 18px; color: var(--text-main); margin-bottom: 10px; font-weight: 700; }
.price-card .price { font-size: 32px; font-weight: 800; color: #FF416C; margin-bottom: 20px; }
.price-card .price span { font-size: 14px; color: var(--text-muted); font-weight: 500; }
.btn-subscribe { background: var(--primary-gradient); color: white; border: none; padding: 12px 0; width: 100%; border-radius: 10px; font-weight: 600; cursor: pointer; transition: 0.3s; }
.btn-subscribe:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* =========================================
   MOBILE RESPONSIVENESS
========================================= */
@media (max-width: 991px) {
    .nav-links { position: absolute; top: 85px; left: 0; width: 100%; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); flex-direction: column; padding: 30px 0; box-shadow: 0 10px 20px rgba(0,0,0,0.05); display: none; gap: 20px; }
    .nav-links.show { display: flex; }
    .mobile-menu-btn { display: block; }
    .hero-content h1 { font-size: 42px; }
    .hero-wrapper { flex-direction: column; text-align: center; gap: 40px; }
    .hero-content p { margin: 0 auto 30px auto; }
    .floating-circle { width: 280px; height: 280px; }
    .feature-row, .feature-row.reverse { flex-direction: column; text-align: center; gap: 30px; padding: 30px 20px; }
    .check-list li { justify-content: center; }
    .app-download-wrapper { flex-direction: column; text-align: center; gap: 40px;}
    .app-down-content h2 { font-size: 36px; }
    .app-down-content p { margin: 0 auto 30px auto; }
    .down-action-area { flex-direction: column; justify-content: center; }
    .app-download { border-radius: 30px 30px 0 0; }
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 25px; }
    .social-links { justify-content: center; }
    .pricing-cards { flex-direction: column; gap: 30px; }
    .highlight-card { transform: scale(1); }
}

@media (max-width: 600px) {
    .nav-actions .btn-outline { display: none; }
    .btn-solid { padding: 8px 16px; font-size: 14px; }
    .hero-content h1 { font-size: 36px; }
    .brand-text { font-size: 22px; }
    .brand-icon { height: 32px; }
    .modal-content { padding: 30px 20px; }
    .app-down-content h2 { font-size: 32px; }
}