@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800;900&display=swap');

:root {
  --pink:    #FF3CAC;
  --purple:  #784BA0;
  --blue:    #2B86C5;
  --orange:  #FF6B35;
  --yellow:  #FFD93D;
  --mint:    #6BCB77;
  --primary: #FF3CAC;
  --secondary: #784BA0;
  --bg-light: #FFFAFF;
  --text-dark: #1A0533;
  --text-muted: #7B5EA7;
  --glass: rgba(255,255,255,0.75);
  --transition: all 0.35s cubic-bezier(.4,0,.2,1);
  --grad-hero: linear-gradient(135deg, #FF3CAC 0%, #784BA0 45%, #2B86C5 100%);
  --grad-warm: linear-gradient(135deg, #FF6B35 0%, #FFD93D 100%);
  --grad-cool: linear-gradient(135deg, #784BA0 0%, #2B86C5 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-weight: 700; color: var(--text-dark); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ---------- NAV ---------- */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.2rem 5%;
  background: var(--glass);
  backdrop-filter: blur(16px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(120,75,160,0.12);
  border-bottom: 1px solid rgba(255,60,172,0.15);
}

.logo {
  font-size: 1.7rem;
  font-weight: 900;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

.nav-links { display: flex; gap: 2.5rem; }
.nav-links a { font-weight: 600; font-size: 0.95rem; color: var(--text-muted); }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.hero-blob-1 { width: 500px; height: 500px; background: #FFD93D; top: -100px; right: -100px; }
.hero-blob-2 { width: 400px; height: 400px; background: #FF6B35; bottom: -80px; left: -80px; }

.hero-content { position: relative; z-index: 2; max-width: 820px; animation: fadeUp 0.9s ease-out both; }

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1.05;
  color: white;
  text-shadow: 0 4px 30px rgba(0,0,0,0.2);
  margin-bottom: 1.5rem;
}

.hero h1 span {
  display: block;
  font-style: italic;
  font-weight: 300;
  font-size: 2.5rem;
  opacity: 0.85;
  margin-top: 0.5rem;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 1rem 2.5rem;
  background: white;
  color: var(--primary);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border: none;
  cursor: pointer;
}
.btn:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.2); }

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}
.btn-outline:hover { background: white; color: var(--primary); }

.btn-grad {
  background: var(--grad-hero);
  color: white;
}
.btn-grad:hover { opacity: 0.92; transform: translateY(-4px); }

/* ---------- SCROLL ANIMATIONS ---------- */
[data-aos] {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }

/* ---------- COLOURFUL STATS BAR ---------- */
.stats-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: linear-gradient(90deg, #FF3CAC 0%, #784BA0 33%, #2B86C5 66%, #FF6B35 100%);
  padding: 3rem 5%;
}
.stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 1rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  display: block;
}
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.85); font-weight: 600; }

/* ---------- SECTION GENERIC ---------- */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

/* ---------- WHY US CARDS ---------- */
.why-section { padding: 8rem 5%; background: var(--bg-light); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.why-card {
  border-radius: 28px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-8px); }
