/* contact.css - Replacing Tailwind Utility Classes */
.contact-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
}
.contact-main {
  flex-grow: 1;
  padding: 80px 12px 32px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}
@media(min-width: 640px) { .contact-main { padding: 90px 24px 40px 24px; } }
@media(min-width: 1024px) { .contact-main { padding: 110px 48px 48px 48px; } }

.contact-card-container {
  width: 100%;
  max-width: 1200px;
  min-height: auto;
  background-color: #D4D2C9;
  border-radius: 20px;
  padding: 20px 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
@media(min-width: 768px) { 
  .contact-card-container { 
    padding: 48px; 
    min-height: 500px;
    border-radius: 24px;
    gap: 40px;
  } 
}
@media(min-width: 1024px) { 
  .contact-card-container { 
    flex-direction: row; 
    padding: 72px 80px; 
    gap: 72px; 
    min-height: 600px;
  } 
}

.contact-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 12px;
  width: 100%;
}
@media(min-width: 1024px) { .contact-left { padding-top: 0; } }

.contact-title {
  font-size: clamp(36px, 7vw, 96px);
  font-weight: 700;
  color: #111111;
  line-height: 1;
  letter-spacing: -0.04em;
  font-family: 'Inter', sans-serif;
  word-break: break-word;
}
@media(min-width: 1024px) { .contact-title { font-size: 120px; } }

.contact-subtitle {
  margin-top: 16px;
  color: rgba(17, 17, 17, 0.7);
  font-size: 15px;
  max-width: 28rem;
  font-weight: 500;
  line-height: 1.5;
}
@media(min-width: 768px) { .contact-subtitle { font-size: 18px; margin-top: 24px; } }

.contact-right {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
@media(min-width: 1024px) { .contact-right { width: 460px; } }

.bento-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background-color: #FFFFFF;
  padding: 12px;
  gap: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.5s ease;
  box-sizing: border-box;
}
.bento-box:hover {
  transform: scale(1.01);
}

.bento-top {
  background-color: #131411;
  color: #FFFFFF;
  padding: 32px 20px;
  border-radius: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 160px;
  box-sizing: border-box;
  width: 100%;
}
@media(min-width: 768px) {
  .bento-top {
    padding: 48px;
    border-radius: 20px;
    min-height: 200px;
  }
}

.neon-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #D4D2C9;
}
.dot-tl { top: 14px; left: 14px; }
.dot-tr { top: 14px; right: 14px; }
.dot-bl { bottom: 14px; left: 14px; }
.dot-br { bottom: 14px; right: 14px; }

.bento-top-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.02em;
  font-family: 'Inter', sans-serif;
}
@media(min-width: 768px) { .bento-top-text { font-size: 18px; } }

.bento-top-text span {
  color: rgba(255, 255, 255, 0.9);
}

.bento-bottom {
  background-color: transparent;
  padding: 8px 12px 24px 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}
@media(min-width: 768px) { .bento-bottom { padding: 24px 32px 32px 32px; gap: 28px; } }

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #111111;
  text-decoration: none;
  transition: transform 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}
.contact-link:hover {
  transform: translateX(4px);
}

.icon-circle {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #131411;
  color: #D4D2C9;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: background-color 0.3s ease;
  flex-shrink: 0;
}
@media(min-width: 768px) {
  .icon-circle {
    width: 48px;
    height: 48px;
  }
}
.contact-link:hover .icon-circle {
  background-color: #111111;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.link-text {
  font-weight: 500;
  font-size: 14px;
  word-break: break-all;
  overflow-wrap: break-word;
}
@media(min-width: 768px) { .link-text { font-size: 15px; } }

