/* ===== CA Priya Sharma - Coral/Rose Theme ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Work+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --coral: #e06c75;
  --coral-dark: #c75b63;
  --coral-light: #f4a5ab;
  --coral-50: #fdf2f3;
  --coral-100: #fce5e7;
  --dark: #1e1e2e;
  --dark-light: #2a2a3e;
  --slate-50: #f8f9fb;
  --slate-100: #f1f3f7;
  --slate-200: #e2e6ed;
  --slate-300: #c8cdd8;
  --slate-400: #8f97a8;
  --slate-500: #5f6878;
  --slate-600: #434b5a;
  --white: #ffffff;
  --font-main: 'Outfit', sans-serif;
  --font-body: 'Work Sans', sans-serif;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--slate-600); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: var(--font-main); color: var(--dark); line-height: 1.1; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-coral { color: var(--coral); }
.italic { font-style: italic; }

/* Labels */
.label { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.25em; color: var(--coral); }
.label.center { justify-content: center; }
.label-dot { width: 8px; height: 8px; background: var(--coral); border-radius: 50%; }
.section-top { text-align: center; margin-bottom: 56px; }
.section-top h2 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; }

/* Buttons */
.btn-coral {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px;
  background: var(--coral); color: var(--white); border: none; border-radius: var(--r);
  font-family: var(--font-main); font-size: 14px; font-weight: 600; cursor: pointer;
  text-decoration: none; transition: all 0.4s; box-shadow: 0 6px 20px rgba(224,108,117,0.3);
}
.btn-coral:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(224,108,117,0.4); }
.btn-coral.full { width: 100%; justify-content: center; }
.btn-ghost { display: inline-flex; align-items: center; gap: 6px; padding: 14px 24px; color: var(--dark); font-weight: 600; text-decoration: none; font-size: 14px; border: 2px solid var(--slate-200); border-radius: var(--r); transition: all 0.3s; }
.btn-ghost:hover { border-color: var(--coral); color: var(--coral); }

/* ===== Navbar ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,0,0,0.04); transition: box-shadow 0.3s; }
.nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.06); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { width: 40px; height: 40px; background: var(--coral); color: var(--white); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-family: var(--font-main); font-weight: 700; font-size: 14px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: var(--font-main); font-weight: 700; font-size: 16px; color: var(--dark); line-height: 1.2; }
.logo-sub { font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--slate-400); font-weight: 600; }
.nav-menu { display: flex; gap: 4px; list-style: none; }
.nav-menu a { padding: 8px 14px; font-size: 13px; font-weight: 500; color: var(--slate-500); text-decoration: none; border-radius: 8px; transition: all 0.3s; }
.nav-menu a:hover { color: var(--coral); background: var(--coral-50); }
.nav-btn { padding: 10px 22px; background: var(--coral); color: var(--white); border-radius: 10px; font-size: 13px; font-weight: 600; text-decoration: none; transition: all 0.3s; }
.nav-btn:hover { background: var(--coral-dark); }
.hamburger { display: none; background: none; border: none; cursor: pointer; width: 24px; height: 18px; position: relative; }
.hamburger span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--dark); transition: all 0.3s; border-radius: 2px; }
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }

/* ===== Hero ===== */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 100px 0 60px; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--coral-50) 0%, var(--white) 40%, var(--slate-50) 100%); }
.hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.2; }
.blob-1 { width: 400px; height: 400px; background: var(--coral); top: -100px; right: 10%; animation: move 12s ease-in-out infinite; }
.blob-2 { width: 300px; height: 300px; background: var(--coral-light); bottom: 0; left: -50px; animation: move 10s ease-in-out infinite reverse; }
.blob-3 { width: 200px; height: 200px; background: #fbbf24; top: 40%; left: 30%; animation: move 14s ease-in-out infinite; }
@keyframes move { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-30px) scale(1.1); } }

.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-text h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 800; margin-bottom: 20px; line-height: 1.05; }
.hero-text p { font-size: 1.1rem; color: var(--slate-500); max-width: 480px; margin-bottom: 28px; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; margin-bottom: 36px; flex-wrap: wrap; }
.trust-badges { display: flex; gap: 24px; }
.badge { font-size: 13px; color: var(--slate-500); }
.badge strong { color: var(--dark); font-family: var(--font-main); }

.hero-visual { position: relative; }
.card-main { border-radius: var(--r-xl); overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.12); }
.card-main img { width: 100%; height: 500px; object-fit: cover; }
.card-float { position: absolute; background: var(--white); padding: 16px 20px; border-radius: var(--r); box-shadow: 0 10px 40px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 12px; animation: float-card 4s ease-in-out infinite; }
.card-1 { top: 20px; left: -40px; animation-delay: 0s; }
.card-2 { bottom: 40px; right: -30px; animation-delay: 1s; }
.float-icon { font-size: 28px; }
.card-float strong { font-family: var(--font-main); font-size: 20px; color: var(--coral); display: block; }
.card-float small { font-size: 11px; color: var(--slate-400); text-transform: uppercase; letter-spacing: 0.1em; }
@keyframes float-card { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ===== Services - Mosaic ===== */
.services { padding: 100px 0; background: var(--slate-50); }
.mosaic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mosaic-card {
  background: var(--white); padding: 36px; border-radius: var(--r-lg); border: 1px solid var(--slate-200);
  transition: all 0.5s; position: relative; overflow: hidden;
}
.mosaic-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); border-color: var(--coral-100); }
.mosaic-card.tall { grid-row: span 2; display: flex; flex-direction: column; justify-content: center; }
.mosaic-card.accent { background: var(--coral); color: var(--white); border-color: var(--coral); }
.mosaic-card.accent h3 { color: var(--white); }
.mosaic-card.accent p { color: rgba(255,255,255,0.85); }
.mosaic-card.accent .card-link { color: var(--white); }
.card-emoji { font-size: 40px; margin-bottom: 20px; }
.mosaic-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.mosaic-card p { font-size: 14px; line-height: 1.7; margin-bottom: 16px; color: var(--slate-500); }
.card-link { font-size: 13px; font-weight: 600; color: var(--coral); text-decoration: none; transition: color 0.3s; }
.card-link:hover { color: var(--dark); }

