:root {
  --overlay-color: rgba(12, 12, 12, 0.67);
  --text-light: #f7f7f7;
  --text-soft: #ddd;
  --accent: #ffc107;
  --bright: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text-light);
  min-height: 100vh;
  background-image: url('Furniture-Manufacturer-Luxury-Product-in-Delhi.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.overlay {
  position: fixed;
  inset: 0;
  background-color: var(--overlay-color);
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem 1rem;
  text-align: center;
}

.site-header {
  width: 100%;
  max-width: 980px;
  display: flex;
  align-items: center;
  padding: 0.7rem 0.6rem;
  margin-bottom: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 78px;
  width: auto;
  border-radius: 10px;
}

.top-social,
.footer-social {
  display: flex;
  gap: 0.6rem;
}

.site-header .top-social {
  margin-left: auto;
}

.footer-social {
  justify-content: center;
}

.top-social .social-link,
.footer-social .social-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.coming-soon {
  margin: 0.75rem auto 2rem;
  font-size: clamp(1.9rem, 7vw, 5.8rem);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--bright);
}

.contact-card {
  max-width: 460px;
  width: 100%;
  background: rgba(10, 10, 10, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(7px);
  margin-bottom: 1.4rem;
}

.contact-card h2 {
  margin: 0 0 0.9rem;
  font-size: 1.2rem;
  color: var(--text-light);
}

.contact-card label {
  display: block;
  margin: 0.6rem 0 0.2rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border: 1px solid rgba(230, 230, 230, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--bright);
  font-size: 0.95rem;
  outline: none;
}

.contact-card input:focus,
.contact-card textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.34);
}

.btn {
  margin-top: 0.9rem;
  width: 100%;
  padding: 0.78rem;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  background: linear-gradient(120deg, #f7b733, #fc4a1a);
  color: #121212;
  font-weight: 700;
  font-size: 1rem;
}

.feedback {
  margin-top: 0.75rem;
  color: #aadf97;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.feedback.visible {
  opacity: 1;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.8rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.social-link.amazon {
  background: #232f3e;
}

.social-link.flipkart {
  background: #2874f0;
}

.social-link.flipkart img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.social-link.email {
  background: #ea4335;
}

footer {
  position: relative;
  z-index: 2;
  padding: 0.7rem 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.45);
  color: var(--text-soft);
  font-size: 0.86rem;
  width: 100%;
  margin-top: -0.2rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
  }

  .brand {
    margin-top: 0.4rem;
  }

  .site-header .top-social {
    margin-left: 0;
    justify-content: center;
    width: 100%;
    max-width: 260px;
  }

  .logo img {
    height: 98px;
  }
  .logo{
    padding: 20px;
  }

  .container {
    padding-top: 1.2rem;
  }

  .contact-card {
    padding: 1rem;
  }

  .top-social,
  .footer-social {
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }

  .social-link {
    width: 42px;
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
}

