/* ================================
   HERO SECTION
================================ */
.hero-section {
  display: flex;
  align-items: center;
  min-height: 520px;
  background: #fff;
  overflow: hidden;
}

/* ================================
   HERO IMAGE
================================ */
.hero-image {
  width: 40%;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hero-image img {
  width: 470px;
  height: 550px;
  object-fit: cover;
  display: block;
}

/* ================================
   HERO CONTENT
================================ */
.hero-content {
  flex: 1;
  padding: 60px 60px 60px 70px;
}

/* ================================
   TITLE & TYPING
================================ */
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 52px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 28px;
  line-height: 1.15;
  white-space: nowrap;
}

.typing-text {
  color: #e74c3c;
  font-weight: 500;
}

.cursor {
  color: #e74c3c;
  font-weight: 300;
  animation: blink .7s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ================================
   DESCRIPTION
================================ */
.hero-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #444;
  line-height: 1.8;
  margin: 0 0 32px;
  max-width: 560px;
}

/* ================================
   SOCIAL BUTTONS
================================ */
.hero-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: transform .2s, opacity .2s;
}

.social-btn svg {
  width: 17px;
  height: 17px;
}

.social-btn:hover {
  transform: translateY(-3px);
  opacity: .88;
}

.social-btn.whatsapp { background: #ff6052; }
.social-btn.facebook { background: #ff6052; }
.social-btn.behance  { background: #ff6052; }
.social-btn.youtube  { background: #ff6052; }

/* ================================
   CONTACT BUTTON
================================ */
.hero-btn {
  display: inline-block;
  padding: 11px 32px;
  border: 1px solid #e74c3c;
  border-radius: 4px;
  color: #e74c3c;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  letter-spacing: .3px;
  transition: background .2s, color .2s;
}

.hero-btn:hover {
  background: #e74c3c;
  color: #fff;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .hero-title { font-size: 42px; }
  .hero-content { padding: 50px 40px; }
}

@media (max-width: 768px) {
  .hero-section { flex-direction: column; min-height: unset; }

  .hero-image {
    flex: none;
    max-width: 100%;
    width: 100%;
    height: 280px;
  }

  .hero-content {
    padding: 40px 28px;
  }

  .hero-title { font-size: 34px; white-space: normal; }
  .hero-desc { font-size: 14px; }
}

@media (max-width: 480px) {
  .hero-image { height: 100%; width: 100%; padding: 30px;}
  .hero-content { padding: 32px 20px; }
  .hero-title { font-size: 28px; }
  .social-btn { width: 38px; height: 38px; }
  .social-btn svg { width: 18px; height: 18px; }
}
