/* Reset & Smooth Scroll */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  scroll-behavior: smooth;
}
body {
  background-color: #0f0f0f;
  color: #ddd;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Header */
header {
  background-color: #1c1c1c;
  padding: 40px 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
header .logo {
  width: 100px;
  margin-bottom: 10px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #800000, #1b1b1b);
  padding: 100px 20px;
  color: #fff;
  text-shadow: 0 0 10px rgba(0,0,0,0.7);
}
.hero h2 {
  font-size: 3rem;
  margin-bottom: 15px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}
.btn {
  background-color: #800000;
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}
.btn:hover {
  background-color: #a00000;
  transform: translateY(-3px);
}

/* Products Section */
#products {
  padding: 60px 0;
}
.products-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}
.product-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 30px;
  width: 270px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  cursor: pointer;
  transition: 0.5s;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(255,0,0,0.4);
}
.product-card h3 {
  color: #fff;
  margin-bottom: 10px;
}
.product-card p {
  color: #ccc;
}

/* Order Section */
#order {
  padding: 80px 20px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
#order h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 0 0 5px rgba(0,0,0,0.7);
}
#order p {
  color: #ccc;
  font-size: 1.1rem;
  margin-top: 28px;
  margin-bottom: 30px;
}
.form-wrapper {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  display: inline-block;
  max-width: 700px;
  width: 100%;
}
.form-wrapper iframe {
  width: 100%;
  height: 800px;
  border: none;
  border-radius: 10px;
  background: transparent;
}

/* Contact Section */
#contact {
  padding: 60px 0;
}
#contact a {
  color: #ff5555;
  text-decoration: none;
}
#contact a:hover {
  color: #ff2222;
}

/* Footer */
footer {
  background-color: #1c1c1c;
  color: #888;
  padding: 20px 0;
  font-size: 0.9rem;
}

/* Floating Buttons */
.float-btn {
  position: fixed;
  bottom: 20px;
  width: 60px; height: 60px;
  z-index: 100;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.6);
  transition: transform 0.3s, box-shadow 0.3s;
}
.float-btn img {
  width: 100%;
  height: 100%;
}
.float-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255,0,0,0.5);
}
.float-btn.whatsapp { right: 20px; }
.float-btn.facebook { right: 90px; }

/* Responsive Design */

/* Tablets */
@media (max-width: 992px) {
  .hero h2 { font-size: 2.5rem; }
  .hero p { font-size: 1.1rem; }
  .form-wrapper iframe { height: 700px; }
  .product-card { width: 230px; padding: 25px; }
}

/* Mobile Phones */
@media (max-width: 768px) {
  .hero h2 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .form-wrapper iframe { height: 600px; }
  .product-card { width: 100%; max-width: 300px; padding: 20px; }
  .products-grid { flex-direction: column; align-items: center; gap: 20px; }
  .float-btn.facebook { right: 80px; }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .hero h2 { font-size: 1.7rem; }
  .hero p { font-size: 0.95rem; }
  .form-wrapper iframe { height: 550px; }
}
