/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  padding: var(--spacing-xl);
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
  min-height: 100vh;
  height: 100vh;
}

/* Hero Left Content */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.logo {
  display: inline-block;
  margin-bottom: var(--spacing-lg);
}

.logo img {
  height: 56px;
  width: 56px;
  object-fit: contain;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-dark);
  margin-bottom: 0.25rem;
  display: grid;
  gap: 0.3rem;
}

.hero-title .malayalam {
  font-family: "Anek Malayalam", "Anek Latin", sans-serif;
  display: block;
}

.hero-title .english {
  font-family: "Anek Latin", sans-serif;
  display: block;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  line-height: 1.7;
  max-width: 500px;
  font-weight: 400;
}

/* CTA Section */
.hero-cta {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-top: 1.5rem;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  background: var(--gradient-primary);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(76, 107, 255, 0.35);
  position: relative;
  overflow: hidden;
}

.whatsapp-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left var(--transition-slow);
}

.whatsapp-button:hover::before {
  left: 100%;
}

.whatsapp-button:hover {
  box-shadow: 0 12px 30px rgba(76, 107, 255, 0.45);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: var(--spacing-sm);
  align-items: center;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--color-text-light);
  text-decoration: none;
  transition: all var(--transition-normal);
}

.social-icon svg {
  width: 24px;
  height: 24px;
}

.social-icon:hover {
  color: var(--color-primary-blue);
}

/* Hero Right - Image Section */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Stats Badge */
.stats-badge {
  position: absolute;
  top: -20px;
  left: -40px;
  z-index: 10;
  font-family: "Caveat", cursive;
  text-align: center;
  transform: rotate(5deg);
}

/* Hide mobile badge on larger screens */
.stats-badge-mobile {
  display: none;
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary-blue);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stats-text {
  font-size: 1rem;
  color: var(--color-text-dark);
  max-width: 180px;
  line-height: 1.3;
}

.hand-drawn-arrow {
  position: absolute;
  bottom: -75px;
  left: 50%;
  transform: translateX(-50%) rotate(-15deg) scaleX(-1);
  color: var(--color-primary-purple);
  opacity: 0.7;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-image-container img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

/* Simple white gradient at bottom */
.hero-image-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 240px;
  background: linear-gradient(
    to top,
    #ffffff 0%,
    rgba(255, 255, 255, 0.95) 15%,
    rgba(255, 255, 255, 0.7) 40%,
    rgba(255, 255, 255, 0.3) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Caption on gradient without background */
.image-caption {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  z-index: 3;
  color: var(--color-text-dark);
  padding: 0;
  text-align: right;
}

.caption-name {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
  color: var(--color-text-dark);
}

.caption-role {
  font-size: 0.8rem;
  color: var(--color-text-light);
  font-weight: 400;
}
