/* ===== REDESIGNED PREMIUM HERO ===== */
.premium-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0A1A2F 0%, #1A73E8 100%);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #4FC3F7 0%, transparent 70%);
  top: -200px;
  left: -100px;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #B39DFF 0%, transparent 70%);
  bottom: -250px;
  right: -150px;
  animation-delay: -5s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #1A73E8 0%, transparent 70%);
  top: 50%;
  right: 20%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #4FC3F7 0%, #B39DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 60px;
  padding: 8px;
  margin-bottom: 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-search:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(26, 115, 232, 0.3);
  border-color: #1A73E8;
}

.search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #1A73E8;
  flex-shrink: 0;
}

.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  color: #0A1A2F;
  padding: 0;
}

.hero-search input::placeholder {
  color: #6A6A6A;
}

.search-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1A73E8, #4FC3F7);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(26, 115, 232, 0.3);
}

.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26, 115, 232, 0.4);
}

.search-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-image-container {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main-image {
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  animation: hero-image-float 6s ease-in-out infinite;
}

.hero-main-image img {
  width: 200px;
  height: 200px;
}

@keyframes hero-image-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float-card 4s ease-in-out infinite;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.card-1 {
  top: 50px;
  left: -20px;
  animation-delay: 0s;
}

.card-2 {
  top: 200px;
  right: -30px;
  animation-delay: -2s;
}

.card-3 {
  bottom: 80px;
  left: 20px;
  animation-delay: -1s;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #E8F1FD, #F5F7FA);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-title {
  font-size: 14px;
  font-weight: 600;
  color: #0A1A2F;
}

.card-rating {
  font-size: 12px;
  color: #FFB800;
  font-weight: 600;
}

/* ===== APP DOWNLOAD SECTION ===== */
.app-download-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #F5F7FA 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}

.app-download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 115, 232, 0.1);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #1A73E8;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag-dot {
  width: 6px;
  height: 6px;
  background: #1A73E8;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.app-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  color: #0A1A2F;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.app-description {
  font-size: 18px;
  line-height: 1.6;
  color: #6A6A6A;
  margin-bottom: 40px;
  max-width: 500px;
}

.app-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #E8F1FD, #F5F7FA);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.feature-title {
  font-size: 16px;
  font-weight: 600;
  color: #0A1A2F;
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 14px;
  color: #6A6A6A;
}

.app-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #0A1A2F;
  color: white;
  border-radius: 12px;
  padding: 12px 20px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.app-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.badge-text {
  font-size: 10px;
  text-transform: uppercase;
  opacity: 0.7;
  letter-spacing: 0.5px;
}

.badge-store {
  font-size: 16px;
  font-weight: 600;
}

/* Phone Mockup with Animated UI */
.phone-container {
  position: relative;
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-device {
  position: relative;
  width: 320px;
  height: 650px;
  background: #0A1A2F;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 
    0 0 0 8px rgba(10, 26, 47, 0.5),
    0 30px 80px rgba(0, 0, 0, 0.3);
  animation: phone-float 6s ease-in-out infinite;
}

@keyframes phone-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(-2deg); }
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #000;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F7FA 100%);
  border-radius: 32px;
  overflow: hidden;
}

