/* ============================
   HAMZA'S FURNITURE — Main CSS
   ============================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: #1A1A1A;
  background: #FFFFFF;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ---------- Utility ---------- */
.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: -0.5px;
}

.section-heading p {
  color: #666;
  font-size: 1.05rem;
  margin-top: 0.6rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.accent-line {
  width: 60px;
  height: 4px;
  background: #E93E58;
  border-radius: 2px;
  margin: 0.8rem auto 0;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1A1A1A;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.logo span {
  color: #E93E58;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: #444;
  letter-spacing: 0.3px;
  position: relative;
  transition: color 0.25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: #E93E58;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #E93E58;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #1A1A1A;
  border-radius: 2px;
  transition: 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('images/hero-banner.png') center/cover no-repeat;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.65) 0%,
    rgba(10, 10, 10, 0.50) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.hero-content .tagline {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-content h1 .accent {
  color: #E93E58;
}

.hero-content .subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 1.2rem;
  font-weight: 300;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-block;
  margin-top: 2.2rem;
  padding: 16px 48px;
  background: #E93E58;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  box-shadow: 0 8px 30px rgba(233, 62, 88, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(233, 62, 88, 0.5);
  background: #d4324b;
}

/* ---------- Stats Banner ---------- */
.stats-banner {
  background: #E93E58;
  color: #fff;
  padding: 3rem 0;
}

.stats-banner .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-item .number {
  font-size: 2.8rem;
  font-weight: 800;
}

.stat-item .label {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 0.3rem;
}

/* ---------- CEO Section ---------- */
.ceo-section {
  padding: 6rem 0;
  background: #FAFAFA;
}

.ceo-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.ceo-quote-icon {
  font-size: 3rem;
  color: #E93E58;
  opacity: 0.25;
  margin-bottom: 1rem;
}

.ceo-message {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #444;
  font-style: italic;
  margin-bottom: 2rem;
}

.ceo-message strong {
  color: #1A1A1A;
  font-style: normal;
}

.ceo-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 0.2rem;
}

.ceo-title {
  font-size: 0.9rem;
  color: #E93E58;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.ceo-portrait {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  border: 4px solid #E93E58;
  box-shadow: 0 10px 40px rgba(233, 62, 88, 0.15);
}

/* ---------- Products / Storefront ---------- */
.products-section {
  padding: 6rem 0;
  background: #fff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}

.product-card .product-img-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #f5f5f5;
}

.product-card .product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}

.product-card .product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #E93E58;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.product-info {
  padding: 1.4rem 1.5rem 1.6rem;
}

.product-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 0.4rem;
}

.product-info .product-desc {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-info .price {
  font-size: 1.3rem;
  font-weight: 800;
  color: #E93E58;
}

.product-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.btn-cart {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: #E93E58;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s, transform 0.25s;
}

.btn-cart:hover {
  background: #d4324b;
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s, transform 0.25s;
  flex-shrink: 0;
}

.btn-whatsapp:hover {
  background: #1ebd56;
  transform: translateY(-2px);
}

.btn-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

/* ---------- About Us ---------- */
.about-section {
  padding: 6rem 0;
  background: #FAFAFA;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #1A1A1A;
}

.about-text p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-text .highlight {
  color: #E93E58;
  font-weight: 600;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ---------- Why Choose Us ---------- */
.why-section {
  padding: 6rem 0;
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.why-card .icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E93E58 0%, #ff6b81 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.why-card .icon-circle svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.why-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.7;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, #E93E58 0%, #c7253e 100%);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 520px;
  margin: 0 auto 2rem;
}

.btn-white {
  display: inline-block;
  padding: 16px 48px;
  background: #fff;
  color: #E93E58;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

/* ---------- Testimonials ---------- */
.testimonials-section {
  padding: 6rem 0;
  background: #FAFAFA;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.2rem;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-card .stars {
  color: #f5a623;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #555;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.testimonial-card .author {
  font-weight: 700;
  color: #1A1A1A;
  font-size: 0.95rem;
}

.testimonial-card .role {
  font-size: 0.82rem;
  color: #999;
}

/* ---------- Location / Map ---------- */
.map-section {
  padding: 6rem 0;
  background: #fff;
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  margin-top: 2rem;
}

.map-wrapper iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* ---------- Footer ---------- */
.footer {
  background: #1A1A1A;
  color: #ccc;
  padding: 4.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer p,
.footer li {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #aaa;
}

.footer .brand-desc {
  margin-bottom: 1.2rem;
}

.footer ul li a {
  color: #aaa;
  transition: color 0.25s;
}

.footer ul li a:hover {
  color: #E93E58;
}

.footer .contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.8rem;
  color: #aaa;
}

.footer .contact-info svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  fill: #E93E58;
  margin-top: 3px;
}

.footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
}

.footer-bottom .heart {
  color: #E93E58;
}

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.35);
  z-index: 999;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 6px 35px rgba(37, 211, 102, 0.55); }
}

/* ---------- Scroll Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 3.2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-grid,
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero-content h1 {
    font-size: 2.4rem;
    letter-spacing: 1px;
  }

  .hero-content .subtitle {
    font-size: 1rem;
  }

  .section-heading h2 {
    font-size: 1.8rem;
  }

  .why-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .stats-banner .container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner h2 {
    font-size: 1.8rem;
  }

  .map-wrapper iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.9rem;
  }

  .btn-primary {
    padding: 14px 36px;
    font-size: 0.85rem;
  }
}
