/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fff5f5;
}

/* ===== NAVBAR (GLASS STYLE) ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  z-index: 1000;
}

.logo img {
  height: 50px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 25px;
}

.menu li a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: 0.3s;
}

.menu li a:hover {
  color: #dc2626;
}

/* ===== BUTTON ===== */
.btn {
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
}

.btn.primary {
  background: linear-gradient(135deg, #dc2626, #ff4d6d);
  color: #fff;
  box-shadow: 0 8px 25px rgba(220,38,38,0.3);
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.secondary {
  background: #dc2626;
  color: #fff;
}


/* ===== HERO SECTION ===== */
.banner {
  padding: 100px 8%;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe4e6 100%);
  position: relative;
  overflow: hidden;
}

/* background soft blobs */
.banner::before,
.banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  z-index: 0;
}

.banner::before {
  width: 420px;
  height: 420px;
  background: #dc2626;
  top: -120px;
  left: -120px;
}

.banner::after {
  width: 480px;
  height: 480px;
  background: #ff4d6d;
  bottom: -150px;
  right: -150px;
}

/* ===== GRID LAYOUT ===== */
.banner-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ===== LEFT SIDE ===== */
.banner-left {
  z-index: 2;
}

.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-tags span {
  background: #fff;
  border: 1px solid #ffd5dd;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.banner-left h1 {
  font-size: 3.6rem;
  font-weight: 900;
  color: #3b0a0a;
  line-height: 1.1;
  letter-spacing: -1px;
}

.banner-left h1 span {
  background: linear-gradient(90deg, #dc2626, #ff4d6d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-left p {
  font-size: 1.15rem;
  color: #6b4b4b;
  margin-top: 18px;
  max-width: 520px;
}

/* buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.btn {
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.btn.primary {
  background: #dc2626;
  color: #fff;
  box-shadow: 0 15px 35px rgba(220,38,38,0.25);
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.secondary {
  background: #fff;
  border: 1px solid #ffd5dd;
  color: #dc2626;
}

/* ===== RIGHT SIDE ===== */
.banner-right {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* floating badge */
.hero-mini-card {
  position: absolute;
  top: -15px;
  right: -15px;
  background: #fff;
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  z-index: 3;
}

/* contact box */
.contact-box {
  width: 100%;
  max-width: 400px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 35px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.12);
  position: relative;
}

/* glowing border */
.contact-box::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 25px;
  background: linear-gradient(135deg, #dc2626, #ff4d6d);
  z-index: -1;
  opacity: 0.25;
}

/* text */
.phone-label {
  text-align: center;
  font-weight: 600;
  color: #555;
}

.phone-number {
  display: block;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 10px 0 20px;
  color: #dc2626;
}

/* form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #f3d2d2;
  border-radius: 10px;
  font-size: 0.95rem;
  background: #fff5f5;
  transition: 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #dc2626;
  outline: none;
}

.contact-form button {
  background: #dc2626;
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.contact-form button:hover {
  background: #b91c1c;
}

/* ===== MOBILE ===== */
@media(max-width: 768px) {

  .banner-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .banner-left h1 {
    font-size: 2.4rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
  }

  .hero-mini-card {
    display: none;
  }
}

/* ===== CONTACT BOX (GLASS) ===== */
.banner-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.contact-box {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border-radius: 18px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.2);
  width: 100%;
  max-width: 400px;
  color: #fff;
}

.phone-label {
  text-align: center;
  font-weight: bold;
}

.phone-number {
  display: block;
  text-align: center;
  font-size: 1.5rem;
  margin: 10px 0;
  color: #fff;
}

/* ===== FORM ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: rgba(255,255,255,0.9);
}

.contact-form button {
  background: linear-gradient(135deg, #dc2626, #ff4d6d);
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

/* ===== SERVICES ===== */
.services {
  padding: 80px 8%;
  text-align: center;
  background: #fff5f5;
}

.services h2 {
  font-size: 2.3rem;
  margin-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  transition: 0.4s;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  height: 4px;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #dc2626, #ff4d6d);
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
}

.card img {
  width: 60px;
  margin-bottom: 15px;
}

/* ===== PRODUCTS ===== */
.products {
  padding: 80px 8%;
  text-align: center;
  background: linear-gradient(to right, #ffffff, #fff1f2);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* ===== TABLE ===== */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.compare-table th {
  background: linear-gradient(135deg, #dc2626, #ff4d6d);
  color: #fff;
  padding: 12px;
}

.compare-table td {
  padding: 10px;
  background: #fff;
  border: 1px solid #eee;
}

.compare-table tr:nth-child(even) td {
  background: #fff5f5;
}

/* ICONS */
.check {
  background: #d1f3dc;
  color: #16a34a;
  padding: 5px 8px;
  border-radius: 50%;
}

.cross {
  background: #fde2e2;
  color: #dc2626;
  padding: 5px 8px;
  border-radius: 50%;
}

/* ===== ABOUT ===== */
.about {
  padding: 80px 8%;
  background: #fff;
}

.about-inner {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.3rem;
  margin-bottom: 15px;
}

.about-text p {
  margin-bottom: 12px;
}

.about-note {
  background: #fff1f2;
  padding: 12px;
  border-radius: 8px;
}

.about-media img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* ===== CONTACT ===== */
.contact {
  padding: 80px 8%;
  text-align: center;
  background: linear-gradient(135deg, #dc2626, #ff4d6d);
  color: #fff;
}

.contact h2 {
  font-size: 2.3rem;
}

/* ===== FOOTER ===== */
.footer {
  background: #4a0404;
  color: #bbb;
  text-align: center;
  padding: 30px 8%;
}

.footer-links a {
  color: #bbb;
  margin: 0 10px;
}

.footer-links a:hover {
  color: #fff;
}

/* ===== MOBILE ===== */
@media(max-width:768px) {
  .navbar {
    flex-direction: column;
    gap: 10px;
  }

  .menu {
    flex-direction: column;
    gap: 10px;
  }

  .banner-container {
    flex-direction: column;
    text-align: center;
  }

  .banner-left h1 {
    font-size: 2.2rem;
  }

  .about-inner {
    flex-direction: column;
  }
}