/* ===== About ===== */
.about { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.about-img img { width: 100%; border-radius: var(--r-xl); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.about-content h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.about-content p { margin-bottom: 16px; font-size: 15px; line-height: 1.8; color: var(--slate-500); }
.about-highlights { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.highlight { display: flex; gap: 14px; align-items: flex-start; padding: 16px; background: var(--slate-50); border-radius: var(--r); }
.h-icon { font-size: 28px; }
.highlight strong { font-family: var(--font-main); font-size: 14px; color: var(--dark); display: block; }
.highlight small, .highlight div { font-size: 12px; color: var(--slate-400); }

/* ===== Industries ===== */
.industries { padding: 100px 0; background: var(--dark); color: var(--white); }
.industries h2 { color: var(--white); }
.industries .label { color: var(--coral-light); }
.industries .label-dot { background: var(--coral-light); }
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.industry-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); padding: 32px; border-radius: var(--r-lg); text-align: center; transition: all 0.5s; cursor: default; }
.industry-card:hover { background: rgba(255,255,255,0.08); border-color: var(--coral); transform: translateY(-4px); }
.industry-card span { font-size: 36px; display: block; margin-bottom: 12px; }
.industry-card h4 { font-family: var(--font-main); font-size: 14px; color: var(--white); font-weight: 600; }

/* ===== Testimonials ===== */
.testimonials { padding: 100px 0; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { padding: 36px; border: 1px solid var(--slate-200); border-radius: var(--r-lg); transition: all 0.5s; background: var(--white); }
.review-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.06); border-color: var(--coral-100); }
.stars { font-size: 16px; margin-bottom: 14px; }
.review-card p { font-size: 14px; color: var(--slate-500); line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.reviewer { display: flex; gap: 12px; align-items: center; }
.reviewer-avatar { width: 44px; height: 44px; background: var(--coral-50); color: var(--coral); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; border: 2px solid var(--coral-100); }
.reviewer strong { font-family: var(--font-main); font-size: 14px; color: var(--dark); }
.reviewer small { font-size: 11px; color: var(--slate-400); }

/* ===== Contact ===== */
.contact { padding: 100px 0; background: var(--coral-50); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 16px; }
.contact-info > p { color: var(--slate-500); margin-bottom: 28px; line-height: 1.7; }
.info-items { display: flex; flex-direction: column; gap: 20px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-item span { font-size: 24px; }
.info-item strong { font-family: var(--font-main); font-size: 13px; color: var(--dark); display: block; }
.info-item div { font-size: 13px; color: var(--slate-500); }

.contact-form { background: var(--white); padding: 40px; border-radius: var(--r-xl); box-shadow: 0 16px 60px rgba(0,0,0,0.06); }
.contact-form h3 { font-family: var(--font-main); font-size: 1.3rem; margin-bottom: 24px; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--slate-400); margin-bottom: 6px; }
.field input, .field select, .field textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--slate-200); border-radius: 10px; font-family: var(--font-body); font-size: 14px; outline: none; transition: border 0.3s; background: var(--white); color: var(--dark); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--coral); }
.field textarea { resize: vertical; }

/* ===== Footer ===== */
.footer { background: var(--dark); color: var(--white); padding: 60px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: var(--slate-400); font-size: 13px; margin: 12px 0 20px; line-height: 1.7; }
.footer .logo-name { color: var(--white); }
.socials { display: flex; gap: 8px; }
.socials a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--slate-400); text-decoration: none; font-size: 11px; font-weight: 700; transition: all 0.3s; }
.socials a:hover { background: var(--coral); border-color: var(--coral); color: var(--white); }
.footer-col h4 { font-family: var(--font-main); font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--coral-light); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--slate-400); text-decoration: none; font-size: 13px; transition: color 0.3s; }
.footer-col a:hover { color: var(--white); }
.footer-col p { color: var(--slate-400); font-size: 12px; margin-bottom: 12px; }
.nl-form { display: flex; border-radius: 10px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }
.nl-form input { flex: 1; padding: 10px 14px; background: rgba(255,255,255,0.05); border: none; color: var(--white); font-size: 12px; outline: none; }
.nl-form input::placeholder { color: var(--slate-500); }
.nl-form button { padding: 10px 16px; background: var(--coral); border: none; color: var(--white); font-size: 16px; cursor: pointer; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; display: flex; justify-content: space-between; font-size: 12px; color: var(--slate-500); }

/* ===== WhatsApp ===== */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 90; width: 56px; height: 56px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.3s; text-decoration: none; }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .mosaic-grid { grid-template-columns: repeat(2, 1fr); }
  .mosaic-card.tall { grid-row: span 1; }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-menu, .nav-btn { display: none; }
  .nav-menu.active { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); padding: 20px; border-bottom: 1px solid var(--slate-200); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
  .hamburger { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .mosaic-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-2col { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

::selection { background: var(--coral); color: var(--white); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--slate-50); }
::-webkit-scrollbar-thumb { background: var(--slate-300); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--coral); }
