.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 2rem;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.phone-mockup {
  perspective: 1000px;
}

.phone-frame {
  width: 800px;
  height: 400px;
  background: #1a1a1a;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  transform: rotateX(5deg) rotateY(-5deg);
  transition: transform 0.3s ease;
}

.phone-frame:hover {
  transform: rotateX(0deg) rotateY(0deg);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 31px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.phone-header {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  padding: 8px 16px;
  color: white;
}
/* 
.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
} */

/* .status-icons {
  display: flex;
  gap: 4px;
  align-items: center;
} */

.app-header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.phone-content {
  flex: 1;
  background: #f8f9fa;
  padding: 16px;
  overflow-y: auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-item .icon {
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  filter: grayscale(1) contrast(2);
}

.contact-info a {
  text-decoration: none;
}

.contact-details h3 {
  margin: 0 0 4px 0;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.contact-details p {
  margin: 0;
  font-size: 12px;
  color: #666;
}

.phone-bottom {
  height: 20px;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-indicator {
  width: 60px;
  height: 4px;
  background: #fff;
  border-radius: 2px;
  opacity: 0.7;
}

/* 4K responsive design */
@media (min-width: 1968px) {
  .phone-frame {
    width: 1200px;
    height: 600px;
    border-radius: 60px;
    padding: 20px;
  }

  .phone-header {
    padding: 20px 32px;
    font-size: 2rem;
  }

  .app-header h2 {
    font-size: 2.2rem;
  }

  .phone-content {
    padding: 32px;
  }

  .contact-info {
    gap: 32px;
  }

  .contact-item {
    padding: 32px 28px;
    gap: 32px;
    border-radius: 24px;
  }

  .contact-item .icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
  }

  .contact-details h3 {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .contact-details p {
    font-size: 1.3rem;
    line-height: 1.5;
  }

  .phone-bottom {
    height: 40px;
  }

  .home-indicator {
    width: 120px;
    height: 8px;
  }

  /* Make images inside contact-item larger */
  .contact-item img {
    width: 64px;
    height: 64px;
    max-width: 100%;
    max-height: 100%;
  }
}

/* Tablet responsive design */
@media (max-width: 769px) {
  .contact-container {
    padding: 1rem;
    min-height: 90vh;
  }
  
  .phone-frame {
    width: 680px;
    height: 300px;
    border-radius: 30px;
    padding: 8px;
    transform: none;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }
  
  .phone-frame:hover {
    transform: none;
  }
  
  .phone-screen {
    border-radius: 22px;
  }
  
  .phone-header {
    padding: 10px 12px;
  }
  
  .app-header h2 {
    font-size: 14px;
    font-weight: 600;
  }
  
  .phone-content {
    padding: 12px;
  }
  
  .contact-info {
    gap: 8px;
  }
  
  .contact-item {
    padding: 8px 10px;
    gap: 8px;
    border-radius: 8px;
  }
  
  .contact-item .icon {
    font-size: 18px;
    width: 30px;
    height: 30px;
  }
  
  .contact-details h3 {
    font-size: 11px;
    margin-bottom: 2px;
  }
  
  .contact-details p {
    font-size: 9px;
    line-height: 1.2;
  }
  
  .phone-bottom {
    height: 16px;
  }
  
  .home-indicator {
    width: 40px;
    height: 3px;
  }
}

/* Mobile responsive design */
@media (max-width: 426px) {
  .contact-container {
    padding: 1rem;
    min-height: 90vh;
  }
  
  .phone-frame {
    width: 350px;
    height: 400px;
    border-radius: 30px;
    padding: 8px;
    transform: none;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }
  
  .phone-frame:hover {
    transform: none;
  }
  
  .phone-screen {
    border-radius: 22px;
  }
  
  .phone-header {
    padding: 10px 12px;
  }
  
  .app-header h2 {
    font-size: 14px;
    font-weight: 600;
  }
  
  .phone-content {
    padding: 12px;
  }
  
  .contact-info {
    gap: 8px;
  }
  
  .contact-item {
    padding: 8px 10px;
    gap: 8px;
    border-radius: 8px;
  }
  
  .contact-item .icon {
    font-size: 18px;
    width: 30px;
    height: 30px;
  }
  
  .contact-details h3 {
    font-size: 11px;
    margin-bottom: 2px;
  }
  
  .contact-details p {
    font-size: 9px;
    line-height: 1.2;
  }
  
  .phone-bottom {
    height: 16px;
  }
  
  .home-indicator {
    width: 40px;
    height: 3px;
  }
}

@media (max-width: 376px) {
  .contact-container {
    padding: 1rem;
    min-height: 90vh;
  }
  
  .phone-frame {
    width: 300px;
    height: 400px;
    border-radius: 30px;
    padding: 8px;
    transform: none;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }
  
  .phone-frame:hover {
    transform: none;
  }
  
  .phone-screen {
    border-radius: 22px;
  }
  
  .phone-header {
    padding: 10px 12px;
  }
  
  .app-header h2 {
    font-size: 14px;
    font-weight: 600;
  }
  
  .phone-content {
    padding: 12px;
  }
  
  .contact-info {
    gap: 8px;
  }
  
  .contact-item {
    padding: 8px 10px;
    gap: 8px;
    border-radius: 8px;
  }
  
  .contact-item .icon {
    font-size: 18px;
    width: 30px;
    height: 30px;
  }
  
  .contact-details h3 {
    font-size: 11px;
    margin-bottom: 2px;
  }
  
  .contact-details p {
    font-size: 9px;
    line-height: 1.2;
  }
  
  .phone-bottom {
    height: 16px;
  }
  
  .home-indicator {
    width: 40px;
    height: 3px;
  }
}

@media (max-width: 320px) {
  .contact-container {
    padding: 1rem;
    min-height: 90vh;
  }
  
  .phone-frame {
    width: 250px;
    height: 400px;
    border-radius: 30px;
    padding: 8px;
    transform: none;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }
  
  .phone-frame:hover {
    transform: none;
  }
  
  .phone-screen {
    border-radius: 22px;
  }
  
  .phone-header {
    padding: 10px 12px;
  }
  
  .app-header h2 {
    font-size: 14px;
    font-weight: 600;
  }
  
  .phone-content {
    padding: 12px;
  }
  
  .contact-info {
    gap: 8px;
  }
  
  .contact-item {
    padding: 8px 10px;
    gap: 8px;
    border-radius: 8px;
  }
  
  .contact-item .icon {
    font-size: 18px;
    width: 30px;
    height: 30px;
  }
  
  .contact-details h3 {
    font-size: 11px;
    margin-bottom: 2px;
  }
  
  .contact-details p {
    font-size: 9px;
    line-height: 1.2;
  }
  
  .phone-bottom {
    height: 16px;
  }
  
  .home-indicator {
    width: 40px;
    height: 3px;
  }
}