.app-ui {
  padding: 40px 20px 20px;
  animation: fade-in 1s ease-out;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.app-logo {
  height: 32px;
  width: auto;
}

.app-time {
  font-size: 14px;
  font-weight: 600;
  color: #0A1A2F;
}

.app-greeting {
  font-size: 24px;
  font-weight: 700;
  color: #0A1A2F;
  margin-bottom: 16px;
  animation: slide-in 0.6s ease-out;
}

@keyframes slide-in {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.app-search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid #E8F1FD;
  border-radius: 20px;
  padding: 12px 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.app-search-bar span {
  font-size: 14px;
  color: #6A6A6A;
}

.app-services {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.service-chip {
  background: white;
  border: 1px solid #E8F1FD;
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 13px;
  color: #6A6A6A;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.service-chip.active {
  background: linear-gradient(135deg, #1A73E8, #4FC3F7);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.app-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  animation: card-in 0.8s ease-out 0.3s backwards;
}

@keyframes card-in {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.card-image {
  height: 140px;
  background: linear-gradient(135deg, #4FC3F7, #B39DFF);
  position: relative;
}

.card-info {
  padding: 16px;
}

.card-name {
  font-size: 16px;
  font-weight: 600;
  color: #0A1A2F;
  margin-bottom: 4px;
}

.card-price {
  font-size: 14px;
  color: #6A6A6A;
  margin-bottom: 12px;
}

.card-cta {
  background: linear-gradient(135deg, #1A73E8, #4FC3F7);
  color: white;
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

.floating-element {
  position: absolute;
  background: white;
  border: 1px solid #E8F1FD;
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #0A1A2F;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  animation: float-element 4s ease-in-out infinite;
}

.el-1 {
  top: 80px;
  left: -40px;
  animation-delay: 0s;
}

.el-2 {
  top: 280px;
  right: -50px;
  animation-delay: -1.5s;
}

.el-3 {
  bottom: 120px;
  left: -30px;
  animation-delay: -3s;
}

@keyframes float-element {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Animation Classes */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  animation: animate-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

@keyframes animate-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 56px;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-number {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .premium-hero {
    min-height: auto;
    padding: 60px 0 40px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 12px;
    margin-bottom: 16px;
  }

  .hero-title {
    font-size: 40px;
    margin-bottom: 16px;
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.5;
  }

  .hero-search {
    padding: 6px;
    margin-bottom: 24px;
  }

  .search-icon {
    width: 40px;
    height: 40px;
  }

  .search-icon svg {
    width: 20px;
    height: 20px;
  }

  .hero-search input {
    font-size: 14px;
  }

  .search-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .search-btn span {
    display: none;
  }

  .search-btn svg {
    margin: 0;
  }

  .hero-stats {
    gap: 16px;
    justify-content: space-between;
  }

  .stat-item {
    gap: 8px;
    flex: 1;
    min-width: 0;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .stat-number {
    font-size: 18px;
  }

  .stat-label {
    font-size: 11px;
    line-height: 1.2;
  }

  .hero-image-container {
    height: 400px;
    margin-top: 20px;
  }

  .hero-main-image {
    width: 200px;
    height: 200px;
  }

  .hero-main-image img {
    width: 140px;
    height: 140px;
  }

  .floating-card {
    padding: 12px;
    gap: 10px;
  }

  .card-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .card-title {
    font-size: 12px;
  }

  .card-rating {
    font-size: 11px;
  }

  .card-1 {
    top: 20px;
    left: -10px;
  }

  .card-2 {
    top: 180px;
    right: -10px;
  }

  .card-3 {
    bottom: 40px;
    left: 10px;
  }

  .gradient-orb {
    opacity: 0.2;
  }

  .orb-1 {
    width: 300px;
    height: 300px;
  }

  .orb-2 {
    width: 350px;
    height: 350px;
  }

  .orb-3 {
    width: 250px;
    height: 250px;
  }

  /* App Download Section Mobile */
  .app-download-section {
    padding: 60px 0;
  }

  .app-download-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-tag {
    font-size: 11px;
    padding: 5px 12px;
    margin-bottom: 16px;
  }

  .app-title {
    font-size: 32px;
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .app-description {
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.5;
  }

  .app-features {
    gap: 16px;
    margin-bottom: 32px;
  }

  .feature-item {
    gap: 12px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .feature-title {
    font-size: 15px;
  }

  .feature-desc {
    font-size: 13px;
  }

  .app-badges {
    gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .app-badge {
    width: 100%;
    justify-content: center;
  }

  .phone-container {
    height: 520px;
    margin-top: 20px;
  }

  .phone-device {
    width: 280px;
    height: 560px;
    transform: scale(1);
  }

  .phone-notch {
    width: 100px;
    height: 24px;
  }

  .app-ui {
    padding: 36px 16px 16px;
  }

  .app-logo {
    height: 28px;
  }

  .app-time {
    font-size: 13px;
  }

  .app-greeting {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .app-search-bar {
    padding: 10px 14px;
    margin-bottom: 16px;
  }

  .app-search-bar svg {
    width: 16px;
    height: 16px;
  }

  .app-search-bar span {
    font-size: 13px;
  }

  .app-services {
    gap: 6px;
    margin-bottom: 16px;
  }

  .service-chip {
    padding: 7px 12px;
    font-size: 12px;
  }

  .card-image {
    height: 120px;
  }

  .card-info {
    padding: 14px;
  }

  .card-name {
    font-size: 15px;
  }

  .card-price {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .card-cta {
    padding: 9px;
    font-size: 13px;
  }

  .floating-element {
    padding: 6px 12px;
    font-size: 11px;
  }

  .el-1 {
    top: 40px;
    left: -20px;
  }

  .el-2 {
    top: 240px;
    right: -25px;
  }

  .el-3 {
    bottom: 100px;
    left: -15px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }

  .stat-item {
    width: 100%;
  }

  .hero-image-container {
    height: 350px;
  }

  .hero-main-image {
    width: 180px;
    height: 180px;
  }

  .app-title {
    font-size: 28px;
  }

  .phone-device {
    width: 260px;
    height: 520px;
  }

  .phone-container {
    height: 480px;
  }

  .floating-card {
    font-size: 11px;
    padding: 10px;
  }

  .card-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}
