:root {
  --red: #ff3b3b;
  --yellow: #ffdd00;
  --dark: #0a0a0a;
  --gray: #1a1a1a;
  --light: #f5f5f5;
}

/* === RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', sans-serif;
  background: radial-gradient(circle at top, #000000 10%, #111111 90%);
  color: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  padding: 15px 40px;
  z-index: 1000;
  box-shadow: 0 0 20px rgba(255, 59, 59, 0.3);
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--yellow);
  letter-spacing: 1px;
}
.logo span {
  color: var(--red);
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
}
.navbar ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}
.navbar ul li a:hover {
  color: var(--yellow);
}

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('images/storefront.jpeg') center/cover no-repeat;
  overflow: hidden;
}
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.hero-content {
  z-index: 2;
  padding: 20px;
}
.chrome-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.8rem;
  background: linear-gradient(90deg, #ffdd00, #fff, #ff3b3b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200%;
  animation: shine 3s linear infinite;
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
}
@keyframes shine {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.hero p {
  color: #ddd;
  font-size: 1.3rem;
  margin-top: 10px;
  text-shadow: 0 0 10px rgba(255,255,255,0.1);
}
.hero-buttons {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.btn {
  text-decoration: none;
  padding: 14px 34px;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
  letter-spacing: 0.5px;
}
.primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 25px var(--red);
}
.secondary {
  background: var(--yellow);
  color: #111;
  box-shadow: 0 0 25px var(--yellow);
}
.btn:hover {
  transform: scale(1.08);
}

/* === SECTIONS === */
section {
  padding: 90px 20px;
  text-align: center;
  max-width: 1200px;
  margin: auto;
}
h2 {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--yellow);
  font-size: 2.4rem;
  letter-spacing: 2px;
  text-shadow: 0 0 15px var(--red);
  margin-bottom: 40px;
}

/* === SERVICES === */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 35px 25px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.08);
  transition: 0.4s;
}
.card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 0 30px var(--yellow);
}

/* 🖼️ GALLERY SECTION */
.gallery {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(180deg, #111, #000);
}
.gallery h2 {
  font-size: 2.5rem;
  color: #ffdd00;
  margin-bottom: 15px;
  text-shadow: 0 0 15px #ff3b3b;
}
.gallery p {
  color: #aaa;
  margin-bottom: 30px;
  font-size: 1rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}
.gallery-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  opacity: 0.9;
}
.gallery-grid img:hover {
  transform: scale(1.07);
  opacity: 1;
  box-shadow: 0 0 25px #ff3b3b, 0 0 40px #ffdd00;
}

/* === REVIEWS === */
.review-slider {
  display: flex;
  flex-direction: column;
  gap: 25px;
  font-style: italic;
  color: #eee;
  animation: fade 12s infinite;
}
@keyframes fade {
  0%,100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* === FORM === */
form {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 0 25px rgba(255,255,255,0.1);
  max-width: 500px;
  margin: auto;
}
input, select, button {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
}
input, select {
  background: #222;
  color: #fff;
}
button {
  background: var(--red);
  color: #fff;
  font-weight: bold;
  box-shadow: 0 0 25px var(--red);
  cursor: pointer;
  transition: 0.3s;
}
button:hover {
  background: var(--yellow);
  color: #111;
  box-shadow: 0 0 25px var(--yellow);
}

/* === MAP === */
iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 12px;
  margin-top: 25px;
}

/* === FOOTER === */
footer {
  background: #0a0a0a;
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
  color: #aaa;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-shadow: 0 0 10px rgba(255,255,255,0.1);
}


/* 💬 Floating Chat Button (next to Call button) */
#chat-toggle {
  position: fixed;
  bottom: 25px;
  right: 110px; /* Shifted left to sit beside Call Now */
  background: linear-gradient(145deg, var(--red), var(--yellow));
  color: #111;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px rgba(255, 221, 0, 0.6);
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulseChat 3s infinite alternate;
}
#chat-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px var(--yellow);
}
@keyframes pulseChat {
  0% { box-shadow: 0 0 15px var(--red); }
  100% { box-shadow: 0 0 30px var(--yellow); }
}

/* 🤖 Chatbot Window */
#chatbot {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 330px;
  background: #111;
  border: 1px solid var(--red);
  border-radius: 12px;
  box-shadow: 0 0 25px var(--red);
  color: white;
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  overflow: hidden;
  z-index: 1002;
}
#chatbot.hidden {
  display: none;
}
#chat-header {
  background: linear-gradient(90deg, var(--red), var(--yellow));
  color: #111;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#chat-header button {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}
#chat-box {
  height: 250px;
  overflow-y: auto;
  padding: 10px;
  background: rgba(255,255,255,0.05);
}
#chat-input {
  display: flex;
  border-top: 1px solid #333;
}
#chat-input input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  background: #222;
  color: #fff;
}
#chat-input button {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
}
#chat-input button:hover {
  background: var(--yellow);
  color: #111;
}

/* 🌟 Floating Social Bar */
.floating-social {
  position: fixed;
  top: 45%;
  left: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}
.floating-social a {
  color: #fff;
  background: linear-gradient(145deg, var(--red), var(--yellow));
  padding: 14px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 221, 0, 0.5);
  font-size: 1.3rem;
  transition: all 0.3s ease;
  animation: pulseSocial 3s infinite alternate;
}
.floating-social a:hover {
  transform: scale(1.2);
  box-shadow: 0 0 25px var(--yellow);
}
@keyframes pulseSocial {
  0% { box-shadow: 0 0 10px var(--red); }
  100% { box-shadow: 0 0 25px var(--yellow); }
}

/* Responsive */
@media (max-width: 768px) {
  .navbar ul { display: none; }
  .chrome-text { font-size: 2.2rem; }
  .hero-buttons { flex-direction: column; }
  .card { padding: 25px; }
  .floating-social {
    flex-direction: row;
    top: auto;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.book-link {
  color: #ffdd00;
  font-weight: bold;
  text-decoration: underline;
  cursor: pointer;
}

#chatbot {
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
#chatbot:not(.hidden) {
  transform: translateY(0);
  opacity: 1;
  box-shadow: 0 0 25px #ffdd00;
}
