/* ===== VARIABLES ===== */
:root {
  --yellow: #FFD829;
  --yellow-dark: #f0c800;
  --green: #2ECC71;
  --black: #1a1a1a;
  --dark: #111;
  --gray: #666;
  --light-gray: #f8f8f8;
  --white: #fff;
  --font-head: 'Baloo 2', cursive;
  --font-body: 'Poppins', sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
}

/* ===== RESET ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--black); background: #fff; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: var(--yellow);
  transition: box-shadow 0.3s, background 0.3s;
  border-bottom: 3px solid var(--black);
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 20px; height: 80px; }

.logo { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; display: flex; align-items: center; gap: 1px; background: transparent; }
.site-logo { height: 150px; max-width: 510px; object-fit: contain; background: transparent; transition: transform 0.3s ease, filter 0.3s ease; }
.site-logo:hover { transform: scale(1.05); filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2)); }
.footer-brand .site-logo { height: 113px; max-width: 390px; }
.logo-go { color: var(--black); }
.logo-vy { color: var(--green); border-bottom: 4px solid var(--green); padding-bottom: 2px; }
.logo-rupee { color: var(--black); font-size: 1.8rem; }
.logo-com { color: var(--black); font-size: 1rem; font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-weight: 500; font-size: 0.92rem; color: var(--black); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.btn-wa { background: var(--black); color: var(--white) !important; padding: 8px 18px; border-radius: 50px; font-weight: 600 !important; transition: transform 0.2s, box-shadow 0.2s !important; }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); color: var(--white) !important; }
.hamburger { display: none; font-size: 1.6rem; background: none; border: none; cursor: pointer; }

/* ===== HERO ===== */
.hero {
  background: var(--yellow);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero-content { display: flex; align-items: center; gap: 60px; position: relative; }
.hero-text { flex: 1; }
.badge { display: inline-block; background: var(--black); color: var(--yellow); padding: 6px 16px; border-radius: 50px; font-size: 0.82rem; font-weight: 600; margin-bottom: 20px; }
.hero-text h1 { font-family: var(--font-head); font-size: 3.2rem; font-weight: 800; line-height: 1.1; color: var(--black); margin-bottom: 18px; }
.highlight { color: var(--green); position: relative; }
.highlight::after { content: ''; position: absolute; bottom: 2px; left:0; right:0; height: 5px; background: var(--green); opacity: 0.25; border-radius: 2px; }
.hero-text p { font-size: 1.05rem; color: #333; line-height: 1.7; margin-bottom: 28px; max-width: 520px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.btn-primary { background: var(--black); color: var(--white); padding: 13px 28px; border-radius: 8px; font-weight: 600; font-size: 0.95rem; transition: transform 0.2s, box-shadow 0.2s; display: inline-block; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.25); }
.btn-outline { background: transparent; border: 2.5px solid var(--black); color: var(--black); padding: 12px 26px; border-radius: 8px; font-weight: 600; font-size: 0.95rem; transition: all 0.2s; display: inline-block; }
.btn-outline:hover { background: var(--black); color: var(--yellow); }
.trust-row { display: flex; gap: 20px; flex-wrap: wrap; font-size: 0.88rem; font-weight: 500; color: #333; }

.hero-card { flex-shrink: 0; }
.floating-card { background: var(--white); border-radius: 20px; padding: 36px 32px; box-shadow: var(--shadow-lg); border: 3px solid var(--black); width: 320px; }
.card-icon { font-size: 2.5rem; margin-bottom: 12px; }
.floating-card h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; margin-bottom: 20px; }
.steps { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.step { display: flex; align-items: center; gap: 14px; font-weight: 500; font-size: 0.95rem; }
.step-num { width: 32px; height: 32px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; border: 2px solid var(--black); flex-shrink: 0; }
.full-w { width: 100%; text-align: center; }

/* ===== STATS ===== */
.stats { background: var(--black); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat h2 { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--yellow); }
.stat p { color: #bbb; font-size: 0.9rem; margin-top: 4px; }

/* ===== SERVICES ===== */
.services-section { padding: 80px 0; background: var(--light-gray); }
.section-header { text-align: center; margin-bottom: 50px; }
.tag { display: inline-block; background: var(--yellow); color: var(--black); padding: 4px 14px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; margin-bottom: 12px; }
.section-header h2 { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--black); }
.section-header p { color: var(--gray); margin-top: 8px; font-size: 1rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border-radius: 16px; padding: 28px 24px; cursor: pointer;
  border: 2px solid transparent; transition: all 0.25s; position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.service-card:hover { border-color: var(--yellow); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-card.popular { border-color: var(--green); }
.popular-badge { position: absolute; top: -12px; left: 20px; background: var(--green); color: white; font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; }
.s-icon { font-size: 2rem; margin-bottom: 12px; }
.service-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.service-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.5; margin-bottom: 14px; }
.s-price { font-weight: 700; color: var(--green); font-size: 0.95rem; margin-bottom: 10px; }
.s-cta { font-weight: 600; font-size: 0.88rem; color: var(--black); border-top: 1px solid #eee; padding-top: 10px; }
.center-btn { text-align: center; margin-top: 40px; }

/* ===== WHY US ===== */
.why-us { padding: 80px 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 10px; }
.why-card { text-align: center; padding: 30px 20px; border-radius: 16px; background: var(--light-gray); border: 2px solid transparent; transition: all 0.25s; }
.why-card:hover { border-color: var(--yellow); background: var(--white); box-shadow: var(--shadow); }
.w-icon { font-size: 2.5rem; margin-bottom: 14px; }
.why-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.6; }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--yellow); padding: 60px 0; border-top: 3px solid var(--black); border-bottom: 3px solid var(--black); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-inner h2 { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--black); }
.cta-inner p { color: #444; font-size: 1rem; margin-top: 6px; }
.btn-dark { background: var(--black); color: var(--white); padding: 16px 32px; border-radius: 10px; font-weight: 700; font-size: 1rem; transition: all 0.2s; white-space: nowrap; display: inline-block; }
.btn-dark:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }

/* ===== FOOTER ===== */
.footer { background: var(--black); padding: 60px 0 0; color: #bbb; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 40px; }
.footer-brand p { font-size: 0.88rem; color: #999; line-height: 1.7; margin-top: 0; max-width: 220px; }
.footer-brand .logo { font-size: 1.4rem; }
.footer-brand .logo-go, .footer-brand .logo-rupee, .footer-brand .logo-com { color: var(--yellow); }
.footer-brand .logo-vy { color: var(--green); }
.footer-links h4, .footer-contact h4 { color: var(--white); font-weight: 600; margin-bottom: 16px; font-size: 0.95rem; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: #999; transition: color 0.2s; }
.footer-links a:hover { color: var(--yellow); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact a { font-size: 0.88rem; color: #999; transition: color 0.2s; }
.footer-contact a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid #333; padding: 18px 0; text-align: center; font-size: 0.82rem; color: #666; }

/* ===== WHATSAPP FLOAT ===== */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; }
.wa-float a { display: flex; align-items: center; justify-content: center; width: 58px; height: 58px; background: #25D366; border-radius: 50%; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.2s; animation: pulse 2s infinite; }
.wa-float a:hover { transform: scale(1.1); }
@keyframes pulse { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); } }

/* ===== PAGE HERO ===== */
.page-hero { background: var(--yellow); padding: 100px 0 50px; border-bottom: 3px solid var(--black); }
.page-hero h1 { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; color: var(--black); }
.page-hero p { color: #444; font-size: 1.05rem; margin-top: 10px; max-width: 600px; }
.breadcrumb { font-size: 0.85rem; color: #555; margin-bottom: 12px; }
.breadcrumb a { color: var(--black); font-weight: 600; }

/* ===== SERVICES PAGE ===== */
.services-full { padding: 70px 0; }
.services-cat { margin-bottom: 60px; }
.services-cat h3 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; margin-bottom: 24px; padding-bottom: 10px; border-bottom: 3px solid var(--yellow); }
.services-cat .services-grid { grid-template-columns: repeat(3, 1fr); }

/* ===== ABOUT PAGE ===== */
.about-section { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h2 { font-family: var(--font-head); font-size: 2rem; font-weight: 800; margin-bottom: 18px; }
.about-text p { color: var(--gray); line-height: 1.8; font-size: 0.95rem; margin-bottom: 14px; }
.about-visual { background: var(--yellow); border-radius: 20px; border: 3px solid var(--black); padding: 40px; text-align: center; }
.about-visual .big-num { font-family: var(--font-head); font-size: 4rem; font-weight: 800; color: var(--black); line-height: 1; }
.about-visual span { font-size: 0.95rem; color: #444; display: block; margin-top: 6px; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 50px; }
.team-card { background: var(--light-gray); border-radius: 16px; padding: 28px 20px; text-align: center; border: 2px solid transparent; transition: all 0.25s; }
.team-card:hover { border-color: var(--yellow); background: white; box-shadow: var(--shadow); }
.team-avatar { width: 70px; height: 70px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 14px; border: 3px solid var(--black); }
.team-card h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; }
.team-card p { color: var(--gray); font-size: 0.85rem; margin-top: 4px; }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info h2 { font-family: var(--font-head); font-size: 2rem; font-weight: 800; margin-bottom: 18px; }
.contact-info p { color: var(--gray); line-height: 1.8; margin-bottom: 28px; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card { display: flex; align-items: center; gap: 16px; background: var(--light-gray); padding: 18px 20px; border-radius: 12px; border: 2px solid transparent; transition: all 0.2s; }
.contact-card:hover { border-color: var(--yellow); background: white; box-shadow: var(--shadow); }
.contact-card .c-icon { font-size: 1.8rem; flex-shrink: 0; }
.contact-card h4 { font-weight: 600; font-size: 0.9rem; color: var(--black); }
.contact-card p { color: var(--gray); font-size: 0.85rem; margin-top: 2px; }
.contact-form-box { background: var(--white); border-radius: 20px; padding: 36px; box-shadow: var(--shadow-lg); border: 2px solid #eee; }
.contact-form-box h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 500; font-size: 0.88rem; margin-bottom: 6px; color: var(--black); }
.form-group input, .form-group select, .form-group textarea { width: 100%; border: 2px solid #e0e0e0; border-radius: 8px; padding: 12px 14px; font-family: var(--font-body); font-size: 0.92rem; transition: border-color 0.2s; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--yellow); }
.btn-submit { width: 100%; background: var(--yellow); border: 2.5px solid var(--black); color: var(--black); padding: 14px; border-radius: 8px; font-weight: 700; font-size: 0.95rem; cursor: pointer; font-family: var(--font-body); transition: all 0.2s; }
.btn-submit:hover { background: var(--black); color: var(--yellow); }

/* ===== FAQ PAGE ===== */
.faq-section { padding: 80px 0; }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--white); border: 2px solid #e8e8e8; border-radius: 12px; overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: var(--yellow); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 22px; cursor: pointer; font-weight: 600; font-size: 0.95rem; color: var(--black); }
.faq-q span { font-size: 1.3rem; font-weight: 400; transition: transform 0.3s; }
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.2s; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { padding: 0 22px 20px; color: var(--gray); line-height: 1.7; font-size: 0.92rem; }

/* ===== RESPONSIVE ===== */
@media(max-width: 900px) {
  .hero-content { flex-direction: column; gap: 40px; }
  .floating-card { width: 100%; }
  .hero-text h1 { font-size: 2.4rem; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .site-logo { height: 55px; max-width: 240px; }
  .nav-inner { padding: 10px 16px; }
  .footer-brand p { margin-top: 4px; }
}
@media(max-width: 760px) {
  .team-card { flex-direction: column; align-items: center; text-align: center; }
  .team-card img { margin-right: 0; margin-bottom: 14px; width: 90px; }
}
@media(max-width: 600px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 56px; left:0; right:0; background: var(--yellow); padding: 16px; border-bottom: 3px solid var(--black); gap: 12px; max-height: calc(100vh - 56px); overflow-y: auto; }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .hero-text h1 { font-size: 1.9rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .services-cat .services-grid { grid-template-columns: 1fr; }
}