.why-card.c1 { background: linear-gradient(135deg, #ffe0f0, #ffd0ea); }
.why-card.c2 { background: linear-gradient(135deg, #efe0ff, #dfc8fd); }
.why-card.c3 { background: linear-gradient(135deg, #e0f4ff, #c8e8fd); }
.why-card.c4 { background: linear-gradient(135deg, #fff3d0, #ffe89a); }
.why-card .card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}
.why-card h3 { margin-bottom: 0.6rem; font-size: 1.1rem; }
.why-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ---------- SPECIALITIES ---------- */
.specialities-section { padding: 8rem 5%; background: white; }
.specialities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.spec-card {
  border-radius: 28px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.spec-card:hover { transform: translateY(-8px); }
.spec-card-inner {
  padding: 2.5rem;
  height: 100%;
}
.spec-card.s1 .spec-card-inner { background: linear-gradient(150deg, #FF3CAC 0%, #784BA0 100%); color: white; }
.spec-card.s2 .spec-card-inner { background: linear-gradient(150deg, #FF6B35 0%, #FFD93D 100%); color: white; }
.spec-card.s3 .spec-card-inner { background: linear-gradient(150deg, #2B86C5 0%, #6BCB77 100%); color: white; }
.spec-card-inner h3 { font-size: 1.4rem; margin: 1rem 0 0.7rem; color: white; }
.spec-card-inner p { opacity: 0.88; font-size: 0.95rem; }
.spec-icon { font-size: 2.8rem; }

/* ---------- HOW TO ORDER ---------- */
.order-section {
  padding: 8rem 5%;
  background: var(--text-dark);
  text-align: center;
}
.order-section h2 { color: white; margin-bottom: 4rem; font-size: 2.8rem; }
.order-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
}
.step-card { position: relative; }
.step-num {
  font-size: 5rem;
  font-weight: 900;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.5;
  line-height: 1;
}
.step-card h3 { color: white; margin: 0.5rem 0; font-size: 1.3rem; }
.step-card p { color: rgba(255,255,255,0.6); font-size: 0.95rem; }

/* ---------- OWNER SECTION ---------- */
.owner-section {
  padding: 8rem 5%;
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
  align-items: center;
  background: linear-gradient(135deg, #fff0f8 0%, #f3e5ff 100%);
}
.owner-text { flex: 1; min-width: 300px; }
.owner-text h2 { font-size: 2.8rem; margin-bottom: 1.5rem; }
.owner-text blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--primary);
  border-left: 4px solid var(--primary);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}
.owner-text p { color: var(--text-muted); margin-bottom: 2rem; }
.owner-img { flex: 1; min-width: 280px; }
.owner-img-wrap {
  width: 100%;
  height: 480px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(120,75,160,0.25);
  position: relative;
}
.owner-img-wrap img { width:100%; height:100%; object-fit:cover; }
.owner-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: white;
  border-radius: 16px;
  padding: 12px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.owner-badge strong { display: block; color: var(--primary); font-weight: 700; }
.owner-badge span { font-size: 0.8rem; color: var(--text-muted); }

/* ---------- GALLERY ---------- */
.gallery-section { padding: 8rem 5%; background: white; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 1.5rem;
  margin-top: 3rem;
}
.gallery-item { border-radius: 24px; overflow: hidden; transition: var(--transition); }
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img { width:100%; height:100%; object-fit:cover; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.insta-card {
  border-radius: 24px;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  text-align: center;
  padding: 2rem;
  gap: 0.8rem;
}
.insta-card .insta-icon { font-size: 3rem; }
.insta-card strong { font-size: 1.3rem; font-weight: 700; }
.insta-card a { border-bottom: 2px solid rgba(255,255,255,0.6); padding-bottom: 2px; color: white; }

/* ---------- CTA ---------- */
.cta-section {
  padding: 8rem 5%;
  background: var(--grad-hero);
  text-align: center;
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
  padding-top: 10rem;
}
.cta-section h2 { color: white; font-size: 3.5rem; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.88); font-size: 1.2rem; margin-bottom: 2.5rem; }
.cta-btns { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
footer {
  background: #0d0118;
  color: white;
  padding: 5rem 5% 2rem;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
  text-align: left;
}
.footer-section h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-section p { font-size: 0.9rem; color: #aaa; margin-bottom: 0.6rem; }
.footer-section ul li { margin-bottom: 0.8rem; }
.footer-section ul li a { font-size: 0.9rem; color: #aaa; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-section ul li a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  font-size: 0.85rem;
  color: #555;
  text-align: center;
}
.footer-bottom a { color: var(--primary); }

/* ---------- CHATBOT ---------- */
#chatbot-container { position: fixed; bottom: 2rem; right: 2rem; z-index: 2000; }
#chatbot-toggle {
  width: 65px; height: 65px;
  background: var(--grad-hero);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(255,60,172,0.4);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: white; font-size: 1.8rem;
  transition: var(--transition);
}
#chatbot-toggle:hover { transform: scale(1.12); }
#chatbot-window {
  position: absolute; bottom: 85px; right: 0;
  width: 380px; height: 550px;
  background: white; border-radius: 25px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  display: none; flex-direction: column; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  animation: fadeUp 0.4s ease-out;
}
#chatbot-header {
  padding: 1.5rem; background: var(--grad-hero); color: white;
  display: flex; align-items: center; gap: 15px;
}
#chatbot-messages {
  flex: 1; padding: 1.5rem; overflow-y: auto;
  display: flex; flex-direction: column; gap: 15px;
}
.message { padding: 12px 18px; border-radius: 20px; max-width: 85%; font-size: 0.95rem; line-height: 1.5; }
.bot-msg { background: #F3ECFF; color: #333; align-self: flex-start; border-bottom-left-radius: 5px; }
.user-msg { background: var(--grad-hero); color: white; align-self: flex-end; border-bottom-right-radius: 5px; }
#chatbot-input { padding: 1.2rem; border-top: 1px solid #EEE; display: flex; gap: 12px; align-items: center; }
#chatbot-input input { flex: 1; border: none; outline: none; font-family: inherit; font-size: 0.95rem; padding: 10px 15px; background: #f8f0ff; border-radius: 25px; }
#chatbot-input button { background: none; border: none; color: var(--primary); cursor: pointer; font-size: 1.2rem; display: flex; align-items: center; }
#chatbot-branding { padding: 8px; background: #fdfdfd; font-size: 0.75rem; text-align: center; border-top: 1px solid #eee; color: #999; }
#chatbot-branding a { color: var(--primary); font-weight: 700; text-decoration: underline; }

/* ---------- PRODUCTS PAGE ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  padding: 5rem 5%;
}
.product-card {
  border-radius: 28px; overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  transition: var(--transition);
  background: white;
}
.product-card:hover { transform: translateY(-10px); box-shadow: 0 25px 60px rgba(120,75,160,0.15); }
.product-img { width:100%; height:270px; object-fit:cover; }
.product-info { padding: 2rem; }
.product-info h3 { margin-bottom: 0.6rem; font-size: 1.25rem; }
.product-info p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }

/* ---------- CONTACT PAGE ---------- */
.contact-info-card {
  display: flex; align-items: center; gap: 1rem;
  background: linear-gradient(135deg, #fff0f8, #f3e5ff);
  border-radius: 18px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.contact-info-icon { font-size: 1.5rem; min-width: 36px; }

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {
  nav { padding: 1rem 5%; flex-wrap: wrap; gap: 1rem; justify-content: center; position: relative; background: white; }
  .nav-links { gap: 1rem; width: 100%; justify-content: center; }
  .nav-links li a { font-size: 0.85rem; }
  .hero h1 { font-size: 3rem; }
  .hero h1 span { font-size: 1.6rem; }
  .hero { padding: 10rem 5% 5rem; min-height: auto; }
  .stats-bar { gap: 0; }
  .stat-item { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }
  .owner-section { flex-direction: column; }
  .owner-img-wrap { height: 350px; }
  .cta-section { clip-path: none; padding: 6rem 5%; }
  .cta-section h2 { font-size: 2.2rem; }
  #chatbot-window { width: calc(100vw - 40px); right: 0; bottom: 80px; height: 450px; }
}
